Merge branch 'master' of http://47.108.67.251:8099/coupon.xp.yn.cn/coupon_backend
正在显示
100 个修改的文件
包含
633 行增加
和
90 行删除
@@ -50,9 +50,11 @@ class Activity extends Backend | @@ -50,9 +50,11 @@ class Activity extends Backend | ||
50 | if ($this->request->isAjax()) { | 50 | if ($this->request->isAjax()) { |
51 | //如果发送的来源是Selectpage,则转发到Selectpage | 51 | //如果发送的来源是Selectpage,则转发到Selectpage |
52 | if ($this->request->request('keyField')) { | 52 | if ($this->request->request('keyField')) { |
53 | + | ||
53 | return $this->selectpage(); | 54 | return $this->selectpage(); |
54 | } | 55 | } |
55 | list($where, $sort, $order, $offset, $limit) = $this->buildparams(); | 56 | list($where, $sort, $order, $offset, $limit) = $this->buildparams(); |
57 | + | ||
56 | $list = $this->model | 58 | $list = $this->model |
57 | ->with(['store','coupon']) | 59 | ->with(['store','coupon']) |
58 | ->where($where) | 60 | ->where($where) |
@@ -49,7 +49,7 @@ class Coupon extends Backend | @@ -49,7 +49,7 @@ class Coupon extends Backend | ||
49 | return $this->selectpage(); | 49 | return $this->selectpage(); |
50 | } | 50 | } |
51 | list($where, $sort, $order, $offset, $limit) = $this->buildparams(); | 51 | list($where, $sort, $order, $offset, $limit) = $this->buildparams(); |
52 | - | 52 | + |
53 | $list = $this->model | 53 | $list = $this->model |
54 | ->with(['store']) | 54 | ->with(['store']) |
55 | ->where($where) | 55 | ->where($where) |
@@ -12,6 +12,7 @@ use app\common\controller\Backend; | @@ -12,6 +12,7 @@ use app\common\controller\Backend; | ||
12 | class Staff extends Backend | 12 | class Staff extends Backend |
13 | { | 13 | { |
14 | 14 | ||
15 | + | ||
15 | /** | 16 | /** |
16 | * Staff模型对象 | 17 | * Staff模型对象 |
17 | * @var \app\admin\model\verification\Staff | 18 | * @var \app\admin\model\verification\Staff |
@@ -71,4 +72,91 @@ class Staff extends Backend | @@ -71,4 +72,91 @@ class Staff extends Backend | ||
71 | return $this->view->fetch(); | 72 | return $this->view->fetch(); |
72 | } | 73 | } |
73 | 74 | ||
75 | + | ||
76 | + /** | ||
77 | + * 查看 | ||
78 | + */ | ||
79 | + public function brokerage() | ||
80 | + { | ||
81 | + $verification_store_id = request()->param('verification_store_id'); | ||
82 | + $send_user_id = request()->param('send_user_id'); | ||
83 | + $params = request()->param('params'); | ||
84 | + //当前是否为关联查询 | ||
85 | + $offset = request()->param('offset'); | ||
86 | + $this->relationSearch = true; | ||
87 | + //设置过滤方法 | ||
88 | + | ||
89 | + $this->request->filter(['strip_tags', 'trim']); | ||
90 | + if ($this->request->isAjax()) { | ||
91 | + list($where1, $sort, $order, $offset, $limit) = $this->buildparams(); | ||
92 | + if(!empty($params)){ | ||
93 | + $ids = request()->param('ids'); | ||
94 | + $paramsA = explode('=',$params); | ||
95 | + $r = \think\Db::name('verification_brokerage_record')->where(['id'=>$ids])->update(['send_result'=>$paramsA[1]]); | ||
96 | + return json(['code'=>$r]); | ||
97 | + } | ||
98 | + //如果发送的来源是Selectpage,则转发到Selectpage | ||
99 | + $where['a.send_user_id'] = $send_user_id; | ||
100 | + $where['a.verification_store_id'] = $verification_store_id; | ||
101 | + $field = "a.id,a.commission,a.send_user_id,a.send_createtime,a.send_result,a.send_reason,a.order_id, | ||
102 | + b.price"; | ||
103 | + $list = \think\Db::name('verification_brokerage_record') | ||
104 | + ->alias('a') | ||
105 | + ->field($field) | ||
106 | + ->join('cv_verification_order b','a.order_id=b.id','left') | ||
107 | + ->where($where) | ||
108 | + ->order('a.id desc') | ||
109 | + ->paginate($limit); | ||
110 | + | ||
111 | + $row = $list->items(); | ||
112 | + | ||
113 | + foreach($row as $k=>$v){ | ||
114 | + $row[$k]['send_createtime'] = date('Y-m-d H:i:s',$v['send_createtime']); | ||
115 | + $row[$k]['send_result_text'] = $v['send_result']==1?'成功':'失败'; | ||
116 | + $row[$k]['send_result_view'] = $v['send_result']==1?'normal':'hidden'; | ||
117 | + } | ||
118 | + | ||
119 | + $result = array("total" => $list->total(), "rows" => $row); | ||
120 | + return json($result); | ||
121 | + } | ||
122 | + return $this->view->fetch(); | ||
123 | + } | ||
124 | + | ||
125 | + | ||
126 | + /** | ||
127 | + * 查看 | ||
128 | + */ | ||
129 | + public function share_list() | ||
130 | + { | ||
131 | + $verification_store_id = request()->param('verification_store_id'); | ||
132 | + $send_user_id = request()->param('send_user_id'); | ||
133 | + | ||
134 | + | ||
135 | + $this->request->filter(['strip_tags', 'trim']); | ||
136 | + if ($this->request->isAjax()) { | ||
137 | + | ||
138 | + $where['a.pid'] = $send_user_id; | ||
139 | + $where['a.verification_store_id'] = $verification_store_id; | ||
140 | + $field = "a.*"; | ||
141 | + | ||
142 | + $list = \think\Db::name('user') | ||
143 | + ->alias('a') | ||
144 | + ->field($field) | ||
145 | + | ||
146 | + ->where($where) | ||
147 | + ->order('a.id desc') | ||
148 | + ->paginate(); | ||
149 | + | ||
150 | + $row = $list->items(); | ||
151 | + | ||
152 | + foreach($row as $k=>$v){ | ||
153 | + $row[$k]['updatetime'] = date('Y-m-d H:i:s',$v['updatetime']); | ||
154 | + } | ||
155 | + | ||
156 | + $result = array("total" => $list->total(), "rows" => $row); | ||
157 | + return json($result); | ||
158 | + } | ||
159 | + return $this->view->fetch(); | ||
160 | + } | ||
161 | + | ||
74 | } | 162 | } |
@@ -18,5 +18,6 @@ return [ | @@ -18,5 +18,6 @@ return [ | ||
18 | 'Reduction' => '满减卷满减', | 18 | 'Reduction' => '满减卷满减', |
19 | 'Consumption_name' => '消费卷名称', | 19 | 'Consumption_name' => '消费卷名称', |
20 | 'Image' => '封面图', | 20 | 'Image' => '封面图', |
21 | - 'Store.name' => '门店名称' | 21 | + 'Store.name' => '门店名称', |
22 | + 'Send_rule_limit'=>'卡券发放规则', | ||
22 | ]; | 23 | ]; |
@@ -5,7 +5,7 @@ return [ | @@ -5,7 +5,7 @@ return [ | ||
5 | 'Name' => '员工名称', | 5 | 'Name' => '员工名称', |
6 | 'Phone' => '手机号码', | 6 | 'Phone' => '手机号码', |
7 | 'Verification_store_id' => '门店id', | 7 | 'Verification_store_id' => '门店id', |
8 | - 'User_id' => '会员编号', | 8 | + 'User_id' => '微信编号', |
9 | 'Type' => '职务', | 9 | 'Type' => '职务', |
10 | 'Type 0' => '店长', | 10 | 'Type 0' => '店长', |
11 | 'Type 1' => '代理人', | 11 | 'Type 1' => '代理人', |
@@ -13,5 +13,15 @@ return [ | @@ -13,5 +13,15 @@ return [ | ||
13 | 'Type 3' => '代理人&核销员', | 13 | 'Type 3' => '代理人&核销员', |
14 | 'Type 4' => '电销', | 14 | 'Type 4' => '电销', |
15 | 'Store.name' => '门店名称', | 15 | 'Store.name' => '门店名称', |
16 | - 'User.nickname' => '用户名' | 16 | + 'User.nickname' => '用户名', |
17 | + 'Commission' => '发送金额', | ||
18 | + 'SendCreatetime' => '发送时间', | ||
19 | + 'SendResult' => '发送结果', | ||
20 | + 'SendReason' => '发送缘由', | ||
21 | + 'OrderIdPrice' => '订单金额', | ||
22 | + 'SendReason' => '发送缘由', | ||
23 | + 'SendR' => '操作', | ||
24 | + 'Hidden' => '未支付', | ||
25 | + 'Normal' => '已支付', | ||
26 | + 'Updatetime' => '绑定时间' | ||
17 | ]; | 27 | ]; |
@@ -33,7 +33,8 @@ class Coupon extends Model | @@ -33,7 +33,8 @@ class Coupon extends Model | ||
33 | 33 | ||
34 | public function getTypeList() | 34 | public function getTypeList() |
35 | { | 35 | { |
36 | - return ['0' => __('Type 0'), '1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3')]; | 36 | + //return ['0' => __('Type 0'), '1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3')]; |
37 | + return [ '1' => __('Type 1'), '2' => __('Type 2')]; | ||
37 | } | 38 | } |
38 | 39 | ||
39 | 40 |
1 | <form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action=""> | 1 | <form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action=""> |
2 | - | ||
3 | - <div class="form-group"> | ||
4 | - <label class="control-label col-xs-12 col-sm-2">{:__('Verification_store_id')}:</label> | ||
5 | - <div class="col-xs-12 col-sm-8"> | ||
6 | - <input id="c-verification_store_id" data-rule="required" data-source="verification/store/index" class="form-control selectpage" name="row[verification_store_id]" type="text" value=""> | 2 | + <div class="" data-toggle="cxselect" data-selects="first,second"> |
3 | + <div class="form-group"> | ||
4 | + <label class="control-label col-xs-12 col-sm-2">{:__('Verification_store_id')}:</label> | ||
5 | + <div class="col-xs-12 col-sm-8"> | ||
6 | + <input id="c-verification_store_id" data-rule="required" data-source="verification/store/index" class="first form-control selectpage" name="row[verification_store_id]" type="text" value=""> | ||
7 | + </div> | ||
7 | </div> | 8 | </div> |
8 | - </div> | ||
9 | - <div class="form-group"> | ||
10 | - <label class="control-label col-xs-12 col-sm-2">{:__('Verification_coupon_ids')}:</label> | ||
11 | - <div class="col-xs-12 col-sm-8"> | ||
12 | - <input id="c-verification_coupon_ids" data-rule="required" data-multiple="true" min="0" data-source="verification/coupon/index" data-query-name="id" class="form-control selectpage" name="row[verification_coupon_ids]" type="text" value="" placeholder="请选择卡卷"> | 9 | + <div class="form-group"> |
10 | + <label class="control-label col-xs-12 col-sm-2">{:__('Verification_coupon_ids')}:</label> | ||
11 | + <div class="col-xs-12 col-sm-8"> | ||
12 | + <input id="c-verification_coupon_ids" data-rule="required" data-multiple="true" min="0" data-source="verification/coupon/index?verification_store_id={$row.verification_store_id}" data-query-name="id" class="second form-control selectpage" name="row[verification_coupon_ids]" type="text" value="" placeholder="请选择卡卷"> | ||
13 | 13 | ||
14 | + </div> | ||
14 | </div> | 15 | </div> |
15 | </div> | 16 | </div> |
16 | <div class="form-group"> | 17 | <div class="form-group"> |
@@ -67,6 +68,32 @@ | @@ -67,6 +68,32 @@ | ||
67 | <input id="c-phone" class="form-control" name="row[phone]" type="text"> | 68 | <input id="c-phone" class="form-control" name="row[phone]" type="text"> |
68 | </div> | 69 | </div> |
69 | </div> | 70 | </div> |
71 | + <div class="form-group"> | ||
72 | + <label class="control-label col-xs-12 col-sm-2">{:__('微信分享图片')}:</label> | ||
73 | + <div class="col-xs-12 col-sm-8"> | ||
74 | + <div class="input-group"> | ||
75 | + <input id="c-share_image" class="form-control" size="50" name="row[share_image]" type="text"> | ||
76 | + <div class="input-group-addon no-border no-padding"> | ||
77 | + <span><button type="button" id="faupload-share_image" class="btn btn-danger faupload" data-input-id="c-share_image" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp,image/webp" data-multiple="false" data-preview-id="p-share_image"><i class="fa fa-upload"></i> {:__('Upload')}</button></span> | ||
78 | + <span><button type="button" id="fachoose-share_image" class="btn btn-primary fachoose" data-input-id="c-share_image" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> {:__('Choose')}</button></span> | ||
79 | + </div> | ||
80 | + <span class="msg-box n-right" for="c-share_image"></span> | ||
81 | + </div> | ||
82 | + <ul class="row list-inline faupload-preview" id="p-share_image"></ul> | ||
83 | + </div> | ||
84 | + </div> | ||
85 | + <div class="form-group"> | ||
86 | + <label class="control-label col-xs-12 col-sm-2">{:__('微信分享标题')}:</label> | ||
87 | + <div class="col-xs-12 col-sm-8"> | ||
88 | + <input id="c-share_title" class="form-control" name="row[share_title]" type="text"> | ||
89 | + </div> | ||
90 | + </div> | ||
91 | + <div class="form-group"> | ||
92 | + <label class="control-label col-xs-12 col-sm-2">{:__('微信分享描述')}:</label> | ||
93 | + <div class="col-xs-12 col-sm-8"> | ||
94 | + <input id="c-share_desc" class="form-control" name="row[share_desc]" type="text"> | ||
95 | + </div> | ||
96 | + </div> | ||
70 | <div class="form-group layer-footer"> | 97 | <div class="form-group layer-footer"> |
71 | <label class="control-label col-xs-12 col-sm-2"></label> | 98 | <label class="control-label col-xs-12 col-sm-2"></label> |
72 | <div class="col-xs-12 col-sm-8"> | 99 | <div class="col-xs-12 col-sm-8"> |
1 | <form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action=""> | 1 | <form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action=""> |
2 | - | ||
3 | - <div class="form-group"> | ||
4 | - <label class="control-label col-xs-12 col-sm-2">{:__('Verification_store_id')}:</label> | ||
5 | - <div class="col-xs-12 col-sm-8"> | ||
6 | - <input id="c-verification_store_id" data-rule="required" data-source="verification/store/index" class="form-control selectpage" name="row[verification_store_id]" type="text" value="{$row.verification_store_id|htmlentities}"> | 2 | + <div class="" data-toggle="cxselect" data-selects="first,second"> |
3 | + <div class="form-group"> | ||
4 | + <label class="control-label col-xs-12 col-sm-2">{:__('Verification_store_id')}:</label> | ||
5 | + <div class="col-xs-12 col-sm-8"> | ||
6 | + <input id="c-verification_store_id" data-rule="required" data-source="verification/store/index" class="first form-control selectpage" name="row[verification_store_id]" type="text" value="{$row.verification_store_id|htmlentities}"> | ||
7 | + </div> | ||
7 | </div> | 8 | </div> |
8 | - </div> | ||
9 | - <div class="form-group"> | ||
10 | - <label class="control-label col-xs-12 col-sm-2">{:__('Verification_coupon_ids')}:</label> | ||
11 | - <div class="col-xs-12 col-sm-8"> | ||
12 | - <input id="c-verification_coupon_ids" data-rule="required" data-source="verification/coupon/index" data-multiple="true" class="form-control selectpage" name="row[verification_coupon_ids]" type="text" value="{$row.verification_coupon_ids|htmlentities}"> | 9 | + <div class="form-group"> |
10 | + <label class="control-label col-xs-12 col-sm-2">{:__('Verification_coupon_ids')}:</label> | ||
11 | + <div class="col-xs-12 col-sm-8"> | ||
12 | + <input id="c-verification_coupon_ids" data-rule="required" | ||
13 | + data-params='{"custom[verification_store_id":{$row.verification_coupon_ids}]}' | ||
14 | + data-source="verification/coupon/index?verification_store_id={$row.verification_store_id}" | ||
15 | + data-multiple="true" class="second form-control selectpage" | ||
16 | + name="row[verification_coupon_ids]" | ||
17 | + type="text" | ||
18 | + value="{$row.verification_coupon_ids|htmlentities}"> | ||
19 | + </div> | ||
13 | </div> | 20 | </div> |
14 | </div> | 21 | </div> |
15 | <div class="form-group"> | 22 | <div class="form-group"> |
@@ -65,6 +72,33 @@ | @@ -65,6 +72,33 @@ | ||
65 | <input id="c-phone" class="form-control" name="row[phone]" type="text" value="{$row.phone|htmlentities}"> | 72 | <input id="c-phone" class="form-control" name="row[phone]" type="text" value="{$row.phone|htmlentities}"> |
66 | </div> | 73 | </div> |
67 | </div> | 74 | </div> |
75 | + <div class="form-group"> | ||
76 | + <label class="control-label col-xs-12 col-sm-2">{:__('微信分享图片')}:</label> | ||
77 | + <div class="col-xs-12 col-sm-8"> | ||
78 | + <div class="input-group"> | ||
79 | + <input id="c-share_image" class="form-control" size="50" name="row[share_image]" type="text" value="{$row.share_image|htmlentities}"> | ||
80 | + <div class="input-group-addon no-border no-padding"> | ||
81 | + <span><button type="button" id="faupload-share_image" class="btn btn-danger faupload" data-input-id="c-share_image" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp,image/webp" data-multiple="false" data-preview-id="p-share_image"><i class="fa fa-upload"></i> {:__('Upload')}</button></span> | ||
82 | + <span><button type="button" id="fachoose-share_image" class="btn btn-primary fachoose" data-input-id="c-share_image" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> {:__('Choose')}</button></span> | ||
83 | + </div> | ||
84 | + <span class="msg-box n-right" for="c-share_image"></span> | ||
85 | + </div> | ||
86 | + <ul class="row list-inline faupload-preview" id="p-share_image"></ul> | ||
87 | + </div> | ||
88 | + </div> | ||
89 | + | ||
90 | + <div class="form-group"> | ||
91 | + <label class="control-label col-xs-12 col-sm-2">{:__('微信分享标题')}:</label> | ||
92 | + <div class="col-xs-12 col-sm-8"> | ||
93 | + <input id="c-share_title" class="form-control" name="row[share_title]" type="text" value="{$row.share_title}"> | ||
94 | + </div> | ||
95 | + </div> | ||
96 | + <div class="form-group"> | ||
97 | + <label class="control-label col-xs-12 col-sm-2">{:__('微信分享描述')}:</label> | ||
98 | + <div class="col-xs-12 col-sm-8"> | ||
99 | + <input id="c-share_desc" class="form-control" name="row[share_desc]" type="text" value="{$row.share_desc}"> | ||
100 | + </div> | ||
101 | + </div> | ||
68 | <div class="form-group layer-footer"> | 102 | <div class="form-group layer-footer"> |
69 | <label class="control-label col-xs-12 col-sm-2"></label> | 103 | <label class="control-label col-xs-12 col-sm-2"></label> |
70 | <div class="col-xs-12 col-sm-8"> | 104 | <div class="col-xs-12 col-sm-8"> |
@@ -44,6 +44,12 @@ | @@ -44,6 +44,12 @@ | ||
44 | 44 | ||
45 | </div> | 45 | </div> |
46 | </div> | 46 | </div> |
47 | + <div class="form-group" id="d-send_rule_limit"> | ||
48 | + <label class="control-label col-xs-12 col-sm-2">{:__('Send_rule_limit')}:</label> | ||
49 | + <div class="col-xs-12 col-sm-8"> | ||
50 | + <input id="c-send_rule_limit" class="form-control" name="row[send_rule_limit]" type="number" > | ||
51 | + </div> | ||
52 | + </div> | ||
47 | <div id="d-voucher_amount" class="form-group"> | 53 | <div id="d-voucher_amount" class="form-group"> |
48 | <label class="control-label col-xs-12 col-sm-2">{:__('Voucher_amount')}:</label> | 54 | <label class="control-label col-xs-12 col-sm-2">{:__('Voucher_amount')}:</label> |
49 | <div class="col-xs-12 col-sm-8"> | 55 | <div class="col-xs-12 col-sm-8"> |
@@ -30,31 +30,37 @@ | @@ -30,31 +30,37 @@ | ||
30 | 30 | ||
31 | </div> | 31 | </div> |
32 | </div> | 32 | </div> |
33 | - <div class="form-group"> | 33 | + <div class="form-group" id="d-send_rule_limit"> |
34 | + <label class="control-label col-xs-12 col-sm-2">{:__('Send_rule_limit')}:</label> | ||
35 | + <div class="col-xs-12 col-sm-8"> | ||
36 | + <input id="c-send_rule_limit" class="form-control" name="row[send_rule_limit]" type="number" value="{$row.send_rule_limit|htmlentities}"> | ||
37 | + </div> | ||
38 | + </div> | ||
39 | + <div id="d-voucher_amount" class="form-group"> | ||
34 | <label class="control-label col-xs-12 col-sm-2">{:__('Voucher_amount')}:</label> | 40 | <label class="control-label col-xs-12 col-sm-2">{:__('Voucher_amount')}:</label> |
35 | <div class="col-xs-12 col-sm-8"> | 41 | <div class="col-xs-12 col-sm-8"> |
36 | <input id="c-voucher_amount" class="form-control" name="row[voucher_amount]" type="number" value="{$row.voucher_amount|htmlentities}"> | 42 | <input id="c-voucher_amount" class="form-control" name="row[voucher_amount]" type="number" value="{$row.voucher_amount|htmlentities}"> |
37 | </div> | 43 | </div> |
38 | </div> | 44 | </div> |
39 | - <div class="form-group"> | 45 | + <div id="d-gift" class="form-group"> |
40 | <label class="control-label col-xs-12 col-sm-2">{:__('Gift')}:</label> | 46 | <label class="control-label col-xs-12 col-sm-2">{:__('Gift')}:</label> |
41 | <div class="col-xs-12 col-sm-8"> | 47 | <div class="col-xs-12 col-sm-8"> |
42 | <input id="c-gift" class="form-control" name="row[gift]" type="text" value="{$row.gift|htmlentities}"> | 48 | <input id="c-gift" class="form-control" name="row[gift]" type="text" value="{$row.gift|htmlentities}"> |
43 | </div> | 49 | </div> |
44 | </div> | 50 | </div> |
45 | - <div class="form-group"> | 51 | + <div id="d-consumption" class="form-group"> |
46 | <label class="control-label col-xs-12 col-sm-2">{:__('Consumption')}:</label> | 52 | <label class="control-label col-xs-12 col-sm-2">{:__('Consumption')}:</label> |
47 | <div class="col-xs-12 col-sm-8"> | 53 | <div class="col-xs-12 col-sm-8"> |
48 | <input id="c-consumption" class="form-control" name="row[consumption]" type="number" value="{$row.consumption|htmlentities}"> | 54 | <input id="c-consumption" class="form-control" name="row[consumption]" type="number" value="{$row.consumption|htmlentities}"> |
49 | </div> | 55 | </div> |
50 | </div> | 56 | </div> |
51 | - <div class="form-group"> | 57 | + <div id="d-reduction" class="form-group"> |
52 | <label class="control-label col-xs-12 col-sm-2">{:__('Reduction')}:</label> | 58 | <label class="control-label col-xs-12 col-sm-2">{:__('Reduction')}:</label> |
53 | <div class="col-xs-12 col-sm-8"> | 59 | <div class="col-xs-12 col-sm-8"> |
54 | <input id="c-reduction" class="form-control" name="row[reduction]" type="number" value="{$row.reduction|htmlentities}"> | 60 | <input id="c-reduction" class="form-control" name="row[reduction]" type="number" value="{$row.reduction|htmlentities}"> |
55 | </div> | 61 | </div> |
56 | </div> | 62 | </div> |
57 | - <div class="form-group"> | 63 | + <div id="d-consumption_name" class="form-group"> |
58 | <label class="control-label col-xs-12 col-sm-2">{:__('Consumption_name')}:</label> | 64 | <label class="control-label col-xs-12 col-sm-2">{:__('Consumption_name')}:</label> |
59 | <div class="col-xs-12 col-sm-8"> | 65 | <div class="col-xs-12 col-sm-8"> |
60 | <input id="c-consumption_name" class="form-control" name="row[consumption_name]" type="text" value="{$row.consumption_name|htmlentities}"> | 66 | <input id="c-consumption_name" class="form-control" name="row[consumption_name]" type="text" value="{$row.consumption_name|htmlentities}"> |
1 | +<div class="panel panel-default panel-intro"> | ||
2 | + {:build_heading()} | ||
3 | + | ||
4 | + <div class="panel-body"> | ||
5 | + <div id="myTabContent" class="tab-content"> | ||
6 | + <div class="tab-pane fade active in" id="one"> | ||
7 | + <div class="widget-body no-padding"> | ||
8 | + <div id="toolbar" class="toolbar"> | ||
9 | + <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a> | ||
10 | + <a href="javascript:;" class="btn btn-success btn-add {:$auth->check('verification/staff/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i> {:__('Add')}</a> | ||
11 | + <a href="javascript:;" class="btn btn-success btn-edit btn-disabled disabled {:$auth->check('verification/staff/edit')?'':'hide'}" title="{:__('Edit')}" ><i class="fa fa-pencil"></i> {:__('Edit')}</a> | ||
12 | + <a href="javascript:;" class="btn btn-danger btn-del btn-disabled disabled {:$auth->check('verification/staff/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a> | ||
13 | + | ||
14 | + | ||
15 | + <div class="dropdown btn-group {:$auth->check('verification/staff/multi')?'':'hide'}"> | ||
16 | + <a class="btn btn-primary btn-more dropdown-toggle btn-disabled disabled" data-toggle="dropdown"><i class="fa fa-cog"></i> {:__('More')}</a> | ||
17 | + <ul class="dropdown-menu text-left" role="menu"> | ||
18 | + <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=normal"><i class="fa fa-eye"></i> {:__('Set to normal')}</a></li> | ||
19 | + <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=hidden"><i class="fa fa-eye-slash"></i> {:__('Set to hidden')}</a></li> | ||
20 | + </ul> | ||
21 | + </div> | ||
22 | + | ||
23 | + | ||
24 | + </div> | ||
25 | + <table id="table" class="table table-striped table-bordered table-hover table-nowrap" | ||
26 | + | ||
27 | + data-operate-editstate="{:$auth->check('verification/staff/edit_state_url')}" | ||
28 | + width="100%"> | ||
29 | + </table> | ||
30 | + </div> | ||
31 | + </div> | ||
32 | + | ||
33 | + </div> | ||
34 | + </div> | ||
35 | +</div> | ||
36 | +<script> | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | +</script> |
@@ -21,7 +21,7 @@ | @@ -21,7 +21,7 @@ | ||
21 | <div class="form-group"> | 21 | <div class="form-group"> |
22 | <label class="control-label col-xs-12 col-sm-2">{:__('User_id')}:</label> | 22 | <label class="control-label col-xs-12 col-sm-2">{:__('User_id')}:</label> |
23 | <div class="col-xs-12 col-sm-8"> | 23 | <div class="col-xs-12 col-sm-8"> |
24 | - <input id="c-user_id" data-rule="required" data-source="user/user/index" data-field="nickname" class="form-control selectpage" name="row[user_id]" type="text" value="{$row.user_id|htmlentities}"> | 24 | + <input id="c-user_id" data-rule="required" data-source="user/user/index?verification_store_id={$row.verification_store_id}" data-field="nickname" class="form-control selectpage" name="row[user_id]" type="text" value="{$row.user_id|htmlentities}" data-params='{"custom[verification_store_id]":"{$row.verification_store_id}"}'> |
25 | </div> | 25 | </div> |
26 | </div> | 26 | </div> |
27 | <div class="form-group"> | 27 | <div class="form-group"> |
1 | +<div class="panel panel-default panel-intro"> | ||
2 | + {:build_heading()} | ||
3 | + | ||
4 | + <div class="panel-body"> | ||
5 | + <div id="myTabContent" class="tab-content"> | ||
6 | + <div class="tab-pane fade active in" id="one"> | ||
7 | + <div class="widget-body no-padding"> | ||
8 | + <div id="toolbar" class="toolbar"> | ||
9 | + <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a> | ||
10 | + <a href="javascript:;" class="btn btn-success btn-add {:$auth->check('verification/staff/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i> {:__('Add')}</a> | ||
11 | + <a href="javascript:;" class="btn btn-success btn-edit btn-disabled disabled {:$auth->check('verification/staff/edit')?'':'hide'}" title="{:__('Edit')}" ><i class="fa fa-pencil"></i> {:__('Edit')}</a> | ||
12 | + <a href="javascript:;" class="btn btn-danger btn-del btn-disabled disabled {:$auth->check('verification/staff/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a> | ||
13 | + | ||
14 | + | ||
15 | + <div class="dropdown btn-group {:$auth->check('verification/staff/multi')?'':'hide'}"> | ||
16 | + <a class="btn btn-primary btn-more dropdown-toggle btn-disabled disabled" data-toggle="dropdown"><i class="fa fa-cog"></i> {:__('More')}</a> | ||
17 | + <ul class="dropdown-menu text-left" role="menu"> | ||
18 | + <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=normal"><i class="fa fa-eye"></i> {:__('Set to normal')}</a></li> | ||
19 | + <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=hidden"><i class="fa fa-eye-slash"></i> {:__('Set to hidden')}</a></li> | ||
20 | + </ul> | ||
21 | + </div> | ||
22 | + | ||
23 | + | ||
24 | + </div> | ||
25 | + <table id="table" class="table table-striped table-bordered table-hover table-nowrap" | ||
26 | + | ||
27 | + data-operate-editstate="" | ||
28 | + width="100%"> | ||
29 | + </table> | ||
30 | + </div> | ||
31 | + </div> | ||
32 | + | ||
33 | + </div> | ||
34 | + </div> | ||
35 | +</div> | ||
36 | +<script> | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | +</script> |
@@ -40,7 +40,7 @@ class Business extends Base | @@ -40,7 +40,7 @@ class Business extends Base | ||
40 | $storewhere['user_id']=$this->auth->id; | 40 | $storewhere['user_id']=$this->auth->id; |
41 | $staff = Db::name("verification_staff")->where($storewhere)->find(); | 41 | $staff = Db::name("verification_staff")->where($storewhere)->find(); |
42 | if (empty($staff)) { | 42 | if (empty($staff)) { |
43 | - $this->error("暂无权限!".$this->auth->id); | 43 | + $this->error("暂无权限!"); |
44 | } | 44 | } |
45 | $this->staff = $staff; | 45 | $this->staff = $staff; |
46 | $this->staff_id = $staff['id']; | 46 | $this->staff_id = $staff['id']; |
@@ -53,7 +53,7 @@ class Client extends Base | @@ -53,7 +53,7 @@ class Client extends Base | ||
53 | $activity=Db::name('verification_activity') | 53 | $activity=Db::name('verification_activity') |
54 | ->alias('a') | 54 | ->alias('a') |
55 | ->join('verification_store b','a.verification_store_id=b.id') | 55 | ->join('verification_store b','a.verification_store_id=b.id') |
56 | - ->field('a.*,b.address,b.name,b.phone') | 56 | + ->field('a.*,b.address,b.name,b.phone as store_phone') |
57 | ->where($where)->find(); | 57 | ->where($where)->find(); |
58 | if(!empty($activity)){ | 58 | if(!empty($activity)){ |
59 | $store = Db::name('verification_store')->where(['id'=>$activity['verification_store_id']])->field('lat,lng')->find(); | 59 | $store = Db::name('verification_store')->where(['id'=>$activity['verification_store_id']])->field('lat,lng')->find(); |
@@ -61,6 +61,7 @@ class Client extends Base | @@ -61,6 +61,7 @@ class Client extends Base | ||
61 | $activity['lng'] = $store['lng']; | 61 | $activity['lng'] = $store['lng']; |
62 | $activity['image'] = !empty($activity['poster'])?request()->domain().$activity['image']:''; | 62 | $activity['image'] = !empty($activity['poster'])?request()->domain().$activity['image']:''; |
63 | $activity['poster'] = !empty($activity['poster'])?request()->domain().$activity['poster']:''; | 63 | $activity['poster'] = !empty($activity['poster'])?request()->domain().$activity['poster']:''; |
64 | + $activity['share_image'] = !empty($activity['share_image'])?request()->domain().$activity['share_image']:''; | ||
64 | } | 65 | } |
65 | $this->success('活动获取成功', $activity); | 66 | $this->success('活动获取成功', $activity); |
66 | } | 67 | } |
@@ -99,6 +100,9 @@ class Client extends Base | @@ -99,6 +100,9 @@ class Client extends Base | ||
99 | */ | 100 | */ |
100 | function substr_cut($user_name){ | 101 | function substr_cut($user_name){ |
101 | $strlen = mb_strlen($user_name, 'utf-8'); //获取字符长度 | 102 | $strlen = mb_strlen($user_name, 'utf-8'); //获取字符长度 |
103 | + if($strlen <= 1){ | ||
104 | + return $user_name; | ||
105 | + } | ||
102 | $firstStr = mb_substr($user_name, 0, 1, 'utf-8'); //查找字符第一个 | 106 | $firstStr = mb_substr($user_name, 0, 1, 'utf-8'); //查找字符第一个 |
103 | $str=$firstStr . str_repeat('*', $strlen - 1); //拼接第一个+把字符串 "* " 重复 $strlen - 1 次: | 107 | $str=$firstStr . str_repeat('*', $strlen - 1); //拼接第一个+把字符串 "* " 重复 $strlen - 1 次: |
104 | return $str; | 108 | return $str; |
@@ -195,7 +199,7 @@ class Client extends Base | @@ -195,7 +199,7 @@ class Client extends Base | ||
195 | if($order){ | 199 | if($order){ |
196 | $order['image'] = !empty($order['image'])?request()->domain().$order['image']:''; | 200 | $order['image'] = !empty($order['image'])?request()->domain().$order['image']:''; |
197 | $receivewhere['a.verification_order_id']=$order_id; | 201 | $receivewhere['a.verification_order_id']=$order_id; |
198 | - $receivewhere['a.coupon_type'] = '0';//只查询代金券 | 202 | + $receivewhere['a.coupon_type'] = '2';//只查询消费券 |
199 | $receivewhere['a.user_id'] = $this->auth->id; | 203 | $receivewhere['a.user_id'] = $this->auth->id; |
200 | $receive=Db::name('verification_receive') | 204 | $receive=Db::name('verification_receive') |
201 | ->alias('a') | 205 | ->alias('a') |
@@ -256,6 +260,9 @@ class Client extends Base | @@ -256,6 +260,9 @@ class Client extends Base | ||
256 | */ | 260 | */ |
257 | public function crateorder(){ | 261 | public function crateorder(){ |
258 | $time=time(); | 262 | $time=time(); |
263 | + if(empty($this->auth->id)){ | ||
264 | + $this->error('登录失败'); | ||
265 | + } | ||
259 | $verification_activity_id=$this->postParam['verification_activity_id']; | 266 | $verification_activity_id=$this->postParam['verification_activity_id']; |
260 | if(empty($verification_activity_id)){return $this->error('活动信息错误');} | 267 | if(empty($verification_activity_id)){return $this->error('活动信息错误');} |
261 | //查询到活动 | 268 | //查询到活动 |
@@ -269,6 +276,11 @@ class Client extends Base | @@ -269,6 +276,11 @@ class Client extends Base | ||
269 | }else{ | 276 | }else{ |
270 | $this->error("活动不存在!"); | 277 | $this->error("活动不存在!"); |
271 | } | 278 | } |
279 | + //每个微信用户只能购买一次一个活动 | ||
280 | + $count = Db::name('verification_order')->where(['user_id'=>$this->auth->id,'type'=>['<>','0']])->count(); | ||
281 | + if($count >=1){ | ||
282 | + //$this->error("该活动仅限购买1次!"); | ||
283 | + } | ||
272 | $phone=$this->postParam['phone']; | 284 | $phone=$this->postParam['phone']; |
273 | $name=$this->postParam['name']; | 285 | $name=$this->postParam['name']; |
274 | $verification_coupon_ids=$activity['verification_coupon_ids']; | 286 | $verification_coupon_ids=$activity['verification_coupon_ids']; |
@@ -41,10 +41,12 @@ class Wechat extends Api | @@ -41,10 +41,12 @@ class Wechat extends Api | ||
41 | if(empty(request()->param('store_id'))){return $this->error('门店信息错误');} | 41 | if(empty(request()->param('store_id'))){return $this->error('门店信息错误');} |
42 | try{ | 42 | try{ |
43 | $param = request()->param(); | 43 | $param = request()->param(); |
44 | + $url = htmlspecialchars_decode(urldecode($param['url'])); | ||
44 | $app = WehcatModule::getInstance(request()->param('store_id'))->initWechat(); | 45 | $app = WehcatModule::getInstance(request()->param('store_id'))->initWechat(); |
45 | - $app->jssdk->setUrl($param['url']); | 46 | + |
47 | + $app->jssdk->setUrl($url); | ||
46 | $APIs = ['updateAppMessageShareData','updateTimelineShareData','onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone','chooseWXPay','openLocation','getLocation']; | 48 | $APIs = ['updateAppMessageShareData','updateTimelineShareData','onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone','chooseWXPay','openLocation','getLocation']; |
47 | - $config = $app->jssdk->buildConfig($APIs, true); | 49 | + $config = $app->jssdk->buildConfig($APIs, false); |
48 | }catch(\Exception $e){ | 50 | }catch(\Exception $e){ |
49 | $this->error($e->getMessage()); | 51 | $this->error($e->getMessage()); |
50 | } | 52 | } |
@@ -238,6 +240,9 @@ class Wechat extends Api | @@ -238,6 +240,9 @@ class Wechat extends Api | ||
238 | $my_user_id = $this->auth->id; | 240 | $my_user_id = $this->auth->id; |
239 | if(empty($my_user_id)){return $this->error('用户信息错误');} | 241 | if(empty($my_user_id)){return $this->error('用户信息错误');} |
240 | if(empty($param['store_id'])){return $this->error('门店信息错误');} | 242 | if(empty($param['store_id'])){return $this->error('门店信息错误');} |
243 | + if($my_user_id == $param['share_id']){ | ||
244 | + return $this->error('自行点击不记录'); | ||
245 | + } | ||
241 | //记录门店浏览统计 | 246 | //记录门店浏览统计 |
242 | $this->store_record($param['store_id'],$my_user_id); | 247 | $this->store_record($param['store_id'],$my_user_id); |
243 | 248 | ||
@@ -470,13 +475,66 @@ class Wechat extends Api | @@ -470,13 +475,66 @@ class Wechat extends Api | ||
470 | $w1['user_id'] = $pid; | 475 | $w1['user_id'] = $pid; |
471 | // $w1['verification_store_id'] = $verification_store_id; | 476 | // $w1['verification_store_id'] = $verification_store_id; |
472 | $role = Db::name('verification_staff')->where($w1)->find(); | 477 | $role = Db::name('verification_staff')->where($w1)->find(); |
473 | - if(in_array($role['type'],['1','3','0'])){ | 478 | + if(!empty($role) && in_array($role['type'],['1','3','0'])){ |
474 | //属于代理 发送红包 | 479 | //属于代理 发送红包 |
475 | $this->grant_red_packets($pid,$order_id); | 480 | $this->grant_red_packets($pid,$order_id); |
476 | }else{ | 481 | }else{ |
477 | //属于普通用户 则领取礼品券 | 482 | //属于普通用户 则领取礼品券 |
478 | - $this->send_gift_certificate($pid,$verification_coupon_ids,$order_id,$time); | 483 | + //$this->send_gift_certificate($pid,$verification_coupon_ids,$order_id,$time); |
484 | + //卡券发放规则 | ||
485 | + $this->send_gift_certificate_url($pid,$order_id,$time); | ||
486 | + } | ||
487 | + } | ||
488 | + /** | ||
489 | + * | ||
490 | + * truncate `cv_user`; | ||
491 | +truncate `cv_user_token`; | ||
492 | +truncate cv_verification_order; | ||
493 | +truncate cv_verification_receive; | ||
494 | + */ | ||
495 | + | ||
496 | + //发放 对应活动的礼品券 | ||
497 | + public function send_gift_certificate_url($pid,$order_id,$time){ | ||
498 | + $order_info = Db::name('verification_order')->where(['id'=>$order_id])->find(); | ||
499 | + $store = Db::name('verification_store')->where(['id'=>$order_info['verification_store_id']])->find(); | ||
500 | + | ||
501 | + | ||
502 | + | ||
503 | + | ||
504 | + //判断当前父级的所有下级的订单数,是否满足 send_rule_limit 的规则 | ||
505 | + $subIds = Db::name('user')->where(['pid'=>$pid])->column('id'); | ||
506 | + $subOrderCount = Db::name('verification_order')->where(['user_id'=>['in',$subIds],'type'=>['>','0']])->count(); | ||
507 | + | ||
508 | + //获取卡券 | ||
509 | + //当前活动对应的所有券 | ||
510 | + $wc = ['verification_store_id'=>$order_info['verification_store_id'],'type'=>1,'send_rule_limit'=>$subOrderCount]; | ||
511 | + $coupon = Db::name('verification_coupon')->where($wc)->find(); | ||
512 | + | ||
513 | + if(!empty($coupon)){ | ||
514 | + //发送给pid用户 | ||
515 | + $save = []; | ||
516 | + $save['verification_coupon_id'] = $store['verification_coupon_id']; | ||
517 | + $save['verification_store_id'] = $store['id']; | ||
518 | + $save['user_id'] = $pid; | ||
519 | + | ||
520 | + $save['type'] = 0;//使用情况 | ||
521 | + $save['closetime'] = $coupon['closetime']; | ||
522 | + $save['receive_no'] = time().rand(1000,9999); | ||
523 | + $res = (new \app\api\controller\v1\Index())->build($save['receive_no']); | ||
524 | + $save['qr_code'] = $res;//二维码 | ||
525 | + $save['createtime'] = $time; | ||
526 | + $save['verification_order_id'] = $order_id; | ||
527 | + $save['coupon_type'] = $coupon['type']; | ||
528 | + Db::name('verification_receive')->insert($save); | ||
479 | } | 529 | } |
530 | + | ||
531 | + } | ||
532 | + | ||
533 | + public function test_rule(){ | ||
534 | + $pid = 1; | ||
535 | + $order_id = '2'; | ||
536 | + $time = time(); | ||
537 | + $this->send_gift_certificate_url($pid,$order_id,$time); | ||
480 | } | 538 | } |
481 | 539 | ||
482 | //发放 对应活动的礼品券 | 540 | //发放 对应活动的礼品券 |
@@ -582,6 +640,7 @@ class Wechat extends Api | @@ -582,6 +640,7 @@ class Wechat extends Api | ||
582 | // if(!empty($r)){ | 640 | // if(!empty($r)){ |
583 | // return false; | 641 | // return false; |
584 | // } | 642 | // } |
643 | + $uOrderInfo = Db::name('user')->where(['id'=>$verification_order['user_id']])->find(); | ||
585 | try{ | 644 | try{ |
586 | $record = []; | 645 | $record = []; |
587 | $record['verification_store_id'] = $verification_store['id']; | 646 | $record['verification_store_id'] = $verification_store['id']; |
@@ -589,7 +648,8 @@ class Wechat extends Api | @@ -589,7 +648,8 @@ class Wechat extends Api | ||
589 | $record['send_user_id'] = $user_info['id']; | 648 | $record['send_user_id'] = $user_info['id']; |
590 | $record['send_createtime'] = time(); | 649 | $record['send_createtime'] = time(); |
591 | $record['send_result'] = $send_result; | 650 | $record['send_result'] = $send_result; |
592 | - $record['send_reason'] = 'ID:'.$user_info['id'].'分享给ID:'.$verification_order['user_id'].',并且成功支付ID:'.$verification_order['id']; | 651 | + $record['send_reason'] = |
652 | + 'ID:'.$user_info['id'].'#'.$user_info['nickname'].'分享给ID:'.$uOrderInfo['id'].'#'.$uOrderInfo['nickname'].',并且成功支付订单ID:'.$verification_order['id']; | ||
593 | $record['order_id'] = $verification_order['id']; | 653 | $record['order_id'] = $verification_order['id']; |
594 | $record['mch_billno'] = $mch_billno; | 654 | $record['mch_billno'] = $mch_billno; |
595 | Db::name('verification_brokerage_record')->insert($record); | 655 | Db::name('verification_brokerage_record')->insert($record); |
@@ -52,19 +52,22 @@ class Wechat { | @@ -52,19 +52,22 @@ class Wechat { | ||
52 | static public function initWechatPay(){ | 52 | static public function initWechatPay(){ |
53 | //测试公众号 | 53 | //测试公众号 |
54 | $appid= self::$appid; | 54 | $appid= self::$appid; |
55 | - $mch_id = config("site.pay_mch_id"); | ||
56 | - $pay_key = config("site.pay_key");; | 55 | + |
56 | + $pay_key = Db::name('config')->where("id=21")->find(); | ||
57 | + $pay_mch_id = Db::name('config')->where("id=22")->find(); | ||
58 | + | ||
57 | $notify_url = 'https://coupon.xp.yn.cn'.url('/api/v1/wechat/notify'); | 59 | $notify_url = 'https://coupon.xp.yn.cn'.url('/api/v1/wechat/notify'); |
58 | 60 | ||
59 | $config = [ | 61 | $config = [ |
60 | 'app_id' => $appid, | 62 | 'app_id' => $appid, |
61 | - 'mch_id' => $mch_id, | ||
62 | - 'key' => $pay_key, | 63 | + 'mch_id' => $pay_mch_id['value'], |
64 | + 'key' => $pay_key['value'], | ||
63 | 'cert_path' => '../extend/cert/apiclient_cert.pem', // XXX: 绝对路径!!!! | 65 | 'cert_path' => '../extend/cert/apiclient_cert.pem', // XXX: 绝对路径!!!! |
64 | 'key_path' => '../extend/cert/apiclient_key.pem', // XXX: 绝对路径!!!! | 66 | 'key_path' => '../extend/cert/apiclient_key.pem', // XXX: 绝对路径!!!! |
65 | 'notify_url' => $notify_url, // 你也可以在下单时单独设置来想覆盖它 | 67 | 'notify_url' => $notify_url, // 你也可以在下单时单独设置来想覆盖它 |
66 | 68 | ||
67 | ]; | 69 | ]; |
70 | + | ||
68 | $app = Factory::payment($config); | 71 | $app = Factory::payment($config); |
69 | return $app; | 72 | return $app; |
70 | } | 73 | } |
1 | -----BEGIN CERTIFICATE----- | 1 | -----BEGIN CERTIFICATE----- |
2 | -MIID8zCCAtugAwIBAgIUdocB0dFmoYaDMf5yCRSs8ZO3PPUwDQYJKoZIhvcNAQEL | 2 | +MIIELjCCAxagAwIBAgIUZ+avWnW7BW8VKJZQB/oltpSc8GwwDQYJKoZIhvcNAQEL |
3 | BQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT | 3 | BQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT |
4 | FFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg | 4 | FFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg |
5 | -Q0EwHhcNMjEwNTA4MDIxODIwWhcNMjYwNTA3MDIxODIwWjCBhDETMBEGA1UEAwwK | ||
6 | -MTYwOTE5MDU0MDEbMBkGA1UECgwS5b6u5L+h5ZWG5oi357O757ufMTAwLgYDVQQL | ||
7 | -DCfkupHljZfohb7kur/ono3lqpLkupLogZTnvZHmnInpmZDlhazlj7gxCzAJBgNV | ||
8 | -BAYMAkNOMREwDwYDVQQHDAhTaGVuWmhlbjCCASIwDQYJKoZIhvcNAQEBBQADggEP | ||
9 | -ADCCAQoCggEBAKYyuYQBd++lhhC85+sZQ493G5A3vhGHWQ3DPVH+zjyk6IQTpNAN | ||
10 | -Bc55+j1P/8lt5okyH27t36/57O6gA/afwf99TCfJk2WNDFEs7WGNBw1UWxSHdGQ4 | ||
11 | -iKHaxTVbdrsg4q+vb8aJX6PUG6HYACdjo9I4C/sad9WliHjtMggdofPJsKqPUq6r | ||
12 | -CUwl3G4MIQ6JGOHC1v46H8PVu4MYN43SX01DVbrSKQEjd01i+TsLoc4rfwMo/5Xp | ||
13 | -uLLxVkvfsSguVpWxYHb/3R+aHglED8IgnHiVGWUCiuXQwI5bAbSr6tD9NThSft5I | ||
14 | -LO13aP0J87kbQvpITF3zFRyIfY5Nr527wBsCAwEAAaOBgTB/MAkGA1UdEwQCMAAw | ||
15 | -CwYDVR0PBAQDAgTwMGUGA1UdHwReMFwwWqBYoFaGVGh0dHA6Ly9ldmNhLml0cnVz | ||
16 | -LmNvbS5jbi9wdWJsaWMvaXRydXNjcmw/Q0E9MUJENDIyMEU1MERCQzA0QjA2QUQz | ||
17 | -OTc1NDk4NDZDMDFDM0U4RUJEMjANBgkqhkiG9w0BAQsFAAOCAQEAtqrfveYybvFm | ||
18 | -PYEagRyjaQkG24y+0G55ZSorb9ZyDubnADDLIQevZEvC/FB5fAso0nvKN1gZ7Xbn | ||
19 | -G7NdsRteLYilDCSnFn/bxq1sgna1jzX2+mc1nG2EDlWZMQe8WhtbRFRSvsZ4pjKU | ||
20 | -3X2dSSd78iWQQML7nUXsNrCWVf7unSm+1Y2PIguyTgDSMKJ8JjT4bnd1MjavmLi0 | ||
21 | -2aFsEYSeMichS77xJ2/QRa1fLE0q/bg1dbGrIYto+3c4vkzE8NpmOS4YIu933yqQ | ||
22 | -nidVRQS+Jlv5BCXB2z0cbo1t7oNAWWPYIz9PXbUd7ORSyy522r22Qq1AccIzqa4K | ||
23 | -7KZEy7L2uA== | 5 | +Q0EwHhcNMjMwNjIwMDY1MjAxWhcNMjgwNjE4MDY1MjAxWjCBhzETMBEGA1UEAwwK |
6 | +MTY0Njk5MjczNzEbMBkGA1UECgwS5b6u5L+h5ZWG5oi357O757ufMTMwMQYDVQQL | ||
7 | +DCrokpnoh6rllZ/moqbkvIHkuJrnrqHnkIblkqjor6LmnInpmZDlhazlj7gxCzAJ | ||
8 | +BgNVBAYMAkNOMREwDwYDVQQHDAhTaGVuWmhlbjCCASIwDQYJKoZIhvcNAQEBBQAD | ||
9 | +ggEPADCCAQoCggEBAL9G8aGaRYOI1Dzx3iKh3IDdqByPiQhvOPwxw8T0behxsE2b | ||
10 | +dCgyPK3FE6WUF/kuCswszQpt9rrQ/GwD50HMNQKTS5LubyFfXXaojNBIMWni+M7a | ||
11 | +IlfUwCoNWzjem/aOt7NMUAm5W1JpXw2TdSNALX7b91plaF+1ZIHNVYeiSjugXGHW | ||
12 | +8TjmgCdHMl8hOw2aWjs+nGa3FjILekX06gWkBOplt1hSlhGeNkzbZLhUbSCx7GoB | ||
13 | +UU4K3RcVEYZfZESYuvfdmxfzZyGuU0uc2y/gdUlq4YRAUR4C2xx6FlB/YqOSt83E | ||
14 | +t4xySHdLQL4VfcCk8qQnyW1IO7paOz33kODwaFUCAwEAAaOBuTCBtjAJBgNVHRME | ||
15 | +AjAAMAsGA1UdDwQEAwID+DCBmwYDVR0fBIGTMIGQMIGNoIGKoIGHhoGEaHR0cDov | ||
16 | +L2V2Y2EuaXRydXMuY29tLmNuL3B1YmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUw | ||
17 | +REJDMDRCMDZBRDM5NzU0OTg0NkMwMUMzRThFQkQyJnNnPUhBQ0M0NzFCNjU0MjJF | ||
18 | +MTJCMjdBOUQzM0E4N0FEMUNERjU5MjZFMTQwMzcxMA0GCSqGSIb3DQEBCwUAA4IB | ||
19 | +AQAmYKSAqqfg9o+4vNudKrDtROQLftaiWu1SbP7GquhJoWaNQhd8SadDtw7d70PH | ||
20 | +D7WLi4JbSFk86vkLHD11wEc0C8VvNZOSP/arg7tAPqmom8L5B1tzGB83nrz2QHTT | ||
21 | +QiiQq1U+Z0jbOeG5upATrMNzlIOGEf+y33CjfkF9TRmWSmtCUIoYZCt0n0pV3NEx | ||
22 | +tu+hZl9ia+uJT4IU8Jip/yzy0filS4nQkPAtwXM4tx7/WIvK2dRWOOR3cOUZ78ay | ||
23 | +GGORHwcGgmX42EUkl6Gmg70ffi6hf1ieyGo0ZuvanOV1dv63W7KGaOPgzGt6U7yt | ||
24 | +Eu8i0Px+8SO5LMkiUobttjWn | ||
24 | -----END CERTIFICATE----- | 25 | -----END CERTIFICATE----- |
1 | -----BEGIN PRIVATE KEY----- | 1 | -----BEGIN PRIVATE KEY----- |
2 | -MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCmMrmEAXfvpYYQ | ||
3 | -vOfrGUOPdxuQN74Rh1kNwz1R/s48pOiEE6TQDQXOefo9T//JbeaJMh9u7d+v+ezu | ||
4 | -oAP2n8H/fUwnyZNljQxRLO1hjQcNVFsUh3RkOIih2sU1W3a7IOKvr2/GiV+j1Buh | ||
5 | -2AAnY6PSOAv7GnfVpYh47TIIHaHzybCqj1KuqwlMJdxuDCEOiRjhwtb+Oh/D1buD | ||
6 | -GDeN0l9NQ1W60ikBI3dNYvk7C6HOK38DKP+V6biy8VZL37EoLlaVsWB2/90fmh4J | ||
7 | -RA/CIJx4lRllAorl0MCOWwG0q+rQ/TU4Un7eSCztd2j9CfO5G0L6SExd8xUciH2O | ||
8 | -Ta+du8AbAgMBAAECggEBAJMlResCAdZDjrczCYK1E4PpyJWfRMDwPIBa4+e82YwH | ||
9 | -1XVajwlE/mcYx92Q/r6wdvPxVLM6GFoNxSBgvCGWwIQbw1lWtxGqF8WnKWS9IAlF | ||
10 | -Ln62ju5Mv2vN7dyX5j83lnxFr4jwB6VdHjnkq/4z0c9FoBXqET8vF+041Jsq4UCd | ||
11 | -W4kOTExHjSNmr+gHX9HsJvdesVO3DK6yXdEP5V5eRCuDIggwfiU3Z88F2ztykS6C | ||
12 | -ursH/9qDUuyHjwrc1qD1wG+uQEc00ReTwkK2iYkeXjdPD//yCAGNqn50DK/vqJ6q | ||
13 | -VsTbW0T91SBhb0OvLAlZW+4UYm7K1mrUlPm/7xWhmIECgYEA3XPfzIFJECp6fCBi | ||
14 | -Udy9n7FXj1W/BKaZshhGKPWCBMjAUDZOeYu44TSAaqcQTc04RW+btGKtKAF2R9b2 | ||
15 | -8E5X6ccMXJptS+eRmbYzmWgQJsoTmwRUM/MiaXre+97IGYJZrn10KH7yKgmCVUNq | ||
16 | -TI3PoLTNDDZfM6kI8/LGXfD0/WMCgYEAwCAoq7h3WyuJDduyUPiiLGfF6pKYinJo | ||
17 | -RxleOStXA2ZfUCdJhn2LkM9NvXr3fusnxlh9d/GtqgA/9KUSHQSPuLRR28bg4x7z | ||
18 | -ry4kNYzj/XB3ylal53fcs21IgzA6UzPxMDA3q5wuVFxkiuVuu/3GgqYequkCpqij | ||
19 | -7aSc/KiAq+kCgYBzdWuUmz91r0AHIXdBiR5QeUzWjXU3PolZonBKAJ6WUfh6maXW | ||
20 | -lzOALzhY4tuMRNf209bReLUg64o4sGo1JhON7lqSmW0sqwJtquJCNFBfePI520rv | ||
21 | -fu9NIWPK2/9l1WFeqUf7qRwnMKgEPk7YtQMwnbNej6aZL6NcVRJ5fhytUwKBgAT0 | ||
22 | -T1guR5WoR759vdlsr/HpMydbZGedj6bVtqJOxc2mpCqS+MhpEGJJlj2eoCc7tSje | ||
23 | -O04Og2Xw37VVVGQ/K92deMbsF/yDXdFUpUZkPbTZY51qIpkXdC+ET+xiH/7pRfzy | ||
24 | -IV1hh6hRQZ57UCG055uS4ROTMqhNjPyh1BKH3dmRAoGAa5CS9/zm7MtIWgJBvyZZ | ||
25 | -pg+AiiHrmkDO94Jgq5LoGovUgrZw+ao6vFYTcvoyXRTARLZE23q8+u411vzLhoPg | ||
26 | -uOKVIgc7CiRwR+K2EbmTSLiAkaLxVbyuJ34/aDOd/5jjPTHIXfvXv3l3OCjjth95 | ||
27 | -v2lAG+wf3dGOVeMBsCKo3Nc= | 2 | +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQC/RvGhmkWDiNQ8 |
3 | +8d4iodyA3agcj4kIbzj8McPE9G3ocbBNm3QoMjytxROllBf5LgrMLM0Kbfa60Pxs | ||
4 | +A+dBzDUCk0uS7m8hX112qIzQSDFp4vjO2iJX1MAqDVs43pv2jrezTFAJuVtSaV8N | ||
5 | +k3UjQC1+2/daZWhftWSBzVWHoko7oFxh1vE45oAnRzJfITsNmlo7PpxmtxYyC3pF | ||
6 | +9OoFpATqZbdYUpYRnjZM22S4VG0gsexqAVFOCt0XFRGGX2REmLr33ZsX82chrlNL | ||
7 | +nNsv4HVJauGEQFEeAtscehZQf2KjkrfNxLeMckh3S0C+FX3ApPKkJ8ltSDu6Wjs9 | ||
8 | +95Dg8GhVAgMBAAECggEBAK/v2Ge1mAUBwX6BVrpyOXlK6MvEdt4MN9U5DQJHdiTd | ||
9 | +FbZ8q54hf1CyunyNuHNZl1LwTnUuakix28ya1obeB1BkHZp7uDpxFm4DYOpfzRvB | ||
10 | +SuwxFm/FYDAN8v9fOwPRiETih6g6Fza5d1XscU1IRdCvEVjTd+q41UbTkL1eWHt4 | ||
11 | +UKE5plLmYlPomu3MAyosHoHXGbMmMzeJcCSzoh/CqC+tz+15JnTP1AFK7FE5Ing/ | ||
12 | +w7ErfHEu5QL2VC3xcmR9Te0q7eMJWhwLDnj+zgn9ZHD8sCWaKvoOuGTVjXEionnP | ||
13 | +1MxOLSHlp3ytvlSAepAOCEcHRPfUuqstBEHnEjEd1QECgYEA54nGsW1Sulu3WR8d | ||
14 | +UCB4R6haXMiWkAZjyPxOQP/xREL4IajuAvDKoRtWtBN8SzTBb9Zj28ASDPyJgMFH | ||
15 | +PiXNmaVfQQ6FHoV1cbDwOJ6F0MVrPpozpHaspHd3iTXzKG6I1Nvk20TqPMhB2223 | ||
16 | +2vfya7S0OnFmuZXV7HogBXilZkECgYEA03xCe2Rk/2bF/uilh2o/B0gjIes9jsnR | ||
17 | +un5+n1M/5Pmr0ZODL5AMY3I34VUltsUCGSfUwyuK/Yt5Ws8m/FhSVUM38J1vKX8l | ||
18 | +5nVCUjCdabNMc5dXmQ3HYTHmurg8CpcleJIqOVN1EK5HoMSMx3GzGVe+5Xkt2b7e | ||
19 | +BwqhTv3vxRUCgYA6pKu9jpnwd4Blwzqya7brN1nDvE5eJjAp3LWZQvoBtxCPvfCi | ||
20 | +sAgya/E25OSLS85enCdopiosPd45zTpVJFABxV/t41aWF2lapV0CiiwMZ6Q1E+tW | ||
21 | +kXRCp7uP9ikjKXPgrd02KCtHv9TmVdDGVhyBaSBo2QYSpT+siHYJzLffwQKBgQCK | ||
22 | +cW+8Aw6yuv6mTnn92amFBM4q6CoWDTwET8ZoWkEbje3SdjSMsEnL1/uIwQq9SN6E | ||
23 | +xTRcx2ZncCRzM+SbkN3k/unh083vZlLTOLO/xh9mEH/ds5celIyOrfITDYQQkr1u | ||
24 | +3pBRkraxwsUVE1XtQhsyXeSTp+5B+tax2V2brlSFuQKBgHESGF6VRhG/zZDL+Dls | ||
25 | +30TN9fD6sc4rr1qLDKejSIgEGQN+fBkO5aYr6clnC1E8pe4ccdKNBr1r+MBo3yN8 | ||
26 | +EMiGIEg5jbRPuGvY4UdH9MRwyaGvLtKLEgHRFdIOxpB0+RXHMHpU8og4xGh7HhiR | ||
27 | +CgSqRhCVJDTvI1eN7KwaHjhS | ||
28 | -----END PRIVATE KEY----- | 28 | -----END PRIVATE KEY----- |
@@ -54,6 +54,9 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -54,6 +54,9 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
54 | Controller.api.bindevent(); | 54 | Controller.api.bindevent(); |
55 | }, | 55 | }, |
56 | edit: function () { | 56 | edit: function () { |
57 | + $("#c-verification_coupon_ids").data("params", function(){ | ||
58 | + return {custom: {verification_store_id: $("#c-verification_store_id").val()}}; | ||
59 | + }); | ||
57 | Controller.api.bindevent(); | 60 | Controller.api.bindevent(); |
58 | }, | 61 | }, |
59 | api: { | 62 | api: { |
@@ -54,6 +54,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -54,6 +54,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
54 | showhide(row) | 54 | showhide(row) |
55 | $("#c-type").change(function(){ | 55 | $("#c-type").change(function(){ |
56 | var row=$("#c-type").val() | 56 | var row=$("#c-type").val() |
57 | + | ||
57 | showhide(row) | 58 | showhide(row) |
58 | }); | 59 | }); |
59 | function showhide(row) { | 60 | function showhide(row) { |
@@ -74,6 +75,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -74,6 +75,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
74 | if(row==2){ | 75 | if(row==2){ |
75 | $("#d-voucher_amount").hide() | 76 | $("#d-voucher_amount").hide() |
76 | $("#d-gift").hide() | 77 | $("#d-gift").hide() |
78 | + $("#d-send_rule_limit").hide(); | ||
77 | $("#d-consumption").hide() | 79 | $("#d-consumption").hide() |
78 | $("#d-reduction").hide() | 80 | $("#d-reduction").hide() |
79 | $("#d-consumption_name").show() | 81 | $("#d-consumption_name").show() |
@@ -92,6 +94,46 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -92,6 +94,46 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
92 | 94 | ||
93 | }, | 95 | }, |
94 | edit: function () { | 96 | edit: function () { |
97 | + var row=$("#c-type").val() | ||
98 | + | ||
99 | + showhide(row) | ||
100 | + $("#c-type").change(function(){ | ||
101 | + var row=$("#c-type").val() | ||
102 | + | ||
103 | + showhide(row) | ||
104 | + }); | ||
105 | + function showhide(row) { | ||
106 | + if(row==0){ | ||
107 | + $("#d-voucher_amount").show() | ||
108 | + $("#d-gift").hide() | ||
109 | + $("#d-consumption").hide() | ||
110 | + $("#d-reduction").hide() | ||
111 | + $("#d-consumption_name").hide() | ||
112 | + } | ||
113 | + if(row==1){ | ||
114 | + $("#d-voucher_amount").hide() | ||
115 | + $("#d-gift").show() | ||
116 | + $("#d-consumption").hide() | ||
117 | + $("#d-reduction").hide() | ||
118 | + $("#d-consumption_name").hide() | ||
119 | + } | ||
120 | + if(row==2){ | ||
121 | + $("#d-voucher_amount").hide() | ||
122 | + $("#d-gift").hide() | ||
123 | + $("#d-send_rule_limit").hide(); | ||
124 | + $("#d-consumption").hide() | ||
125 | + $("#d-reduction").hide() | ||
126 | + $("#d-consumption_name").show() | ||
127 | + } | ||
128 | + if(row==3){ | ||
129 | + $("#d-voucher_amount").hide() | ||
130 | + $("#d-gift").hide() | ||
131 | + $("#d-consumption").show() | ||
132 | + $("#d-reduction").show() | ||
133 | + $("#d-consumption_name").hide() | ||
134 | + } | ||
135 | + } | ||
136 | + | ||
95 | Controller.api.bindevent(); | 137 | Controller.api.bindevent(); |
96 | }, | 138 | }, |
97 | api: { | 139 | api: { |
@@ -33,7 +33,38 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -33,7 +33,38 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
33 | {field: 'type', title: __('Type'), searchList: {"0":__('Type 0'),"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3'),"4":__('Type 4')}, formatter: Table.api.formatter.normal}, | 33 | {field: 'type', title: __('Type'), searchList: {"0":__('Type 0'),"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3'),"4":__('Type 4')}, formatter: Table.api.formatter.normal}, |
34 | {field: 'store.name', title: __('Store.name'), operate: 'LIKE'}, | 34 | {field: 'store.name', title: __('Store.name'), operate: 'LIKE'}, |
35 | {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'}, | 35 | {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'}, |
36 | - {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} | 36 | + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate, |
37 | + buttons:[ | ||
38 | + { | ||
39 | + name: 'cv_verification_receive', | ||
40 | + text:"查看红包", | ||
41 | + title: function (row) { | ||
42 | + return "查看《"+row.name +"》的发送红包记录" | ||
43 | + }, | ||
44 | + extend:'data-area=["94%","94%"]', | ||
45 | + classname: 'btn btn-xs btn-success btn-dialog', | ||
46 | + icon: 'fa fa-reorder', | ||
47 | + url: 'verification/staff/brokerage?verification_store_id={verification_store_id}&send_user_id={user_id}', | ||
48 | + visible: function (row) { | ||
49 | + return true; | ||
50 | + }, | ||
51 | + }, | ||
52 | + { | ||
53 | + name: 'cv_verification_receive', | ||
54 | + text:"查看分销", | ||
55 | + title: function (row) { | ||
56 | + return "查看《"+row.name +"》的分销记录" | ||
57 | + }, | ||
58 | + extend:'data-area=["94%","94%"]', | ||
59 | + classname: 'btn btn-xs btn-success btn-dialog', | ||
60 | + icon: 'fa fa-reorder', | ||
61 | + url: 'verification/staff/share_list?verification_store_id={verification_store_id}&send_user_id={user_id}', | ||
62 | + visible: function (row) { | ||
63 | + return true; | ||
64 | + }, | ||
65 | + } | ||
66 | + ] | ||
67 | + } | ||
37 | ] | 68 | ] |
38 | ] | 69 | ] |
39 | }); | 70 | }); |
@@ -47,6 +78,81 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -47,6 +78,81 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
47 | edit: function () { | 78 | edit: function () { |
48 | Controller.api.bindevent(); | 79 | Controller.api.bindevent(); |
49 | }, | 80 | }, |
81 | + | ||
82 | + brokerage: function () { | ||
83 | + // 初始化表格参数配置 | ||
84 | + Table.api.init({ | ||
85 | + extend: { | ||
86 | + brokerage_url: 'verification/staff/brokerage' + location.search, | ||
87 | + table: 'verification_staff', | ||
88 | + | ||
89 | + } | ||
90 | + }); | ||
91 | + | ||
92 | + var table = $("#table"); | ||
93 | + | ||
94 | + // 初始化表格 | ||
95 | + table.bootstrapTable({ | ||
96 | + url: $.fn.bootstrapTable.defaults.extend.brokerage_url, | ||
97 | + pk: 'id', | ||
98 | + sortName: 'id', | ||
99 | + columns: [ | ||
100 | + [ | ||
101 | + {checkbox: true}, | ||
102 | + {field: 'id', title: __('Id')}, | ||
103 | + {field: 'commission', title: __('Commission'), operate: 'LIKE'}, | ||
104 | + {field: 'send_createtime', title: __('SendCreatetime'), operate: 'LIKE'}, | ||
105 | + {field: 'send_result_text', title: __('SendResult'), operate: 'LIKE'}, | ||
106 | + {field: 'send_reason', title: __('SendReason')}, | ||
107 | + {field: 'price', title: __('OrderIdPrice')}, | ||
108 | + | ||
109 | + { | ||
110 | + field: 'send_result', title: __('SendR'), | ||
111 | + formatter: Table.api.formatter.toggle, | ||
112 | + | ||
113 | + | ||
114 | + }, | ||
115 | + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} | ||
116 | + | ||
117 | + ] | ||
118 | + ] | ||
119 | + }); | ||
120 | + | ||
121 | + // 为表格绑定事件 | ||
122 | + | ||
123 | + Table.api.bindevent(table); | ||
124 | + }, | ||
125 | + share_list: function () { | ||
126 | + // 初始化表格参数配置 | ||
127 | + Table.api.init({ | ||
128 | + extend: { | ||
129 | + share_list_url: 'verification/staff/share_list' + location.search, | ||
130 | + table: 'user', | ||
131 | + | ||
132 | + } | ||
133 | + }); | ||
134 | + | ||
135 | + var table = $("#table"); | ||
136 | + | ||
137 | + // 初始化表格 | ||
138 | + table.bootstrapTable({ | ||
139 | + url: $.fn.bootstrapTable.defaults.extend.share_list_url, | ||
140 | + pk: 'id', | ||
141 | + sortName: 'id', | ||
142 | + columns: [ | ||
143 | + [ | ||
144 | + {checkbox: true}, | ||
145 | + | ||
146 | + {field: 'nickname', title: __('User.nickname'), operate: 'LIKE'}, | ||
147 | + {field: 'updatetime', title: __('Updatetime'), operate: 'LIKE'}, | ||
148 | + ] | ||
149 | + ] | ||
150 | + }); | ||
151 | + | ||
152 | + // 为表格绑定事件 | ||
153 | + | ||
154 | + Table.api.bindevent(table); | ||
155 | + }, | ||
50 | api: { | 156 | api: { |
51 | bindevent: function () { | 157 | bindevent: function () { |
52 | Form.api.bindevent($("form[role=form]")); | 158 | Form.api.bindevent($("form[role=form]")); |
public/h5/assets/achievement-3ffe9cf2.css
0 → 100644
1 | +body[data-v-6bc35a75]{background-color:#f8f8f8}.contents[data-v-6bc35a75]{padding:.75rem}.content[data-v-6bc35a75]{padding:.75rem;background-color:#fff;border-radius:.25rem;box-sizing:border-box}.title[data-v-6bc35a75]{font-size:1rem;font-family:Noto Sans SC-Medium,Noto Sans SC;font-weight:500;color:#293452;line-height:1.5rem}.name[data-v-6bc35a75]{font-size:.75rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#4c587a;line-height:1.25rem}.bac[data-v-6bc35a75]{background-color:#f8f8f8}.list[data-v-6bc35a75]{display:flex;width:100%;align-items:center;padding:0 .5rem;box-sizing:border-box}.listitem[data-v-6bc35a75]{width:33.33%;height:2rem;display:flex;align-items:center;justify-content:center} |
public/h5/assets/activity-2ac3adb5.css
0 → 100644
1 | +.activeContent .pickerBox[data-v-936db155]{background-color:#fff}.activeContent .pickerBox .pLeft .pContent[data-v-936db155]{margin-left:1.4375rem;font-size:.84375rem;font-weight:400;color:#7985a4}.activeContent .pickerBox .pLeft .pTitle[data-v-936db155]{font-size:.84375rem;font-weight:400;color:#293452}.activeContent .inpBox[data-v-936db155]{background-color:#fff;margin-top:.46875rem}.footer[data-v-936db155]{position:fixed;bottom:calc(var(--window-bottom));background-color:#fff;width:100%;padding:.46875rem .9375rem;box-sizing:border-box;height:4.0625rem}.footer .btn[data-v-936db155]{background-color:#e0636b;color:#fff;height:2.625rem;line-height:2.625rem;text-align:center;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);border-radius:3.375rem} |
1 | +.content[data-v-fb772f24]{padding:.75rem}.iptbox[data-v-fb772f24]{width:100%;background-color:#fff;border-radius:.25rem;border:.0625rem solid #F2F2F2;height:3rem;display:flex;align-items:center;padding:0 .75rem;box-sizing:border-box}.listtab[data-v-fb772f24]{margin-top:.75rem;border-radius:.25rem;background-color:#fff;padding:.75rem;box-sizing:border-box;font-size:.875rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#7985a4;line-height:1.375rem}.statustab[data-v-fb772f24]{width:3.0625rem;height:1.5rem;background:#FFE9E8;border-radius:.25rem;display:flex;align-items:center;justify-content:center;opacity:1;font-size:.75rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#eb1c38;line-height:1.25rem}.flex[data-v-fb772f24]{display:flex;justify-content:space-between;align-items:center}.tle[data-v-fb772f24]{font-size:1rem;font-family:Noto Sans SC-Medium,Noto Sans SC;font-weight:550;color:#293452;line-height:1.5rem} |
public/h5/assets/apply-973bf9ca.css
0 → 100644
1 | +@media screen and (max-width: 500px){.hide-on-phone[data-v-a0be3707]{display:none}}.uni-stat__select[data-v-a0be3707]{display:flex;align-items:center;cursor:pointer;width:100%;flex:1;box-sizing:border-box}.uni-stat-box[data-v-a0be3707],.uni-stat__actived[data-v-a0be3707]{width:100%;flex:1}.uni-label-text[data-v-a0be3707]{font-size:14px;font-weight:700;color:#6a6a6a;margin:auto 5px auto 0}.uni-select[data-v-a0be3707]{font-size:14px;box-sizing:border-box;border-radius:4px;padding:0 5px 0 10px;position:relative;display:flex;-webkit-user-select:none;user-select:none;flex-direction:row;align-items:center;width:100%;flex:1;height:35px}.uni-select--disabled[data-v-a0be3707]{background-color:#f5f7fa;cursor:not-allowed}.uni-select__label[data-v-a0be3707]{font-size:16px;height:35px;padding-right:10px;color:#909399}.uni-select__input-box[data-v-a0be3707]{height:35px;position:relative;display:flex;flex:1;flex-direction:row;align-items:center}.uni-select__input[data-v-a0be3707]{flex:1;font-size:14px;height:22px;line-height:22px}.uni-select__input-plac[data-v-a0be3707]{font-size:14px;color:#909399}.uni-select__selector[data-v-a0be3707]{box-sizing:border-box;position:absolute;top:calc(100% + 12px);left:0;width:100%;background-color:#fff;border:1px solid #EBEEF5;border-radius:6px;box-shadow:0 2px 12px rgba(0,0,0,.1);z-index:3;padding:4px 0}.uni-select__selector-scroll[data-v-a0be3707]{max-height:200px;box-sizing:border-box}@media (min-width: 768px){.uni-select__selector-scroll[data-v-a0be3707]{max-height:600px}}.uni-select__selector-empty[data-v-a0be3707],.uni-select__selector-item[data-v-a0be3707]{display:flex;cursor:pointer;line-height:35px;font-size:14px;text-align:center;padding:0 10px}.uni-select__selector-item[data-v-a0be3707]:hover{background-color:#f9f9f9}.uni-select__selector-empty[data-v-a0be3707]:last-child,.uni-select__selector-item[data-v-a0be3707]:last-child{border-bottom:none}.uni-select__selector__disabled[data-v-a0be3707]{opacity:.4;cursor:default}.uni-popper__arrow[data-v-a0be3707],.uni-popper__arrow[data-v-a0be3707]:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;border-width:6px}.uni-popper__arrow[data-v-a0be3707]{filter:drop-shadow(0 2px 12px rgba(0,0,0,.03));top:-6px;left:10%;margin-right:3px;border-top-width:0;border-bottom-color:#ebeef5}.uni-popper__arrow[data-v-a0be3707]:after{content:" ";top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.uni-select__input-text[data-v-a0be3707]{width:100%;color:#333;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden}.uni-select__input-placeholder[data-v-a0be3707]{color:#6a6a6a;font-size:12px}.uni-select--mask[data-v-a0be3707]{position:fixed;top:0;bottom:0;right:0;left:0;z-index:2}.content[data-v-07140e35]{padding:.75rem}.items[data-v-07140e35]{height:2.75rem;display:flex;align-items:center;background-color:#fff;padding:0 .75rem;box-sizing:border-box;width:100%;margin-bottom:.5rem}.select[data-v-07140e35]{font-size:.875rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#7985a4;line-height:1.375rem}.ipt[data-v-07140e35]{color:#7985a4}[data-v-07140e35] .uni-data-select{color:#7985a4!important}.btm[data-v-07140e35]{height:3.5rem;background-color:#fff;width:100%;padding:.375rem .75rem;box-sizing:border-box;position:fixed;bottom:0;left:0}.btn[data-v-07140e35]{background-color:#abb4cc;border-radius:3.5rem;width:100%;height:100%;display:flex;align-items:center;font-size:1rem;color:#fff;justify-content:center}.blue[data-v-07140e35]{background-color:#1f78ff} |
public/h5/assets/businesscenter-e8ad13cd.css
0 → 100644
1 | +uni-view[data-v-c190cdb2],uni-scroll-view[data-v-c190cdb2],uni-swiper-item[data-v-c190cdb2]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-tag-wrapper[data-v-c190cdb2]{position:relative}.u-tag[data-v-c190cdb2]{display:flex;flex-direction:row;align-items:center;border-style:solid}.u-tag--circle[data-v-c190cdb2]{border-radius:100px}.u-tag--square[data-v-c190cdb2]{border-radius:3px}.u-tag__icon[data-v-c190cdb2]{margin-right:4px}.u-tag__text--mini[data-v-c190cdb2]{font-size:12px;line-height:12px}.u-tag__text--medium[data-v-c190cdb2]{font-size:13px;line-height:13px}.u-tag__text--large[data-v-c190cdb2]{font-size:15px;line-height:15px}.u-tag--mini[data-v-c190cdb2]{height:22px;line-height:22px;padding:0 5px}.u-tag--medium[data-v-c190cdb2]{height:26px;line-height:22px;padding:0 10px}.u-tag--large[data-v-c190cdb2]{height:32px;line-height:32px;padding:0 15px}.u-tag--primary[data-v-c190cdb2]{background-color:#3c9cff;border-width:1px;border-color:#3c9cff}.u-tag--primary--plain[data-v-c190cdb2]{border-width:1px;border-color:#3c9cff}.u-tag--primary--plain--fill[data-v-c190cdb2]{background-color:#ecf5ff}.u-tag__text--primary[data-v-c190cdb2]{color:#fff}.u-tag__text--primary--plain[data-v-c190cdb2]{color:#3c9cff}.u-tag--error[data-v-c190cdb2]{background-color:#f56c6c;border-width:1px;border-color:#f56c6c}.u-tag--error--plain[data-v-c190cdb2]{border-width:1px;border-color:#f56c6c}.u-tag--error--plain--fill[data-v-c190cdb2]{background-color:#fef0f0}.u-tag__text--error[data-v-c190cdb2]{color:#fff}.u-tag__text--error--plain[data-v-c190cdb2]{color:#f56c6c}.u-tag--warning[data-v-c190cdb2]{background-color:#f9ae3d;border-width:1px;border-color:#f9ae3d}.u-tag--warning--plain[data-v-c190cdb2]{border-width:1px;border-color:#f9ae3d}.u-tag--warning--plain--fill[data-v-c190cdb2]{background-color:#fdf6ec}.u-tag__text--warning[data-v-c190cdb2]{color:#fff}.u-tag__text--warning--plain[data-v-c190cdb2]{color:#f9ae3d}.u-tag--success[data-v-c190cdb2]{background-color:#5ac725;border-width:1px;border-color:#5ac725}.u-tag--success--plain[data-v-c190cdb2]{border-width:1px;border-color:#5ac725}.u-tag--success--plain--fill[data-v-c190cdb2]{background-color:#f5fff0}.u-tag__text--success[data-v-c190cdb2]{color:#fff}.u-tag__text--success--plain[data-v-c190cdb2]{color:#5ac725}.u-tag--info[data-v-c190cdb2]{background-color:#909399;border-width:1px;border-color:#909399}.u-tag--info--plain[data-v-c190cdb2]{border-width:1px;border-color:#909399}.u-tag--info--plain--fill[data-v-c190cdb2]{background-color:#f4f4f5}.u-tag__text--info[data-v-c190cdb2]{color:#fff}.u-tag__text--info--plain[data-v-c190cdb2]{color:#909399}.u-tag__close[data-v-c190cdb2]{position:absolute;z-index:999;top:10px;right:10px;border-radius:100px;background-color:#c6c7cb;display:flex;flex-direction:row;align-items:center;justify-content:center;transform:scale(.6) translate(80%,-80%)}.u-tag__close--mini[data-v-c190cdb2]{width:18px;height:18px}.u-tag__close--medium[data-v-c190cdb2]{width:22px;height:22px}.u-tag__close--large[data-v-c190cdb2]{width:25px;height:25px}uni-view[data-v-7787c68e],uni-scroll-view[data-v-7787c68e],uni-swiper-item[data-v-7787c68e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-modal[data-v-7787c68e]{width:20.3125rem;border-radius:6px;overflow:hidden}.u-modal__title[data-v-7787c68e]{font-size:16px;font-weight:700;color:#606266;text-align:center;padding-top:25px}.u-modal__content[data-v-7787c68e]{padding:12px 25px 25px;display:flex;flex-direction:row;justify-content:center}.u-modal__content__text[data-v-7787c68e]{font-size:15px;color:#606266;flex:1}.u-modal__button-group[data-v-7787c68e]{display:flex;flex-direction:row}.u-modal__button-group--confirm-button[data-v-7787c68e]{flex-direction:column;padding:0 25px 15px}.u-modal__button-group__wrapper[data-v-7787c68e]{flex:1;display:flex;flex-direction:row;justify-content:center;align-items:center;height:48px}.u-modal__button-group__wrapper--confirm[data-v-7787c68e],.u-modal__button-group__wrapper--only-cancel[data-v-7787c68e]{border-bottom-right-radius:6px}.u-modal__button-group__wrapper--cancel[data-v-7787c68e],.u-modal__button-group__wrapper--only-confirm[data-v-7787c68e]{border-bottom-left-radius:6px}.u-modal__button-group__wrapper--hover[data-v-7787c68e]{background-color:#f3f4f6}.u-modal__button-group__wrapper__text[data-v-7787c68e]{color:#606266;font-size:16px;text-align:center}.info[data-v-35ca0aee]{height:2.75rem;width:100%;box-sizing:border-box;margin-top:.75rem;padding:0 .75rem;display:flex;align-items:center;font-size:.875rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#293452;line-height:1.375rem}.info .infoBox[data-v-35ca0aee]{width:100%}.info uni-image[data-v-35ca0aee]{width:2.5rem;margin-right:.75rem;height:2.5rem}.kj[data-v-35ca0aee]{padding:0 .75rem;width:100%;box-sizing:border-box}.verifi[data-v-35ca0aee]{margin-top:.75rem;background-color:#fff;height:100%;box-sizing:border-box;border-radius:.25rem;display:flex;padding:.6875rem .75rem;font-size:.875rem;font-family:Noto Sans SC-Medium,Noto Sans SC;font-weight:500;color:#293452;line-height:1.375rem;justify-content:space-between}.verifi uni-image[data-v-35ca0aee]{width:100%;height:100%}.tabs[data-v-35ca0aee]{align-items:center;background-color:#fff;margin-top:.75rem;border-radius:.25rem;display:flex;flex-wrap:wrap;padding:.75rem;box-sizing:border-box;font-size:.75rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#293452;line-height:1.25rem}.tab[data-v-35ca0aee]{width:25%;display:flex;flex-direction:column;justify-content:center;align-items:center;box-sizing:border-box;margin-bottom:.71875rem}.tab uni-image[data-v-35ca0aee]{width:1.5rem;height:1.5rem} |
public/h5/assets/index-0096c672.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-019648f9.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-ce2b5177]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-ce2b5177]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-ce2b5177]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-ce2b5177]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-ce2b5177]{padding:.71875rem}.indexContent .close_icon[data-v-ce2b5177]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-ce2b5177]{width:100%}.indexContent .headImg uni-image[data-v-ce2b5177]{width:100%}.indexContent .indexMain .payBox[data-v-ce2b5177]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-ce2b5177]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-ce2b5177]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-ce2b5177]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-ce2b5177]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-ce2b5177]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-ce2b5177]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-ce2b5177]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-ce2b5177]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-ce2b5177]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-ce2b5177]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-ce2b5177]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-ce2b5177]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-ce2b5177]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-ce2b5177]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-ce2b5177]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-ce2b5177]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-ce2b5177]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-ce2b5177]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-ce2b5177]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-ce2b5177]{width:100%}.indexContent .btnBox .actBtn[data-v-ce2b5177]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-ce2b5177]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-ce2b5177]{width:100%;height:100%}.indexContent .kefuBox[data-v-ce2b5177]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-ce2b5177]{width:100%;height:100%} |
public/h5/assets/index-031143d4.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-060d7e58.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-bf1b92a5]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-bf1b92a5]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-bf1b92a5]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-bf1b92a5]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-bf1b92a5]{padding:.71875rem}.indexContent .close_icon[data-v-bf1b92a5]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-bf1b92a5]{width:100%}.indexContent .headImg uni-image[data-v-bf1b92a5]{width:100%}.indexContent .indexMain .payBox[data-v-bf1b92a5]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-bf1b92a5]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-bf1b92a5]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-bf1b92a5]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-bf1b92a5]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-bf1b92a5]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-bf1b92a5]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-bf1b92a5]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-bf1b92a5]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-bf1b92a5]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-bf1b92a5]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-bf1b92a5]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-bf1b92a5]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-bf1b92a5]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-bf1b92a5]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-bf1b92a5]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-bf1b92a5]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-bf1b92a5]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-bf1b92a5]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-bf1b92a5]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-bf1b92a5]{width:100%}.indexContent .btnBox .actBtn[data-v-bf1b92a5]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-bf1b92a5]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-bf1b92a5]{width:100%;height:100%}.indexContent .kefuBox[data-v-bf1b92a5]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-bf1b92a5]{width:100%;height:100%} |
public/h5/assets/index-0d70fd37.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-1070a2f3.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-15910878.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-28313d23]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-28313d23]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-28313d23]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-28313d23]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-28313d23]{padding:.71875rem}.indexContent .close_icon[data-v-28313d23]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-28313d23]{width:100%}.indexContent .headImg uni-image[data-v-28313d23]{width:100%}.indexContent .indexMain .payBox[data-v-28313d23]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-28313d23]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-28313d23]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-28313d23]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-28313d23]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-28313d23]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-28313d23]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-28313d23]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-28313d23]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-28313d23]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-28313d23]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-28313d23]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-28313d23]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-28313d23]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-28313d23]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-28313d23]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-28313d23]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-28313d23]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-28313d23]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-28313d23]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-28313d23]{width:100%}.indexContent .btnBox .actBtn[data-v-28313d23]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-28313d23]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-28313d23]{width:100%;height:100%}.indexContent .kefuBox[data-v-28313d23]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-28313d23]{width:100%;height:100%} |
public/h5/assets/index-1d556bd6.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-3049fc66]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-3049fc66]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-3049fc66]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-3049fc66]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-3049fc66]{padding:.71875rem}.indexContent .close_icon[data-v-3049fc66]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-3049fc66]{width:100%}.indexContent .headImg uni-image[data-v-3049fc66]{width:100%}.indexContent .indexMain .payBox[data-v-3049fc66]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-3049fc66]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-3049fc66]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-3049fc66]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-3049fc66]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-3049fc66]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-3049fc66]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-3049fc66]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-3049fc66]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-3049fc66]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-3049fc66]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-3049fc66]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-3049fc66]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-3049fc66]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-3049fc66]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-3049fc66]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-3049fc66]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-3049fc66]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-3049fc66]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-3049fc66]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-3049fc66]{width:100%}.indexContent .btnBox .actBtn[data-v-3049fc66]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-3049fc66]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-3049fc66]{width:100%;height:100%}.indexContent .kefuBox[data-v-3049fc66]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-3049fc66]{width:100%;height:100%} |
public/h5/assets/index-249a042b.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-17e69ee6]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-17e69ee6]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-17e69ee6]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-17e69ee6]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-17e69ee6]{padding:.71875rem}.indexContent .close_icon[data-v-17e69ee6]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-17e69ee6]{width:100%}.indexContent .headImg uni-image[data-v-17e69ee6]{width:100%}.indexContent .indexMain .payBox[data-v-17e69ee6]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-17e69ee6]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-17e69ee6]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-17e69ee6]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-17e69ee6]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-17e69ee6]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-17e69ee6]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-17e69ee6]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-17e69ee6]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-17e69ee6]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-17e69ee6]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-17e69ee6]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-17e69ee6]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-17e69ee6]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-17e69ee6]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-17e69ee6]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-17e69ee6]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-17e69ee6]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-17e69ee6]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-17e69ee6]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-17e69ee6]{width:100%}.indexContent .btnBox .actBtn[data-v-17e69ee6]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-17e69ee6]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-17e69ee6]{width:100%;height:100%}.indexContent .kefuBox[data-v-17e69ee6]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-17e69ee6]{width:100%;height:100%} |
public/h5/assets/index-3518a443.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-3e6c4f88.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-8c0b19a3]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-8c0b19a3]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-8c0b19a3]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-8c0b19a3]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-8c0b19a3]{padding:.71875rem}.indexContent .close_icon[data-v-8c0b19a3]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-8c0b19a3]{width:100%}.indexContent .headImg uni-image[data-v-8c0b19a3]{width:100%}.indexContent .indexMain .payBox[data-v-8c0b19a3]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-8c0b19a3]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-8c0b19a3]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-8c0b19a3]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-8c0b19a3]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-8c0b19a3]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-8c0b19a3]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-8c0b19a3]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-8c0b19a3]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-8c0b19a3]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-8c0b19a3]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-8c0b19a3]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-8c0b19a3]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-8c0b19a3]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-8c0b19a3]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-8c0b19a3]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-8c0b19a3]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-8c0b19a3]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-8c0b19a3]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-8c0b19a3]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-8c0b19a3]{width:100%}.indexContent .btnBox .actBtn[data-v-8c0b19a3]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-8c0b19a3]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-8c0b19a3]{width:100%;height:100%}.indexContent .kefuBox[data-v-8c0b19a3]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-8c0b19a3]{width:100%;height:100%} |
public/h5/assets/index-40d51e48.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-e04990cb]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-e04990cb]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-e04990cb]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-e04990cb]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-e04990cb]{padding:.71875rem}.indexContent .close_icon[data-v-e04990cb]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-e04990cb]{width:100%}.indexContent .headImg uni-image[data-v-e04990cb]{width:100%}.indexContent .indexMain .payBox[data-v-e04990cb]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-e04990cb]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-e04990cb]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-e04990cb]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-e04990cb]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-e04990cb]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-e04990cb]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-e04990cb]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-e04990cb]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-e04990cb]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-e04990cb]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-e04990cb]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-e04990cb]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-e04990cb]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-e04990cb]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-e04990cb]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-e04990cb]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-e04990cb]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-e04990cb]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-e04990cb]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-e04990cb]{width:100%}.indexContent .btnBox .actBtn[data-v-e04990cb]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-e04990cb]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-e04990cb]{width:100%;height:100%}.indexContent .kefuBox[data-v-e04990cb]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-e04990cb]{width:100%;height:100%} |
public/h5/assets/index-42d16f25.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-43275e24.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-4503ade1.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-4728fe1e.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-472a8c11.css
0 → 100644
1 | +uni-view[data-v-0e289a32],uni-scroll-view[data-v-0e289a32],uni-swiper-item[data-v-0e289a32]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-0e289a32]{width:100%}.u-button__text[data-v-0e289a32]{white-space:nowrap;line-height:1}.u-button[data-v-0e289a32]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-0e289a32]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-0e289a32]:not(:empty),.u-button__loading-text[data-v-0e289a32]{margin-left:4px}.u-button--plain.u-button--primary[data-v-0e289a32]{color:#3c9cff}.u-button--plain.u-button--info[data-v-0e289a32]{color:#909399}.u-button--plain.u-button--success[data-v-0e289a32]{color:#5ac725}.u-button--plain.u-button--error[data-v-0e289a32],.u-button--plain.u-button--warning[data-v-0e289a32]{color:#f56c6c}.u-button[data-v-0e289a32]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-0e289a32]{font-size:15px}.u-button__loading-text[data-v-0e289a32]{font-size:15px;margin-left:4px}.u-button--large[data-v-0e289a32]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-0e289a32]{padding:0 12px;font-size:14px}.u-button--small[data-v-0e289a32]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-0e289a32]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-0e289a32]{opacity:.5}.u-button--info[data-v-0e289a32]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-0e289a32]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-0e289a32]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-0e289a32]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-0e289a32]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-0e289a32]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-0e289a32]{border-radius:100px}.u-button--square[data-v-0e289a32]{border-radius:3px}.u-button__icon[data-v-0e289a32]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-0e289a32]{background-color:#fff}.u-button--hairline[data-v-0e289a32]{border-width:.5px!important}.indexContent[data-v-dca4deb9]{padding-bottom:6.25rem;position:relative}.indexContent .headImg[data-v-dca4deb9]{width:100%}.indexContent .headImg uni-image[data-v-dca4deb9]{width:100%}.indexContent .indexMain .payBox[data-v-dca4deb9]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-dca4deb9]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-dca4deb9]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-dca4deb9]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-dca4deb9]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-dca4deb9]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-dca4deb9]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-dca4deb9]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-dca4deb9]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-dca4deb9]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-dca4deb9]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-dca4deb9]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-dca4deb9]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-dca4deb9]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-dca4deb9]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-dca4deb9]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-dca4deb9]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-dca4deb9]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-dca4deb9]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-dca4deb9]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-dca4deb9]{width:100%}.indexContent .btnBox .actBtn[data-v-dca4deb9]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-dca4deb9]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .125rem .25rem .71875rem #fffaad;border-radius:3.375rem;font-size:.84375rem;font-weight:700;color:#fff}.indexContent .inviteBox .intieText[data-v-dca4deb9]{width:1.75rem;height:2.15625rem} |
public/h5/assets/index-472afd8b.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-1abb7eac]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-1abb7eac]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-1abb7eac]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-1abb7eac]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-1abb7eac]{padding:.71875rem}.indexContent .close_icon[data-v-1abb7eac]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-1abb7eac]{width:100%}.indexContent .headImg uni-image[data-v-1abb7eac]{width:100%}.indexContent .indexMain .payBox[data-v-1abb7eac]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-1abb7eac]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-1abb7eac]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-1abb7eac]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-1abb7eac]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-1abb7eac]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-1abb7eac]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-1abb7eac]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-1abb7eac]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-1abb7eac]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-1abb7eac]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-1abb7eac]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-1abb7eac]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-1abb7eac]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-1abb7eac]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-1abb7eac]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-1abb7eac]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-1abb7eac]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-1abb7eac]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-1abb7eac]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-1abb7eac]{width:100%}.indexContent .btnBox .actBtn[data-v-1abb7eac]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-1abb7eac]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-1abb7eac]{width:100%;height:100%}.indexContent .kefuBox[data-v-1abb7eac]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-1abb7eac]{width:100%;height:100%} |
public/h5/assets/index-486f8951.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-49b10db8.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-5044dddb.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-d82e501e]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-d82e501e]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-d82e501e]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-d82e501e]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-d82e501e]{padding:.71875rem}.indexContent .close_icon[data-v-d82e501e]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-d82e501e]{width:100%}.indexContent .headImg uni-image[data-v-d82e501e]{width:100%}.indexContent .indexMain .payBox[data-v-d82e501e]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-d82e501e]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-d82e501e]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-d82e501e]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-d82e501e]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-d82e501e]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-d82e501e]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-d82e501e]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-d82e501e]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-d82e501e]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-d82e501e]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-d82e501e]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-d82e501e]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-d82e501e]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-d82e501e]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-d82e501e]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-d82e501e]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-d82e501e]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-d82e501e]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-d82e501e]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-d82e501e]{width:100%}.indexContent .btnBox .actBtn[data-v-d82e501e]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-d82e501e]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-d82e501e]{width:100%;height:100%}.indexContent .kefuBox[data-v-d82e501e]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-d82e501e]{width:100%;height:100%} |
public/h5/assets/index-50ff3ea1.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-5fe559cf.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-5472f8e9]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-5472f8e9]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-5472f8e9]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-5472f8e9]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-5472f8e9]{padding:.71875rem}.indexContent .close_icon[data-v-5472f8e9]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-5472f8e9]{width:100%}.indexContent .headImg uni-image[data-v-5472f8e9]{width:100%}.indexContent .indexMain .payBox[data-v-5472f8e9]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-5472f8e9]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-5472f8e9]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-5472f8e9]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-5472f8e9]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-5472f8e9]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-5472f8e9]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-5472f8e9]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-5472f8e9]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-5472f8e9]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-5472f8e9]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-5472f8e9]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-5472f8e9]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-5472f8e9]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-5472f8e9]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-5472f8e9]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-5472f8e9]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-5472f8e9]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-5472f8e9]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-5472f8e9]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-5472f8e9]{width:100%}.indexContent .btnBox .actBtn[data-v-5472f8e9]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-5472f8e9]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-5472f8e9]{width:100%;height:100%}.indexContent .kefuBox[data-v-5472f8e9]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-5472f8e9]{width:100%;height:100%} |
public/h5/assets/index-705f6634.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-75270922.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-ce56b04c]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-ce56b04c]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-ce56b04c]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-ce56b04c]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-ce56b04c]{padding:.71875rem}.indexContent .close_icon[data-v-ce56b04c]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-ce56b04c]{width:100%}.indexContent .headImg uni-image[data-v-ce56b04c]{width:100%}.indexContent .indexMain .payBox[data-v-ce56b04c]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-ce56b04c]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-ce56b04c]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-ce56b04c]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-ce56b04c]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-ce56b04c]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-ce56b04c]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-ce56b04c]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-ce56b04c]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-ce56b04c]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-ce56b04c]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-ce56b04c]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-ce56b04c]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-ce56b04c]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-ce56b04c]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-ce56b04c]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-ce56b04c]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-ce56b04c]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-ce56b04c]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-ce56b04c]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-ce56b04c]{width:100%}.indexContent .btnBox .actBtn[data-v-ce56b04c]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-ce56b04c]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-ce56b04c]{width:100%;height:100%}.indexContent .kefuBox[data-v-ce56b04c]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-ce56b04c]{width:100%;height:100%} |
public/h5/assets/index-7ecd0c4f.css
0 → 100644
1 | +uni-view[data-v-0e289a32],uni-scroll-view[data-v-0e289a32],uni-swiper-item[data-v-0e289a32]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-0e289a32]{width:100%}.u-button__text[data-v-0e289a32]{white-space:nowrap;line-height:1}.u-button[data-v-0e289a32]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-0e289a32]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-0e289a32]:not(:empty),.u-button__loading-text[data-v-0e289a32]{margin-left:4px}.u-button--plain.u-button--primary[data-v-0e289a32]{color:#3c9cff}.u-button--plain.u-button--info[data-v-0e289a32]{color:#909399}.u-button--plain.u-button--success[data-v-0e289a32]{color:#5ac725}.u-button--plain.u-button--error[data-v-0e289a32],.u-button--plain.u-button--warning[data-v-0e289a32]{color:#f56c6c}.u-button[data-v-0e289a32]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-0e289a32]{font-size:15px}.u-button__loading-text[data-v-0e289a32]{font-size:15px;margin-left:4px}.u-button--large[data-v-0e289a32]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-0e289a32]{padding:0 12px;font-size:14px}.u-button--small[data-v-0e289a32]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-0e289a32]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-0e289a32]{opacity:.5}.u-button--info[data-v-0e289a32]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-0e289a32]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-0e289a32]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-0e289a32]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-0e289a32]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-0e289a32]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-0e289a32]{border-radius:100px}.u-button--square[data-v-0e289a32]{border-radius:3px}.u-button__icon[data-v-0e289a32]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-0e289a32]{background-color:#fff}.u-button--hairline[data-v-0e289a32]{border-width:.5px!important}.indexContent[data-v-c246d4fe]{padding-bottom:6.25rem;position:relative}.indexContent .headImg[data-v-c246d4fe]{width:100%}.indexContent .headImg uni-image[data-v-c246d4fe]{width:100%}.indexContent .indexMain .payBox[data-v-c246d4fe]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-c246d4fe]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-c246d4fe]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-c246d4fe]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-c246d4fe]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-c246d4fe]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-c246d4fe]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-c246d4fe]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-c246d4fe]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-c246d4fe]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-c246d4fe]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-c246d4fe]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-c246d4fe]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-c246d4fe]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-c246d4fe]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-c246d4fe]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-c246d4fe]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-c246d4fe]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-c246d4fe]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-c246d4fe]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-c246d4fe]{width:100%}.indexContent .btnBox .actBtn[data-v-c246d4fe]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-c246d4fe]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .125rem .25rem .71875rem #fffaad;border-radius:3.375rem;font-size:.84375rem;font-weight:700;color:#fff}.indexContent .inviteBox .intieText[data-v-c246d4fe]{width:1.75rem;height:2.15625rem} |
public/h5/assets/index-82b31317.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-8c02187a.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-8ca77c77.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-97fffc63.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-510caf98]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-510caf98]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-510caf98]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-510caf98]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-510caf98]{padding:.71875rem}.indexContent .close_icon[data-v-510caf98]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-510caf98]{width:100%}.indexContent .headImg uni-image[data-v-510caf98]{width:100%}.indexContent .indexMain .payBox[data-v-510caf98]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-510caf98]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-510caf98]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-510caf98]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-510caf98]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-510caf98]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-510caf98]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-510caf98]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-510caf98]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-510caf98]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-510caf98]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-510caf98]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-510caf98]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-510caf98]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-510caf98]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-510caf98]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-510caf98]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-510caf98]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-510caf98]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-510caf98]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-510caf98]{width:100%}.indexContent .btnBox .actBtn[data-v-510caf98]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-510caf98]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-510caf98]{width:100%;height:100%}.indexContent .kefuBox[data-v-510caf98]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-510caf98]{width:100%;height:100%} |
public/h5/assets/index-b6698151.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-dd87e804]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-dd87e804]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-dd87e804]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-dd87e804]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-dd87e804]{padding:.71875rem}.indexContent .close_icon[data-v-dd87e804]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-dd87e804]{width:100%}.indexContent .headImg uni-image[data-v-dd87e804]{width:100%}.indexContent .indexMain .payBox[data-v-dd87e804]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-dd87e804]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-dd87e804]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-dd87e804]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-dd87e804]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-dd87e804]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-dd87e804]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-dd87e804]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-dd87e804]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-dd87e804]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-dd87e804]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-dd87e804]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-dd87e804]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-dd87e804]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-dd87e804]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-dd87e804]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-dd87e804]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-dd87e804]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-dd87e804]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-dd87e804]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-dd87e804]{width:100%}.indexContent .btnBox .actBtn[data-v-dd87e804]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-dd87e804]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-dd87e804]{width:100%;height:100%}.indexContent .kefuBox[data-v-dd87e804]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-dd87e804]{width:100%;height:100%} |
public/h5/assets/index-bf4b7222.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-c5be9e7d.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-c7b49819.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-272746c0]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-272746c0]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-272746c0]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-272746c0]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-272746c0]{padding:.71875rem}.indexContent .close_icon[data-v-272746c0]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-272746c0]{width:100%}.indexContent .headImg uni-image[data-v-272746c0]{width:100%}.indexContent .indexMain .payBox[data-v-272746c0]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-272746c0]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-272746c0]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-272746c0]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-272746c0]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-272746c0]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-272746c0]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-272746c0]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-272746c0]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-272746c0]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-272746c0]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-272746c0]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-272746c0]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-272746c0]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-272746c0]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-272746c0]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-272746c0]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-272746c0]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-272746c0]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-272746c0]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-272746c0]{width:100%}.indexContent .btnBox .actBtn[data-v-272746c0]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-272746c0]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-272746c0]{width:100%;height:100%}.indexContent .kefuBox[data-v-272746c0]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-272746c0]{width:100%;height:100%} |
public/h5/assets/index-cb28ab3b.css
0 → 100644
1 | +uni-view[data-v-3274ac45],uni-scroll-view[data-v-3274ac45],uni-swiper-item[data-v-3274ac45]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-3274ac45]{width:100%}.u-button__text[data-v-3274ac45]{white-space:nowrap;line-height:1}.u-button[data-v-3274ac45]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-3274ac45]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-3274ac45]:not(:empty),.u-button__loading-text[data-v-3274ac45]{margin-left:4px}.u-button--plain.u-button--primary[data-v-3274ac45]{color:#3c9cff}.u-button--plain.u-button--info[data-v-3274ac45]{color:#909399}.u-button--plain.u-button--success[data-v-3274ac45]{color:#5ac725}.u-button--plain.u-button--error[data-v-3274ac45],.u-button--plain.u-button--warning[data-v-3274ac45]{color:#f56c6c}.u-button[data-v-3274ac45]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-3274ac45]{font-size:15px}.u-button__loading-text[data-v-3274ac45]{font-size:15px;margin-left:4px}.u-button--large[data-v-3274ac45]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-3274ac45]{padding:0 12px;font-size:14px}.u-button--small[data-v-3274ac45]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-3274ac45]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-3274ac45]{opacity:.5}.u-button--info[data-v-3274ac45]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-3274ac45]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-3274ac45]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-3274ac45]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-3274ac45]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-3274ac45]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-3274ac45]{border-radius:100px}.u-button--square[data-v-3274ac45]{border-radius:3px}.u-button__icon[data-v-3274ac45]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-3274ac45]{background-color:#fff}.u-button--hairline[data-v-3274ac45]{border-width:.5px!important}.indexContent[data-v-02348a1c]{padding-bottom:6.25rem;position:relative}.indexContent .pop_box[data-v-02348a1c]{display:flex;flex-direction:column;align-items:center;width:18.75rem}.indexContent .pop_box uni-image[data-v-02348a1c]{width:12.5rem;height:12.5rem}.indexContent .pop_box .pop_text[data-v-02348a1c]{margin-top:1.5625rem;color:#b8b8b8}.indexContent .kefu[data-v-02348a1c]{padding:.71875rem}.indexContent .close_icon[data-v-02348a1c]{display:flex;justify-content:flex-end}.indexContent .headImg[data-v-02348a1c]{width:100%}.indexContent .headImg uni-image[data-v-02348a1c]{width:100%}.indexContent .indexMain .payBox[data-v-02348a1c]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-02348a1c]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-02348a1c]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-02348a1c]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-02348a1c]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-02348a1c]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-02348a1c]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-02348a1c]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-02348a1c]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-02348a1c]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-02348a1c]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-02348a1c]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-02348a1c]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-02348a1c]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-02348a1c]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-02348a1c]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-02348a1c]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-02348a1c]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-02348a1c]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-02348a1c]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-02348a1c]{width:100%}.indexContent .btnBox .actBtn[data-v-02348a1c]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-02348a1c]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .inviteBox uni-image[data-v-02348a1c]{width:100%;height:100%}.indexContent .kefuBox[data-v-02348a1c]{position:fixed;right:.71875rem;bottom:10rem;width:3.375rem;height:3.375rem;border-radius:3.375rem}.indexContent .kefuBox uni-image[data-v-02348a1c]{width:100%;height:100%} |
public/h5/assets/index-e05cdf77.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-e8c68432.js
0 → 100644
此 diff 太大无法显示。
public/h5/assets/index-faf9f2da.css
0 → 100644
1 | +uni-view[data-v-0e289a32],uni-scroll-view[data-v-0e289a32],uni-swiper-item[data-v-0e289a32]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-button[data-v-0e289a32]{width:100%}.u-button__text[data-v-0e289a32]{white-space:nowrap;line-height:1}.u-button[data-v-0e289a32]:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;border-color:#000}.u-button--active[data-v-0e289a32]:before{opacity:.15}.u-button__icon+.u-button__text[data-v-0e289a32]:not(:empty),.u-button__loading-text[data-v-0e289a32]{margin-left:4px}.u-button--plain.u-button--primary[data-v-0e289a32]{color:#3c9cff}.u-button--plain.u-button--info[data-v-0e289a32]{color:#909399}.u-button--plain.u-button--success[data-v-0e289a32]{color:#5ac725}.u-button--plain.u-button--error[data-v-0e289a32],.u-button--plain.u-button--warning[data-v-0e289a32]{color:#f56c6c}.u-button[data-v-0e289a32]{height:40px;position:relative;align-items:center;justify-content:center;display:flex;box-sizing:border-box;flex-direction:row}.u-button__text[data-v-0e289a32]{font-size:15px}.u-button__loading-text[data-v-0e289a32]{font-size:15px;margin-left:4px}.u-button--large[data-v-0e289a32]{width:100%;height:50px;padding:0 15px}.u-button--normal[data-v-0e289a32]{padding:0 12px;font-size:14px}.u-button--small[data-v-0e289a32]{min-width:60px;height:30px;padding:0 8px;font-size:12px}.u-button--mini[data-v-0e289a32]{height:22px;font-size:10px;min-width:50px;padding:0 8px}.u-button--disabled[data-v-0e289a32]{opacity:.5}.u-button--info[data-v-0e289a32]{color:#323233;background-color:#fff;border-color:#ebedf0;border-width:1px;border-style:solid}.u-button--success[data-v-0e289a32]{color:#fff;background-color:#5ac725;border-color:#5ac725;border-width:1px;border-style:solid}.u-button--primary[data-v-0e289a32]{color:#fff;background-color:#3c9cff;border-color:#3c9cff;border-width:1px;border-style:solid}.u-button--error[data-v-0e289a32]{color:#fff;background-color:#f56c6c;border-color:#f56c6c;border-width:1px;border-style:solid}.u-button--warning[data-v-0e289a32]{color:#fff;background-color:#f9ae3d;border-color:#f9ae3d;border-width:1px;border-style:solid}.u-button--block[data-v-0e289a32]{display:flex;flex-direction:row;width:100%}.u-button--circle[data-v-0e289a32]{border-radius:100px}.u-button--square[data-v-0e289a32]{border-radius:3px}.u-button__icon[data-v-0e289a32]{min-width:1em;line-height:inherit!important;vertical-align:top}.u-button--plain[data-v-0e289a32]{background-color:#fff}.u-button--hairline[data-v-0e289a32]{border-width:.5px!important}.indexContent[data-v-b770a1b7]{padding-bottom:6.25rem;position:relative}.indexContent .headImg[data-v-b770a1b7]{width:100%}.indexContent .headImg uni-image[data-v-b770a1b7]{width:100%}.indexContent .indexMain .payBox[data-v-b770a1b7]{background-color:#fff;padding-bottom:1.4375rem}.indexContent .indexMain .payBox .fromTitle[data-v-b770a1b7]{text-align:center;font-size:.71875rem;font-weight:400;color:#f80}.indexContent .indexMain .payBox .fromContent .telBox[data-v-b770a1b7]{display:flex;justify-content:space-between;background-color:#f3f6f9;padding:.5rem;border:2px solid #e2e4e6;border-radius:.25rem;margin-top:.53125rem;font-size:.875rem;box-sizing:border-box}.indexContent .indexMain .payBox .fromContent .telBox .telLeft[data-v-b770a1b7]{display:flex}.indexContent .indexMain .payBox .fromContent .telBox .telLeft .telName[data-v-b770a1b7]{color:#909294;margin-right:2.1875rem}.indexContent .indexMain .payBox .fromContent .telBox .telRight a[data-v-b770a1b7]{text-decoration:none}.indexContent .indexMain .payBox .fromContent .inp[data-v-b770a1b7]:first-child{margin-top:.84375rem}.indexContent .indexMain .payBox .fromContent .inp[data-v-b770a1b7]{margin-top:.46875rem}.indexContent .indexMain .payBox .totalPrice[data-v-b770a1b7]{text-align:center;font-size:.71875rem;font-weight:400;color:#4c587a;margin-top:1.21875rem;margin-bottom:.71875rem}.indexContent .indexMain .payBox .totalPrice span[data-v-b770a1b7]{font-size:1.09375rem;font-weight:700;color:#f80;display:inline-block;margin-right:.25rem}.indexContent .indexMain .joinList[data-v-b770a1b7]{background-color:#fff;margin-top:1.4375rem}.indexContent .indexMain .joinList .listTitle[data-v-b770a1b7]{font-size:.71875rem;font-weight:400;color:#7985a4;text-align:center}.indexContent .indexMain .joinList .listTitle span[data-v-b770a1b7]{display:inline-block;margin:0 .21875rem;font-size:.71875rem;font-weight:400;color:#293452}.indexContent .indexMain .joinList .listBody[data-v-b770a1b7]{margin-top:.34375rem}.indexContent .indexMain .joinList .listBody .listItem[data-v-b770a1b7]{background-color:#f7f7f7;padding:.375rem;font-size:.71875rem;font-weight:400;color:#293452;justify-content:space-around}.indexContent .indexMain .joinList .listBody .listItem .itemInfo[data-v-b770a1b7]{text-align:center;width:7.01125rem}.indexContent .indexMain .joinList .listBody .listBg[data-v-b770a1b7]{background-color:#fff}.indexContent .indexMain .joinList .loadMore[data-v-b770a1b7]{text-align:center;padding:.53125rem 0}.indexContent .indexMain .joinList .loadMore .loadName[data-v-b770a1b7]{font-size:.84375rem;font-weight:400;color:#1f78ff;margin-right:.25rem}.indexContent .indexMain .joinList .loadMore uni-image[data-v-b770a1b7]{width:.9375rem;height:.9375rem}.indexContent .btnBox[data-v-b770a1b7]{width:100%}.indexContent .btnBox .actBtn[data-v-b770a1b7]{width:22rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .25rem .46875rem .96875rem #fffaad;border-radius:3.375rem;text-align:center;line-height:3.375rem;font-size:1.3125rem;font-weight:700;color:#fff;margin:0 auto;margin-top:.71875rem}.indexContent .inviteBox[data-v-b770a1b7]{position:fixed;right:.71875rem;bottom:6.25rem;width:3.375rem;height:3.375rem;background:linear-gradient(179deg,#ffda47 0%,#ff7c0a 100%);box-shadow:0 .25rem .46875rem rgba(224,120,0,.48),inset .125rem .25rem .71875rem #fffaad;border-radius:3.375rem;font-size:.84375rem;font-weight:700;color:#fff}.indexContent .inviteBox .intieText[data-v-b770a1b7]{width:1.75rem;height:2.15625rem} |
public/h5/assets/index.cbdf8128.js
0 → 100644
1 | +var e,n={};e=window,{get exports(){return n},set exports(e){n=e}}.exports=function(e,n){if(!e.jWeixin){var i,t={config:"preVerifyJSAPI",onMenuShareTimeline:"menu:share:timeline",onMenuShareAppMessage:"menu:share:appmessage",onMenuShareQQ:"menu:share:qq",onMenuShareWeibo:"menu:share:weiboApp",onMenuShareQZone:"menu:share:QZone",previewImage:"imagePreview",getLocation:"geoLocation",openProductSpecificView:"openProductViewWithPid",addCard:"batchAddCard",openCard:"batchViewCard",chooseWXPay:"getBrandWCPayRequest",openEnterpriseRedPacket:"getRecevieBizHongBaoRequest",startSearchBeacons:"startMonitoringBeacons",stopSearchBeacons:"stopMonitoringBeacons",onSearchBeacons:"onBeaconsInRange",consumeAndShareCard:"consumedShareCard",openAddress:"editAddress"},o=function(){var e={};for(var n in t)e[t[n]]=n;return e}(),r=e.document,a=r.title,c=navigator.userAgent.toLowerCase(),s=navigator.platform.toLowerCase(),d=!(!s.match("mac")&&!s.match("win")),u=-1!=c.indexOf("wxdebugger"),l=-1!=c.indexOf("micromessenger"),p=-1!=c.indexOf("android"),f=-1!=c.indexOf("iphone")||-1!=c.indexOf("ipad"),g=(i=c.match(/micromessenger\/(\d+\.\d+\.\d+)/)||c.match(/micromessenger\/(\d+\.\d+)/))?i[1]:"",m={initStartTime:L(),initEndTime:0,preVerifyStartTime:0,preVerifyEndTime:0},h={version:1,appId:"",initTime:0,preVerifyTime:0,networkType:"",isPreVerifyOk:1,systemType:f?1:p?2:-1,clientVersion:g,url:encodeURIComponent(location.href)},v={},S={_completes:[]},y={state:0,data:{}};O((function(){m.initEndTime=L()}));var I=!1,w=[],_={config:function(n){B("config",v=n);var i=!1!==v.check;O((function(){if(i)M(t.config,{verifyJsApiList:C(v.jsApiList),verifyOpenTagList:C(v.openTagList)},function(){S._complete=function(e){m.preVerifyEndTime=L(),y.state=1,y.data=e},S.success=function(e){h.isPreVerifyOk=0},S.fail=function(e){S._fail?S._fail(e):y.state=-1};var e=S._completes;return e.push((function(){!function(){if(!(d||u||v.debug||g<"6.0.2"||h.systemType<0)){var e=new Image;h.appId=v.appId,h.initTime=m.initEndTime-m.initStartTime,h.preVerifyTime=m.preVerifyEndTime-m.preVerifyStartTime,_.getNetworkType({isInnerInvoke:!0,success:function(n){h.networkType=n.networkType;var i="https://open.weixin.qq.com/sdk/report?v="+h.version+"&o="+h.isPreVerifyOk+"&s="+h.systemType+"&c="+h.clientVersion+"&a="+h.appId+"&n="+h.networkType+"&i="+h.initTime+"&p="+h.preVerifyTime+"&u="+h.url;e.src=i}})}}()})),S.complete=function(n){for(var i=0,t=e.length;i<t;++i)e[i]();S._completes=[]},S}()),m.preVerifyStartTime=L();else{y.state=1;for(var e=S._completes,n=0,o=e.length;n<o;++n)e[n]();S._completes=[]}})),_.invoke||(_.invoke=function(n,i,t){e.WeixinJSBridge&&WeixinJSBridge.invoke(n,P(i),t)},_.on=function(n,i){e.WeixinJSBridge&&WeixinJSBridge.on(n,i)})},ready:function(e){0!=y.state?e():(S._completes.push(e),!l&&v.debug&&e())},error:function(e){g<"6.0.2"||(-1==y.state?e(y.data):S._fail=e)},checkJsApi:function(e){M("checkJsApi",{jsApiList:C(e.jsApiList)},(e._complete=function(e){if(p){var n=e.checkResult;n&&(e.checkResult=JSON.parse(n))}e=function(e){var n=e.checkResult;for(var i in n){var t=o[i];t&&(n[t]=n[i],delete n[i])}return e}(e)},e))},onMenuShareTimeline:function(e){x(t.onMenuShareTimeline,{complete:function(){M("shareTimeline",{title:e.title||a,desc:e.title||a,img_url:e.imgUrl||"",link:e.link||location.href,type:e.type||"link",data_url:e.dataUrl||""},e)}},e)},onMenuShareAppMessage:function(e){x(t.onMenuShareAppMessage,{complete:function(n){"favorite"===n.scene?M("sendAppMessage",{title:e.title||a,desc:e.desc||"",link:e.link||location.href,img_url:e.imgUrl||"",type:e.type||"link",data_url:e.dataUrl||""}):M("sendAppMessage",{title:e.title||a,desc:e.desc||"",link:e.link||location.href,img_url:e.imgUrl||"",type:e.type||"link",data_url:e.dataUrl||""},e)}},e)},onMenuShareQQ:function(e){x(t.onMenuShareQQ,{complete:function(){M("shareQQ",{title:e.title||a,desc:e.desc||"",img_url:e.imgUrl||"",link:e.link||location.href},e)}},e)},onMenuShareWeibo:function(e){x(t.onMenuShareWeibo,{complete:function(){M("shareWeiboApp",{title:e.title||a,desc:e.desc||"",img_url:e.imgUrl||"",link:e.link||location.href},e)}},e)},onMenuShareQZone:function(e){x(t.onMenuShareQZone,{complete:function(){M("shareQZone",{title:e.title||a,desc:e.desc||"",img_url:e.imgUrl||"",link:e.link||location.href},e)}},e)},updateTimelineShareData:function(e){M("updateTimelineShareData",{title:e.title,link:e.link,imgUrl:e.imgUrl},e)},updateAppMessageShareData:function(e){M("updateAppMessageShareData",{title:e.title,desc:e.desc,link:e.link,imgUrl:e.imgUrl},e)},startRecord:function(e){M("startRecord",{},e)},stopRecord:function(e){M("stopRecord",{},e)},onVoiceRecordEnd:function(e){x("onVoiceRecordEnd",e)},playVoice:function(e){M("playVoice",{localId:e.localId},e)},pauseVoice:function(e){M("pauseVoice",{localId:e.localId},e)},stopVoice:function(e){M("stopVoice",{localId:e.localId},e)},onVoicePlayEnd:function(e){x("onVoicePlayEnd",e)},uploadVoice:function(e){M("uploadVoice",{localId:e.localId,isShowProgressTips:0==e.isShowProgressTips?0:1},e)},downloadVoice:function(e){M("downloadVoice",{serverId:e.serverId,isShowProgressTips:0==e.isShowProgressTips?0:1},e)},translateVoice:function(e){M("translateVoice",{localId:e.localId,isShowProgressTips:0==e.isShowProgressTips?0:1},e)},chooseImage:function(e){M("chooseImage",{scene:"1|2",count:e.count||9,sizeType:e.sizeType||["original","compressed"],sourceType:e.sourceType||["album","camera"]},(e._complete=function(e){if(p){var n=e.localIds;try{n&&(e.localIds=JSON.parse(n))}catch(i){}}},e))},getLocation:function(e){},previewImage:function(e){M(t.previewImage,{current:e.current,urls:e.urls},e)},uploadImage:function(e){M("uploadImage",{localId:e.localId,isShowProgressTips:0==e.isShowProgressTips?0:1},e)},downloadImage:function(e){M("downloadImage",{serverId:e.serverId,isShowProgressTips:0==e.isShowProgressTips?0:1},e)},getLocalImgData:function(e){!1===I?(I=!0,M("getLocalImgData",{localId:e.localId},(e._complete=function(e){if(I=!1,0<w.length){var n=w.shift();wx.getLocalImgData(n)}},e))):w.push(e)},getNetworkType:function(e){M("getNetworkType",{},(e._complete=function(e){e=function(e){var n=e.errMsg;e.errMsg="getNetworkType:ok";var i=e.subtype;if(delete e.subtype,i)e.networkType=i;else{var t=n.indexOf(":"),o=n.substring(t+1);switch(o){case"wifi":case"edge":case"wwan":e.networkType=o;break;default:e.errMsg="getNetworkType:fail"}}return e}(e)},e))},openLocation:function(e){M("openLocation",{latitude:e.latitude,longitude:e.longitude,name:e.name||"",address:e.address||"",scale:e.scale||28,infoUrl:e.infoUrl||""},e)},getLocation:function(e){M(t.getLocation,{type:(e=e||{}).type||"wgs84"},(e._complete=function(e){delete e.type},e))},hideOptionMenu:function(e){M("hideOptionMenu",{},e)},showOptionMenu:function(e){M("showOptionMenu",{},e)},closeWindow:function(e){M("closeWindow",{},e=e||{})},hideMenuItems:function(e){M("hideMenuItems",{menuList:e.menuList},e)},showMenuItems:function(e){M("showMenuItems",{menuList:e.menuList},e)},hideAllNonBaseMenuItem:function(e){M("hideAllNonBaseMenuItem",{},e)},showAllNonBaseMenuItem:function(e){M("showAllNonBaseMenuItem",{},e)},scanQRCode:function(e){M("scanQRCode",{needResult:(e=e||{}).needResult||0,scanType:e.scanType||["qrCode","barCode"]},(e._complete=function(e){if(f){var n=e.resultStr;if(n){var i=JSON.parse(n);e.resultStr=i&&i.scan_code&&i.scan_code.scan_result}}},e))},openAddress:function(e){M(t.openAddress,{},(e._complete=function(e){var n;(n=e).postalCode=n.addressPostalCode,delete n.addressPostalCode,n.provinceName=n.proviceFirstStageName,delete n.proviceFirstStageName,n.cityName=n.addressCitySecondStageName,delete n.addressCitySecondStageName,n.countryName=n.addressCountiesThirdStageName,delete n.addressCountiesThirdStageName,n.detailInfo=n.addressDetailInfo,delete n.addressDetailInfo,e=n},e))},openProductSpecificView:function(e){M(t.openProductSpecificView,{pid:e.productId,view_type:e.viewType||0,ext_info:e.extInfo},e)},addCard:function(e){for(var n=e.cardList,i=[],o=0,r=n.length;o<r;++o){var a=n[o],c={card_id:a.cardId,card_ext:a.cardExt};i.push(c)}M(t.addCard,{card_list:i},(e._complete=function(e){var n=e.card_list;if(n){for(var i=0,t=(n=JSON.parse(n)).length;i<t;++i){var o=n[i];o.cardId=o.card_id,o.cardExt=o.card_ext,o.isSuccess=!!o.is_succ,delete o.card_id,delete o.card_ext,delete o.is_succ}e.cardList=n,delete e.card_list}},e))},chooseCard:function(e){M("chooseCard",{app_id:v.appId,location_id:e.shopId||"",sign_type:e.signType||"SHA1",card_id:e.cardId||"",card_type:e.cardType||"",card_sign:e.cardSign,time_stamp:e.timestamp+"",nonce_str:e.nonceStr},(e._complete=function(e){e.cardList=e.choose_card_info,delete e.choose_card_info},e))},openCard:function(e){for(var n=e.cardList,i=[],o=0,r=n.length;o<r;++o){var a=n[o],c={card_id:a.cardId,code:a.code};i.push(c)}M(t.openCard,{card_list:i},e)},consumeAndShareCard:function(e){M(t.consumeAndShareCard,{consumedCardId:e.cardId,consumedCode:e.code},e)},chooseWXPay:function(e){M(t.chooseWXPay,V(e),e)},openEnterpriseRedPacket:function(e){M(t.openEnterpriseRedPacket,V(e),e)},startSearchBeacons:function(e){M(t.startSearchBeacons,{ticket:e.ticket},e)},stopSearchBeacons:function(e){M(t.stopSearchBeacons,{},e)},onSearchBeacons:function(e){x(t.onSearchBeacons,e)},openEnterpriseChat:function(e){M("openEnterpriseChat",{useridlist:e.userIds,chatname:e.groupName},e)},launchMiniProgram:function(e){M("launchMiniProgram",{targetAppId:e.targetAppId,path:function(e){if("string"==typeof e&&0<e.length){var n=e.split("?")[0],i=e.split("?")[1];return n+=".html",void 0!==i?n+"?"+i:n}}(e.path),envVersion:e.envVersion},e)},openBusinessView:function(e){M("openBusinessView",{businessType:e.businessType,queryString:e.queryString||"",envVersion:e.envVersion},(e._complete=function(e){if(p){var n=e.extraData;if(n)try{e.extraData=JSON.parse(n)}catch(i){e.extraData={}}}},e))},miniProgram:{navigateBack:function(e){e=e||{},O((function(){M("invokeMiniProgramAPI",{name:"navigateBack",arg:{delta:e.delta||1}},e)}))},navigateTo:function(e){O((function(){M("invokeMiniProgramAPI",{name:"navigateTo",arg:{url:e.url}},e)}))},redirectTo:function(e){O((function(){M("invokeMiniProgramAPI",{name:"redirectTo",arg:{url:e.url}},e)}))},switchTab:function(e){O((function(){M("invokeMiniProgramAPI",{name:"switchTab",arg:{url:e.url}},e)}))},reLaunch:function(e){O((function(){M("invokeMiniProgramAPI",{name:"reLaunch",arg:{url:e.url}},e)}))},postMessage:function(e){O((function(){M("invokeMiniProgramAPI",{name:"postMessage",arg:e.data||{}},e)}))},getEnv:function(n){O((function(){n({miniprogram:"miniprogram"===e.__wxjs_environment})}))}}},T=1,k={};return r.addEventListener("error",(function(e){if(!p){var n=e.target,i=n.tagName,t=n.src;if(("IMG"==i||"VIDEO"==i||"AUDIO"==i||"SOURCE"==i)&&-1!=t.indexOf("wxlocalresource://")){e.preventDefault(),e.stopPropagation();var o=n["wx-id"];if(o||(o=T++,n["wx-id"]=o),k[o])return;k[o]=!0,wx.ready((function(){wx.getLocalImgData({localId:t,success:function(e){n.src=e.localData}})}))}}}),!0),r.addEventListener("load",(function(e){if(!p){var n=e.target,i=n.tagName;if(n.src,"IMG"==i||"VIDEO"==i||"AUDIO"==i||"SOURCE"==i){var t=n["wx-id"];t&&(k[t]=!1)}}}),!0),n&&(e.wx=e.jWeixin=_),_}function M(n,i,t){e.WeixinJSBridge?WeixinJSBridge.invoke(n,P(i),(function(e){A(n,e,t)})):B(n,t)}function x(n,i,t){e.WeixinJSBridge?WeixinJSBridge.on(n,(function(e){t&&t.trigger&&t.trigger(e),A(n,e,i)})):B(n,t||i)}function P(e){return(e=e||{}).appId=v.appId,e.verifyAppId=v.appId,e.verifySignType="sha1",e.verifyTimestamp=v.timestamp+"",e.verifyNonceStr=v.nonceStr,e.verifySignature=v.signature,e}function V(e){return{timeStamp:e.timestamp+"",nonceStr:e.nonceStr,package:e.package,paySign:e.paySign,signType:e.signType||"SHA1"}}function A(e,n,i){"openEnterpriseChat"!=e&&"openBusinessView"!==e||(n.errCode=n.err_code),delete n.err_code,delete n.err_desc,delete n.err_detail;var t=n.errMsg;t||(t=n.err_msg,delete n.err_msg,t=function(e,n){var i=e,t=o[i];t&&(i=t);var r="ok";if(n){var a=n.indexOf(":");"confirm"==(r=n.substring(a+1))&&(r="ok"),"failed"==r&&(r="fail"),-1!=r.indexOf("failed_")&&(r=r.substring(7)),-1!=r.indexOf("fail_")&&(r=r.substring(5)),"access denied"!=(r=(r=r.replace(/_/g," ")).toLowerCase())&&"no permission to execute"!=r||(r="permission denied"),"config"==i&&"function not exist"==r&&(r="ok"),""==r&&(r="fail")}return i+":"+r}(e,t),n.errMsg=t),(i=i||{})._complete&&(i._complete(n),delete i._complete),t=n.errMsg||"",v.debug&&!i.isInnerInvoke&&alert(JSON.stringify(n));var r=t.indexOf(":");switch(t.substring(r+1)){case"ok":i.success&&i.success(n);break;case"cancel":i.cancel&&i.cancel(n);break;default:i.fail&&i.fail(n)}i.complete&&i.complete(n)}function C(e){if(e){for(var n=0,i=e.length;n<i;++n){var o=e[n],r=t[o];r&&(e[n]=r)}return e}}function B(e,n){if(!(!v.debug||n&&n.isInnerInvoke)){var i=o[e];i&&(e=i),n&&n._complete&&delete n._complete,console.log('"'+e+'",',n||"")}}function L(){return(new Date).getTime()}function O(n){l&&(e.WeixinJSBridge?n():r.addEventListener&&r.addEventListener("WeixinJSBridgeReady",n,!1))}}(e);export{n as w}; |
public/h5/assets/invite-50dd8822.css
0 → 100644
1 | +.inviteContent uni-image[data-v-be8a0c72]{width:100%;height:100%}.inviteContent .inviteBox[data-v-be8a0c72]{background-color:#fff;border-radius:.21875rem}.inviteContent .inviteBox .imgBox[data-v-be8a0c72]{width:100%;border-radius:.21875rem}.inviteContent .inviteBox .imgBox uni-image[data-v-be8a0c72]{width:100%}.inviteContent .inviteBox .main[data-v-be8a0c72]{margin-top:1.1875rem;justify-content:space-evenly}.inviteContent .inviteBox .main .left[data-v-be8a0c72]{margin-right:1.1875rem;text-align:center}.inviteContent .inviteBox .main .left .title[data-v-be8a0c72]{font-size:1.09375rem;font-weight:700;color:#293452}.inviteContent .inviteBox .main .left .text[data-v-be8a0c72]{font-size:.84375rem;font-weight:400;color:#293452;margin-bottom:1.4375rem}.inviteContent .inviteBox .main .left .dec[data-v-be8a0c72]{font-size:.71875rem;font-weight:400;color:#7985a4}.inviteContent .inviteBox .main .right[data-v-be8a0c72]{width:9.625rem;height:9.625rem;background-color:#aeaeae;border-radius:.25rem} |
public/h5/assets/invite-e04bb584.png
0 → 100644

11.3 KB
public/h5/assets/kefu-daac6978.png
0 → 100644

11.9 KB
public/h5/assets/login.15f773b1.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-e05cdf77.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.33239610.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-42d16f25.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.33d3d52a.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-486f8951.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.39c36731.js
0 → 100644
1 | +import{u as e,v as o,P as s,ar as i}from"./index-705f6634.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),r=async i=>{try{const n=await e(),r=await a(n);console.log(n,r),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(r){console.error(r),n.setToken("")}};return{login:r}}export{a as u}; |
public/h5/assets/login.41e28fa3.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-1070a2f3.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.42cd0c88.js
0 → 100644
1 | +import{u as e,v as o,P as s,ar as i}from"./index-c5be9e7d.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),r=async i=>{try{const n=await e(),r=await a(n);console.log(n,r),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(r){console.error(r),n.setToken("")}};return{login:r}}export{a as u}; |
public/h5/assets/login.4715c0ac.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-031143d4.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.48f8aca2.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-0d70fd37.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.4e366c8c.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-bf4b7222.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.5467b9f1.js
0 → 100644
1 | +import{u as e,v as o,P as s,ar as i}from"./index-82b31317.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),r=async i=>{try{const n=await e(),r=await a(n);console.log(n,r),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(r){console.error(r),n.setToken("")}};return{login:r}}export{a as u}; |
public/h5/assets/login.6cd77677.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-0096c672.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.78b13d10.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-43275e24.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.864dfc07.js
0 → 100644
1 | +import{u as e,v as o,P as s,ar as i}from"./index-8c02187a.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),r=async i=>{try{const n=await e(),r=await a(n);console.log(n,r),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(r){console.error(r),n.setToken("")}};return{login:r}}export{a as u}; |
public/h5/assets/login.934c786a.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-8ca77c77.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.bbfc6b71.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-4503ade1.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.dfcb9c0e.js
0 → 100644
1 | +import{u as e,v as o,P as s,ar as i}from"./index-50ff3ea1.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),r=async i=>{try{const n=await e(),r=await a(n);console.log(n,r),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(r){console.error(r),n.setToken("")}};return{login:r}}export{a as u}; |
public/h5/assets/login.f5deed92.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-4728fe1e.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.f8432b33.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-e8c68432.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.f9f993c1.js
0 → 100644
1 | +import{u as e,v as o,O as s,aq as i}from"./index-3518a443.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/login.fa819f3a.js
0 → 100644
1 | +import{u as e,v as o,N as s,ap as i}from"./index-49b10db8.js";const n=e();function a(){const e=()=>new Promise(((e,o)=>{i({provider:"weixin",success:o=>{e(o.code)},fail:e=>{o(e)}})})),a=e=>new Promise(((o,s)=>{uni.getUserInfo({provider:"weixin",withCredentials:!0,success:s=>{o({code:e,encryptedData:s.encryptedData,iv:s.iv})},fail:e=>{s(e)}})})),t=async i=>{try{const n=await e(),t=await a(n);console.log(n,t),i.code&&i.encryptedData&&i.iv&&o.$api.user.userLogin(i).then((e=>{1==e.code&&s({delta:arguments})}))}catch(t){console.error(t),n.setToken("")}};return{login:t}}export{a as u}; |
public/h5/assets/ma-0efefff1.jpg
0 → 100644

32.1 KB
public/h5/assets/myGift-ad0688c0.css
0 → 100644
1 | +.giftContent .couponList .coupon[data-v-5337647c]{margin-top:.84375rem;position:relative;background-color:#fff;padding:.125rem;border-radius:.25rem}.giftContent .couponList .coupon .tag[data-v-5337647c]{position:absolute;right:0;top:0;width:1.78125rem;height:1.78125rem}.giftContent .couponList .coupon .price[data-v-5337647c]{background:linear-gradient(153deg,#adceff 0%,#5c9dff 100%);border-radius:.25rem;font-size:2.0625rem;font-weight:500;color:#fff;margin-right:.71875rem}.giftContent .couponList .coupon .dec[data-v-5337647c]{flex:1;justify-content:space-between;padding-left:.71875rem;border-left:1px dashed #e1e6f5}.giftContent .couponList .coupon .dec .left[data-v-5337647c]{flex:1}.giftContent .couponList .coupon .dec .left .title[data-v-5337647c]{font-size:.96875rem;font-weight:500;color:#293452;margin-bottom:.40625rem}.giftContent .couponList .coupon .dec .left .date[data-v-5337647c]{font-size:.71875rem;font-weight:400;color:#7985a4}.giftContent .couponList .coupon .dec .right[data-v-5337647c]{display:flex;flex-direction:column;align-items:flex-end}.giftContent .couponList .coupon .dec .right .btn[data-v-5337647c]{background:#ff961f;border-radius:1.4375rem;font-size:.71875rem;font-weight:400;color:#fff;padding:.125rem .46875rem}.giftContent .couponList .coupon .dec .right .icon[data-v-5337647c]{margin-bottom:.625rem;border:1px solid #E1E6F5;padding:.3125rem;border-radius:.21875rem} |
public/h5/assets/myOrder-5ac6ad53.css
0 → 100644
1 | +uni-view[data-v-fcff0e44],uni-scroll-view[data-v-fcff0e44],uni-swiper-item[data-v-fcff0e44]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-loadmore[data-v-fcff0e44]{display:flex;flex-direction:row;align-items:center;justify-content:center;flex:1}.u-loadmore__content[data-v-fcff0e44]{margin:0 15px;display:flex;flex-direction:row;align-items:center;justify-content:center}.u-loadmore__content__icon-wrap[data-v-fcff0e44]{margin-right:8px}.u-loadmore__content__text[data-v-fcff0e44]{font-size:14px;color:#606266}.u-loadmore__content__dot-text[data-v-fcff0e44]{font-size:15px;color:#909193}.orderContent[data-v-51e4c2fb]{padding-bottom:6.25rem}.orderContent .orderBox[data-v-51e4c2fb]{width:100%;background-color:#fff} |
public/h5/assets/order-43becdf1.css
0 → 100644
1 | +.uni-pagination[data-v-bd0b20fd]{display:flex;position:relative;overflow:hidden;flex-direction:row;justify-content:center;align-items:center}.uni-pagination__total[data-v-bd0b20fd]{font-size:14px;color:#999;margin-right:15px}.uni-pagination__btn[data-v-bd0b20fd]{display:flex;cursor:pointer;padding:0 8px;line-height:30px;font-size:12px;position:relative;background-color:#f0f0f0;flex-direction:row;justify-content:center;align-items:center;text-align:center;border-radius:5px}.uni-pagination__child-btn[data-v-bd0b20fd]{display:flex;position:relative;flex-direction:row;justify-content:center;align-items:center;text-align:center;color:#666;font-size:12px}.uni-pagination__num[data-v-bd0b20fd]{display:flex;flex:1;flex-direction:row;justify-content:center;align-items:center;height:30px;line-height:30px;font-size:12px;color:#666;margin:0 5px}.uni-pagination__num-tag[data-v-bd0b20fd]{cursor:pointer;min-width:30px;margin:0 5px;height:30px;text-align:center;line-height:30px;color:#999;border-radius:4px}.uni-pagination__num-current[data-v-bd0b20fd]{display:flex;flex-direction:row}.uni-pagination__num-current-text[data-v-bd0b20fd]{font-size:15px}.current-index-text[data-v-bd0b20fd]{color:#2979ff}.uni-pagination--enabled[data-v-bd0b20fd]{color:#333;opacity:1}.uni-pagination--disabled[data-v-bd0b20fd]{opacity:.5;cursor:default}.uni-pagination--hover[data-v-bd0b20fd]{color:rgba(0,0,0,.6);background-color:#eee}.tag--active[data-v-bd0b20fd]:hover{color:#2979ff}.page--active[data-v-bd0b20fd]{color:#fff;background-color:#2979ff}.page--active[data-v-bd0b20fd]:hover{color:#fff}.is-pc-hide[data-v-bd0b20fd]{display:block}.is-phone-hide[data-v-bd0b20fd]{display:none}@media screen and (min-width: 450px){.is-pc-hide[data-v-bd0b20fd]{display:none}.is-phone-hide[data-v-bd0b20fd]{display:block}.uni-pagination__num-flex-none[data-v-bd0b20fd]{flex:none}}.content[data-v-713ffe68]{padding:.75rem}.iptbox[data-v-713ffe68]{width:100%;background-color:#fff;border-radius:.25rem;border:.0625rem solid #F2F2F2;height:3rem;display:flex;align-items:center;padding:0 .75rem;box-sizing:border-box}.listItem[data-v-713ffe68]{margin-top:.75rem;background-color:#fff;border-radius:.25rem;min-height:6.25rem;box-sizing:border-box;padding:.75rem;font-size:.75rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#7985a4;line-height:1.25rem}.title[data-v-713ffe68]{font-size:.875rem;font-family:Noto Sans SC-Medium,Noto Sans SC;font-weight:500;color:#293452;line-height:1.375rem}.money[data-v-713ffe68]{font-size:1.125rem;font-family:Noto Sans SC-Bold,Noto Sans SC;font-weight:700;color:#f80;line-height:1.625rem}.flex[data-v-713ffe68]{width:100%;justify-content:space-between;display:flex;font-size:.875rem;font-family:Noto Sans SC-Regular,Noto Sans SC;font-weight:400;color:#293452;line-height:1.375rem}.btm[data-v-713ffe68]{width:100%;display:flex;justify-content:flex-end;margin-top:1.0625rem}.btn[data-v-713ffe68]{width:6rem;height:2rem;border-radius:.25rem;background-color:#e8f5ff;justify-content:center;display:flex;align-items:center;color:#1f78ff;font-size:.875rem} |
public/h5/assets/orderDetail-92faddd3.css
0 → 100644
1 | +.content .infoBox[data-v-e224f279]{background-color:#fff;border-radius:.25rem}.content .grey[data-v-e224f279]{filter:grayscale(100%)}.content .couponList .coupon[data-v-e224f279]{margin-top:.84375rem;position:relative;background-color:#fff;padding:.125rem;border-radius:.25rem}.content .couponList .coupon .tag[data-v-e224f279]{position:absolute;right:0;top:0;width:1.78125rem;height:1.78125rem}.content .couponList .coupon .price[data-v-e224f279]{width:5.59375rem;height:3.125rem;background:linear-gradient(153deg,#ffcbad 0%,#ff985c 100%);margin-right:.71875rem;margin-left:.71875rem;text-align:center}.content .couponList .coupon .price uni-image[data-v-e224f279]{width:100%;height:100%}.content .couponList .coupon .dec[data-v-e224f279]{flex:1;justify-content:space-between;padding-left:.71875rem;border-left:1px dashed #e1e6f5}.content .couponList .coupon .dec .left[data-v-e224f279]{flex:1}.content .couponList .coupon .dec .left .title[data-v-e224f279]{font-size:.96875rem;font-weight:500;color:#293452;margin-bottom:.40625rem}.content .couponList .coupon .dec .left .date[data-v-e224f279]{font-size:.71875rem;font-weight:400;color:#7985a4}.content .couponList .coupon .dec .right[data-v-e224f279]{background:#ff961f;border-radius:1.4375rem;font-size:.71875rem;font-weight:400;color:#fff;padding:.125rem .46875rem} |
public/h5/assets/orderItem.25060251.js
0 → 100644
1 | +import{u as e,ae as t,r as a,b as s,o as l,c as r,w as i,f as d,g as n,t as u,D as o,j as c,aa as _,h as p,E as f,H as m,Y as g,v,I as y,C as k,J as x}from"./index-3518a443.js";import{_ as b}from"./u-icon.d674daa1.js";import{_ as h}from"./_plugin-vue_export-helper.1b428a4d.js";const C=h({__name:"orderItem",props:{detail:{type:Object},page:{type:String,default:"order"}},emits:["getList"],setup(h,{emit:C}){const w=h,S=e(),{detail:j,page:q}=t(w);let I={type:0,page:1,total:5,store_id:S.store_id};const L=()=>{m({latitude:+w.detail.lat,longitude:+w.detail.lng,name:w.detail.name,address:w.detail.address})},B=async()=>{g({title:"确定删除订单?",success(e){e.confirm&&v.$api.user.deleteOrder({id:w.detail.id,store_id:S.store_id}).then((e=>{1==e.code&&C("getList",I)}))}})},D=async()=>{let e={store_id:S.store_id,id:w.detail.id},t=(await v.$api.user.payMent(e)).data;WeixinJSBridge.invoke("getBrandWCPayRequest",{appId:t.appId,timeStamp:t.timestamp,nonceStr:t.nonceStr,package:t.package,signType:"MD5",paySign:t.paySign},(t=>{let a={id:w.detail.id,store_id:S.store_id};v.$api.user.orderDetail(a).then((t=>{1==t.data.type&&(y({title:"支付成功",icon:"none"}),C("getList",e))})),"get_brand_wcpay_request:ok"==t.err_msg?C("getList",e):"get_brand_wcpay_request:cancel"==t.err_msg?y({title:"支付取消",icon:"none"}):"get_brand_wcpay_request:fail"==t.err_msg&&y({title:"支付失败",icon:"none"})}))};return(e,t)=>{const m=k,g=x,v=a(s("u-icon"),b);return l(),r(m,{class:"content"},{default:i((()=>[d(m,{class:"top x-bc"},{default:i((()=>[d(m,{class:"orderNum"},{default:i((()=>{var e;return[n(" 订单号:"+u(null==(e=o(j))?void 0:e.order_no),1)]})),_:1}),"order"==o(q)?(l(),r(m,{key:0},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):(l(),r(m,{key:1,class:"status_one"},{default:i((()=>[d(m,{class:"delete_btn",onClick:_(B,["stop"])},{default:i((()=>[n(" 删除订单 ")])),_:1},8,["onClick"]),d(m,{class:"pay_btn",onClick:_(D,["stop"])},{default:i((()=>[n(" 去支付 ")])),_:1},8,["onClick"])])),_:1}))]})),_:1})):(l(),r(m,{key:1},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):p("",!0)]})),_:1}))])),_:1}),d(m,{class:"main x-end"},{default:i((()=>[d(m,{class:"mainLeft x-c"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>{var e;return[d(g,{src:null==(e=o(j))?void 0:e.image,mode:"aspectFill"},null,8,["src"])]})),_:1}),d(m,{class:"right"},{default:i((()=>[d(m,{class:"title"},{default:i((()=>{var e;return[n(u(null==(e=o(j))?void 0:e.title),1)]})),_:1}),d(m,{class:"text"},{default:i((()=>{var e;return[n("门店:"+u(null==(e=o(j))?void 0:e.address),1)]})),_:1}),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"mainRight",onClick:_(L,["stop"])},{default:i((()=>[d(v,{name:"map-fill",size:"20"})])),_:1},8,["onClick"])])),_:1}),d(m,{class:"info"},{default:i((()=>[d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付方式:")])),_:1}),d(m,{class:"right"},{default:i((()=>[n("微信支付")])),_:1})])),_:1}),d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付时间:")])),_:1}),d(m,{class:"right"},{default:i((()=>{var e,t;return[n(u((null==(e=o(j))?void 0:e.paytime)?null==(t=o(j))?void 0:t.paytime:"未支付"),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"totalPrice x-f"},{default:i((()=>[n(" 合计:"),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-8efa36e1"]]);export{C as o}; |
public/h5/assets/orderItem.2cf4c97a.js
0 → 100644
1 | +import{u as e,ae as t,r as a,b as s,o as l,c as r,w as i,f as d,g as n,t as u,D as o,j as c,aa as _,h as p,E as f,H as m,Y as g,v,I as y,C as k,J as x}from"./index-43275e24.js";import{_ as b}from"./u-icon.355934ee.js";import{_ as h}from"./_plugin-vue_export-helper.1b428a4d.js";const C=h({__name:"orderItem",props:{detail:{type:Object},page:{type:String,default:"order"}},emits:["getList"],setup(h,{emit:C}){const w=h,S=e(),{detail:j,page:q}=t(w);let I={type:0,page:1,total:5,store_id:S.store_id};const L=()=>{m({latitude:+w.detail.lat,longitude:+w.detail.lng,name:w.detail.name,address:w.detail.address})},B=async()=>{g({title:"确定删除订单?",success(e){e.confirm&&v.$api.user.deleteOrder({id:w.detail.id,store_id:S.store_id}).then((e=>{1==e.code&&C("getList",I)}))}})},D=async()=>{let e={store_id:S.store_id,id:w.detail.id},t=(await v.$api.user.payMent(e)).data;WeixinJSBridge.invoke("getBrandWCPayRequest",{appId:t.appId,timeStamp:t.timestamp,nonceStr:t.nonceStr,package:t.package,signType:"MD5",paySign:t.paySign},(t=>{let a={id:w.detail.id,store_id:S.store_id};v.$api.user.orderDetail(a).then((t=>{1==t.data.type&&(y({title:"支付成功",icon:"none"}),C("getList",e))})),"get_brand_wcpay_request:ok"==t.err_msg?C("getList",e):"get_brand_wcpay_request:cancel"==t.err_msg?y({title:"支付取消",icon:"none"}):"get_brand_wcpay_request:fail"==t.err_msg&&y({title:"支付失败",icon:"none"})}))};return(e,t)=>{const m=k,g=x,v=a(s("u-icon"),b);return l(),r(m,{class:"content"},{default:i((()=>[d(m,{class:"top x-bc"},{default:i((()=>[d(m,{class:"orderNum"},{default:i((()=>{var e;return[n(" 订单号:"+u(null==(e=o(j))?void 0:e.order_no),1)]})),_:1}),"order"==o(q)?(l(),r(m,{key:0},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):(l(),r(m,{key:1,class:"status_one"},{default:i((()=>[d(m,{class:"delete_btn",onClick:_(B,["stop"])},{default:i((()=>[n(" 删除订单 ")])),_:1},8,["onClick"]),d(m,{class:"pay_btn",onClick:_(D,["stop"])},{default:i((()=>[n(" 去支付 ")])),_:1},8,["onClick"])])),_:1}))]})),_:1})):(l(),r(m,{key:1},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):p("",!0)]})),_:1}))])),_:1}),d(m,{class:"main x-end"},{default:i((()=>[d(m,{class:"mainLeft x-c"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>{var e;return[d(g,{src:null==(e=o(j))?void 0:e.image,mode:"aspectFill"},null,8,["src"])]})),_:1}),d(m,{class:"right"},{default:i((()=>[d(m,{class:"title"},{default:i((()=>{var e;return[n(u(null==(e=o(j))?void 0:e.title),1)]})),_:1}),d(m,{class:"text"},{default:i((()=>{var e;return[n("门店:"+u(null==(e=o(j))?void 0:e.address),1)]})),_:1}),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"mainRight",onClick:_(L,["stop"])},{default:i((()=>[d(v,{name:"map-fill",size:"20"})])),_:1},8,["onClick"])])),_:1}),d(m,{class:"info"},{default:i((()=>[d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付方式:")])),_:1}),d(m,{class:"right"},{default:i((()=>[n("微信支付")])),_:1})])),_:1}),d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付时间:")])),_:1}),d(m,{class:"right"},{default:i((()=>{var e,t;return[n(u((null==(e=o(j))?void 0:e.paytime)?null==(t=o(j))?void 0:t.paytime:"未支付"),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"totalPrice x-f"},{default:i((()=>[n(" 合计:"),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-8efa36e1"]]);export{C as o}; |
public/h5/assets/orderItem.32a9bd69.js
0 → 100644
1 | +import{u as e,ae as t,r as a,b as s,o as l,c as r,w as i,f as d,g as n,t as u,D as o,j as c,aa as _,h as p,E as f,H as m,Y as g,v,I as y,C as k,J as x}from"./index-42d16f25.js";import{_ as b}from"./u-icon.523f600a.js";import{_ as h}from"./_plugin-vue_export-helper.1b428a4d.js";const C=h({__name:"orderItem",props:{detail:{type:Object},page:{type:String,default:"order"}},emits:["getList"],setup(h,{emit:C}){const w=h,S=e(),{detail:j,page:q}=t(w);let I={type:0,page:1,total:5,store_id:S.store_id};const L=()=>{m({latitude:+w.detail.lat,longitude:+w.detail.lng,name:w.detail.name,address:w.detail.address})},B=async()=>{g({title:"确定删除订单?",success(e){e.confirm&&v.$api.user.deleteOrder({id:w.detail.id,store_id:S.store_id}).then((e=>{1==e.code&&C("getList",I)}))}})},D=async()=>{let e={store_id:S.store_id,id:w.detail.id},t=(await v.$api.user.payMent(e)).data;WeixinJSBridge.invoke("getBrandWCPayRequest",{appId:t.appId,timeStamp:t.timestamp,nonceStr:t.nonceStr,package:t.package,signType:"MD5",paySign:t.paySign},(t=>{let a={id:w.detail.id,store_id:S.store_id};v.$api.user.orderDetail(a).then((t=>{1==t.data.type&&(y({title:"支付成功",icon:"none"}),C("getList",e))})),"get_brand_wcpay_request:ok"==t.err_msg?C("getList",e):"get_brand_wcpay_request:cancel"==t.err_msg?y({title:"支付取消",icon:"none"}):"get_brand_wcpay_request:fail"==t.err_msg&&y({title:"支付失败",icon:"none"})}))};return(e,t)=>{const m=k,g=x,v=a(s("u-icon"),b);return l(),r(m,{class:"content"},{default:i((()=>[d(m,{class:"top x-bc"},{default:i((()=>[d(m,{class:"orderNum"},{default:i((()=>{var e;return[n(" 订单号:"+u(null==(e=o(j))?void 0:e.order_no),1)]})),_:1}),"order"==o(q)?(l(),r(m,{key:0},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):(l(),r(m,{key:1,class:"status_one"},{default:i((()=>[d(m,{class:"delete_btn",onClick:_(B,["stop"])},{default:i((()=>[n(" 删除订单 ")])),_:1},8,["onClick"]),d(m,{class:"pay_btn",onClick:_(D,["stop"])},{default:i((()=>[n(" 去支付 ")])),_:1},8,["onClick"])])),_:1}))]})),_:1})):(l(),r(m,{key:1},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):p("",!0)]})),_:1}))])),_:1}),d(m,{class:"main x-end"},{default:i((()=>[d(m,{class:"mainLeft x-c"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>{var e;return[d(g,{src:null==(e=o(j))?void 0:e.image,mode:"aspectFill"},null,8,["src"])]})),_:1}),d(m,{class:"right"},{default:i((()=>[d(m,{class:"title"},{default:i((()=>{var e;return[n(u(null==(e=o(j))?void 0:e.title),1)]})),_:1}),d(m,{class:"text"},{default:i((()=>{var e;return[n("门店:"+u(null==(e=o(j))?void 0:e.address),1)]})),_:1}),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"mainRight",onClick:_(L,["stop"])},{default:i((()=>[d(v,{name:"map-fill",size:"20"})])),_:1},8,["onClick"])])),_:1}),d(m,{class:"info"},{default:i((()=>[d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付方式:")])),_:1}),d(m,{class:"right"},{default:i((()=>[n("微信支付")])),_:1})])),_:1}),d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付时间:")])),_:1}),d(m,{class:"right"},{default:i((()=>{var e,t;return[n(u((null==(e=o(j))?void 0:e.paytime)?null==(t=o(j))?void 0:t.paytime:"未支付"),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"totalPrice x-f"},{default:i((()=>[n(" 合计:"),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-8efa36e1"]]);export{C as o}; |
public/h5/assets/orderItem.3927c035.js
0 → 100644
1 | +import{u as e,ae as t,r as a,b as s,o as l,c as r,w as i,f as d,g as n,t as u,D as o,j as c,aa as _,h as p,E as f,H as m,Y as g,v,I as y,C as k,J as x}from"./index-031143d4.js";import{_ as b}from"./u-icon.9059e44a.js";import{_ as h}from"./_plugin-vue_export-helper.1b428a4d.js";const C=h({__name:"orderItem",props:{detail:{type:Object},page:{type:String,default:"order"}},emits:["getList"],setup(h,{emit:C}){const w=h,S=e(),{detail:j,page:q}=t(w);let I={type:0,page:1,total:5,store_id:S.store_id};const L=()=>{m({latitude:+w.detail.lat,longitude:+w.detail.lng,name:w.detail.name,address:w.detail.address})},B=async()=>{g({title:"确定删除订单?",success(e){e.confirm&&v.$api.user.deleteOrder({id:w.detail.id,store_id:S.store_id}).then((e=>{1==e.code&&C("getList",I)}))}})},D=async()=>{let e={store_id:S.store_id,id:w.detail.id},t=(await v.$api.user.payMent(e)).data;WeixinJSBridge.invoke("getBrandWCPayRequest",{appId:t.appId,timeStamp:t.timestamp,nonceStr:t.nonceStr,package:t.package,signType:"MD5",paySign:t.paySign},(t=>{let a={id:w.detail.id,store_id:S.store_id};v.$api.user.orderDetail(a).then((t=>{1==t.data.type&&(y({title:"支付成功",icon:"none"}),C("getList",e))})),"get_brand_wcpay_request:ok"==t.err_msg?C("getList",e):"get_brand_wcpay_request:cancel"==t.err_msg?y({title:"支付取消",icon:"none"}):"get_brand_wcpay_request:fail"==t.err_msg&&y({title:"支付失败",icon:"none"})}))};return(e,t)=>{const m=k,g=x,v=a(s("u-icon"),b);return l(),r(m,{class:"content"},{default:i((()=>[d(m,{class:"top x-bc"},{default:i((()=>[d(m,{class:"orderNum"},{default:i((()=>{var e;return[n(" 订单号:"+u(null==(e=o(j))?void 0:e.order_no),1)]})),_:1}),"order"==o(q)?(l(),r(m,{key:0},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):(l(),r(m,{key:1,class:"status_one"},{default:i((()=>[d(m,{class:"delete_btn",onClick:_(B,["stop"])},{default:i((()=>[n(" 删除订单 ")])),_:1},8,["onClick"]),d(m,{class:"pay_btn",onClick:_(D,["stop"])},{default:i((()=>[n(" 去支付 ")])),_:1},8,["onClick"])])),_:1}))]})),_:1})):(l(),r(m,{key:1},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):p("",!0)]})),_:1}))])),_:1}),d(m,{class:"main x-end"},{default:i((()=>[d(m,{class:"mainLeft x-c"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>{var e;return[d(g,{src:null==(e=o(j))?void 0:e.image,mode:"aspectFill"},null,8,["src"])]})),_:1}),d(m,{class:"right"},{default:i((()=>[d(m,{class:"title"},{default:i((()=>{var e;return[n(u(null==(e=o(j))?void 0:e.title),1)]})),_:1}),d(m,{class:"text"},{default:i((()=>{var e;return[n("门店:"+u(null==(e=o(j))?void 0:e.address),1)]})),_:1}),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"mainRight",onClick:_(L,["stop"])},{default:i((()=>[d(v,{name:"map-fill",size:"20"})])),_:1},8,["onClick"])])),_:1}),d(m,{class:"info"},{default:i((()=>[d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付方式:")])),_:1}),d(m,{class:"right"},{default:i((()=>[n("微信支付")])),_:1})])),_:1}),d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付时间:")])),_:1}),d(m,{class:"right"},{default:i((()=>{var e,t;return[n(u((null==(e=o(j))?void 0:e.paytime)?null==(t=o(j))?void 0:t.paytime:"未支付"),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"totalPrice x-f"},{default:i((()=>[n(" 合计:"),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-8efa36e1"]]);export{C as o}; |
public/h5/assets/orderItem.3a52f975.js
0 → 100644
1 | +import{u as e,ae as t,r as a,b as s,o as l,c as r,w as i,f as d,g as n,t as u,D as o,j as c,aa as _,h as p,E as f,H as m,Y as g,v,I as y,C as k,J as x}from"./index-4503ade1.js";import{_ as b}from"./u-icon.6490a9d1.js";import{_ as h}from"./_plugin-vue_export-helper.1b428a4d.js";const C=h({__name:"orderItem",props:{detail:{type:Object},page:{type:String,default:"order"}},emits:["getList"],setup(h,{emit:C}){const w=h,S=e(),{detail:j,page:q}=t(w);let I={type:0,page:1,total:5,store_id:S.store_id};const L=()=>{m({latitude:+w.detail.lat,longitude:+w.detail.lng,name:w.detail.name,address:w.detail.address})},B=async()=>{g({title:"确定删除订单?",success(e){e.confirm&&v.$api.user.deleteOrder({id:w.detail.id,store_id:S.store_id}).then((e=>{1==e.code&&C("getList",I)}))}})},D=async()=>{let e={store_id:S.store_id,id:w.detail.id},t=(await v.$api.user.payMent(e)).data;WeixinJSBridge.invoke("getBrandWCPayRequest",{appId:t.appId,timeStamp:t.timestamp,nonceStr:t.nonceStr,package:t.package,signType:"MD5",paySign:t.paySign},(t=>{let a={id:w.detail.id,store_id:S.store_id};v.$api.user.orderDetail(a).then((t=>{1==t.data.type&&(y({title:"支付成功",icon:"none"}),C("getList",e))})),"get_brand_wcpay_request:ok"==t.err_msg?C("getList",e):"get_brand_wcpay_request:cancel"==t.err_msg?y({title:"支付取消",icon:"none"}):"get_brand_wcpay_request:fail"==t.err_msg&&y({title:"支付失败",icon:"none"})}))};return(e,t)=>{const m=k,g=x,v=a(s("u-icon"),b);return l(),r(m,{class:"content"},{default:i((()=>[d(m,{class:"top x-bc"},{default:i((()=>[d(m,{class:"orderNum"},{default:i((()=>{var e;return[n(" 订单号:"+u(null==(e=o(j))?void 0:e.order_no),1)]})),_:1}),"order"==o(q)?(l(),r(m,{key:0},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):(l(),r(m,{key:1,class:"status_one"},{default:i((()=>[d(m,{class:"delete_btn",onClick:_(B,["stop"])},{default:i((()=>[n(" 删除订单 ")])),_:1},8,["onClick"]),d(m,{class:"pay_btn",onClick:_(D,["stop"])},{default:i((()=>[n(" 去支付 ")])),_:1},8,["onClick"])])),_:1}))]})),_:1})):(l(),r(m,{key:1},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):p("",!0)]})),_:1}))])),_:1}),d(m,{class:"main x-end"},{default:i((()=>[d(m,{class:"mainLeft x-c"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>{var e;return[d(g,{src:null==(e=o(j))?void 0:e.image,mode:"aspectFill"},null,8,["src"])]})),_:1}),d(m,{class:"right"},{default:i((()=>[d(m,{class:"title"},{default:i((()=>{var e;return[n(u(null==(e=o(j))?void 0:e.title),1)]})),_:1}),d(m,{class:"text"},{default:i((()=>{var e;return[n("门店:"+u(null==(e=o(j))?void 0:e.address),1)]})),_:1}),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"mainRight",onClick:_(L,["stop"])},{default:i((()=>[d(v,{name:"map-fill",size:"20"})])),_:1},8,["onClick"])])),_:1}),d(m,{class:"info"},{default:i((()=>[d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付方式:")])),_:1}),d(m,{class:"right"},{default:i((()=>[n("微信支付")])),_:1})])),_:1}),d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付时间:")])),_:1}),d(m,{class:"right"},{default:i((()=>{var e,t;return[n(u((null==(e=o(j))?void 0:e.paytime)?null==(t=o(j))?void 0:t.paytime:"未支付"),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"totalPrice x-f"},{default:i((()=>[n(" 合计:"),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-8efa36e1"]]);export{C as o}; |
public/h5/assets/orderItem.5c623d09.js
0 → 100644
1 | +import{u as e,ae as t,r as a,b as s,o as l,c as r,w as i,f as d,g as n,t as u,D as o,j as c,aa as _,h as p,E as f,H as m,Y as g,v,I as y,C as k,J as x}from"./index-0d70fd37.js";import{_ as b}from"./u-icon.30c00836.js";import{_ as h}from"./_plugin-vue_export-helper.1b428a4d.js";const C=h({__name:"orderItem",props:{detail:{type:Object},page:{type:String,default:"order"}},emits:["getList"],setup(h,{emit:C}){const w=h,S=e(),{detail:j,page:q}=t(w);let I={type:0,page:1,total:5,store_id:S.store_id};const L=()=>{m({latitude:+w.detail.lat,longitude:+w.detail.lng,name:w.detail.name,address:w.detail.address})},B=async()=>{g({title:"确定删除订单?",success(e){e.confirm&&v.$api.user.deleteOrder({id:w.detail.id,store_id:S.store_id}).then((e=>{1==e.code&&C("getList",I)}))}})},D=async()=>{let e={store_id:S.store_id,id:w.detail.id},t=(await v.$api.user.payMent(e)).data;WeixinJSBridge.invoke("getBrandWCPayRequest",{appId:t.appId,timeStamp:t.timestamp,nonceStr:t.nonceStr,package:t.package,signType:"MD5",paySign:t.paySign},(t=>{let a={id:w.detail.id,store_id:S.store_id};v.$api.user.orderDetail(a).then((t=>{1==t.data.type&&(y({title:"支付成功",icon:"none"}),C("getList",e))})),"get_brand_wcpay_request:ok"==t.err_msg?C("getList",e):"get_brand_wcpay_request:cancel"==t.err_msg?y({title:"支付取消",icon:"none"}):"get_brand_wcpay_request:fail"==t.err_msg&&y({title:"支付失败",icon:"none"})}))};return(e,t)=>{const m=k,g=x,v=a(s("u-icon"),b);return l(),r(m,{class:"content"},{default:i((()=>[d(m,{class:"top x-bc"},{default:i((()=>[d(m,{class:"orderNum"},{default:i((()=>{var e;return[n(" 订单号:"+u(null==(e=o(j))?void 0:e.order_no),1)]})),_:1}),"order"==o(q)?(l(),r(m,{key:0},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):(l(),r(m,{key:1,class:"status_one"},{default:i((()=>[d(m,{class:"delete_btn",onClick:_(B,["stop"])},{default:i((()=>[n(" 删除订单 ")])),_:1},8,["onClick"]),d(m,{class:"pay_btn",onClick:_(D,["stop"])},{default:i((()=>[n(" 去支付 ")])),_:1},8,["onClick"])])),_:1}))]})),_:1})):(l(),r(m,{key:1},{default:i((()=>{var e,t;return[1==(null==(e=o(j))?void 0:e.type)?(l(),r(m,{key:0,class:c(0==(null==(t=o(j))?void 0:t.status)?"status_two":"status_three")},{default:i((()=>{var e;return[n(u(0==(null==(e=o(j))?void 0:e.status)?"待使用":"已使用"),1)]})),_:1},8,["class"])):p("",!0)]})),_:1}))])),_:1}),d(m,{class:"main x-end"},{default:i((()=>[d(m,{class:"mainLeft x-c"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>{var e;return[d(g,{src:null==(e=o(j))?void 0:e.image,mode:"aspectFill"},null,8,["src"])]})),_:1}),d(m,{class:"right"},{default:i((()=>[d(m,{class:"title"},{default:i((()=>{var e;return[n(u(null==(e=o(j))?void 0:e.title),1)]})),_:1}),d(m,{class:"text"},{default:i((()=>{var e;return[n("门店:"+u(null==(e=o(j))?void 0:e.address),1)]})),_:1}),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"mainRight",onClick:_(L,["stop"])},{default:i((()=>[d(v,{name:"map-fill",size:"20"})])),_:1},8,["onClick"])])),_:1}),d(m,{class:"info"},{default:i((()=>[d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付方式:")])),_:1}),d(m,{class:"right"},{default:i((()=>[n("微信支付")])),_:1})])),_:1}),d(m,{class:"infoBox x-bc"},{default:i((()=>[d(m,{class:"left"},{default:i((()=>[n("支付时间:")])),_:1}),d(m,{class:"right"},{default:i((()=>{var e,t;return[n(u((null==(e=o(j))?void 0:e.paytime)?null==(t=o(j))?void 0:t.paytime:"未支付"),1)]})),_:1})])),_:1})])),_:1}),d(m,{class:"totalPrice x-f"},{default:i((()=>[n(" 合计:"),d(m,{class:"price"},{default:i((()=>{var e;return[f("span",null,"¥"),n(" "+u(null==(e=o(j))?void 0:e.price),1)]})),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-8efa36e1"]]);export{C as o}; |
-
请 注册 或 登录 后发表评论