Browse Source

优化商户获客类型 shop表添加hksy_type

xiaohai 1 week ago
parent
commit
03f3844dc8

+ 6
- 1
app/admin/controller/shop/Store.php View File

44
     public function add()
44
     public function add()
45
     {
45
     {
46
         if ($this->request->isAjax()) {
46
         if ($this->request->isAjax()) {
47
-            (new StoreLValidate())->goCheck('add');
48
             $post = $this->request->post();
47
             $post = $this->request->post();
48
+            if (empty($post['expire_time'])) {
49
+                $post['expire_time'] = time();
50
+            }
51
+
52
+            (new StoreLValidate())->goCheck('add', $post);
53
+
49
             $lists = StoreLogic::add($post);
54
             $lists = StoreLogic::add($post);
50
             if ($lists === false) {
55
             if ($lists === false) {
51
                 $error = StoreLogic::getError() ?: '新增失败';
56
                 $error = StoreLogic::getError() ?: '新增失败';

+ 43
- 2
app/admin/logic/shop/StoreLogic.php View File

9
 use app\common\model\shop\Shop;
9
 use app\common\model\shop\Shop;
10
 use app\common\model\shop\ShopAdmin;
10
 use app\common\model\shop\ShopAdmin;
11
 use app\common\model\shop\ShopGoods;
11
 use app\common\model\shop\ShopGoods;
12
+use app\common\model\shop\ShopHkLog;
12
 use app\common\server\UrlServer;
13
 use app\common\server\UrlServer;
13
 use Exception;
14
 use Exception;
14
 use think\facade\Db;
15
 use think\facade\Db;
152
             // 校验配送方式
153
             // 校验配送方式
153
             self::checkDeliveryType($post);
154
             self::checkDeliveryType($post);
154
 
155
 
156
+            $hksy_type = $post['hksy_type'] ?? 1;
157
+            $hksy_count = $post['hksy_count'] ?? 0;
158
+            $op_count = $post['months'] ?? 0;
159
+
160
+            if ($hksy_type == 1) {
161
+                $op_count = 12;
162
+            } else {
163
+                $hksy_count = 0;
164
+            }
165
+
166
+            $di = \DateInterval::createFromDateString(strval($op_count) . ' months');
167
+            $dt = date_create_from_format('Y-m-d H:i:s', date('Y-m-d 00:00:00', time()))->add($di);
168
+            $expire_time = $dt->getTimestamp();
169
+
155
             // 创建商家
170
             // 创建商家
156
             $shop = Shop::create([
171
             $shop = Shop::create([
157
                 'cid'               => $post['cid'],
172
                 'cid'               => $post['cid'],
170
                 'is_freeze'         => $post['is_freeze'],
185
                 'is_freeze'         => $post['is_freeze'],
171
                 'is_product_audit'  => $post['is_product_audit'],
186
                 'is_product_audit'  => $post['is_product_audit'],
172
                 'is_recommend'      => $post['is_recommend'] ?? 0,
187
                 'is_recommend'      => $post['is_recommend'] ?? 0,
173
-                'expire_time'       => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
188
+                // 'expire_time'       => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
189
+                'expire_time'       => $expire_time,
174
                 'province_id'    => $post['province_id'] ?? 0,
190
                 'province_id'    => $post['province_id'] ?? 0,
175
                 'city_id'        => $post['city_id'] ?? 0,
191
                 'city_id'        => $post['city_id'] ?? 0,
176
                 'district_id'    => $post['district_id'] ?? 0,
192
                 'district_id'    => $post['district_id'] ?? 0,
177
                 'address'        => $post['address'] ?? '',
193
                 'address'        => $post['address'] ?? '',
178
                 'longitude'      => $post['longitude'] ?? '',
194
                 'longitude'      => $post['longitude'] ?? '',
179
                 'latitude'       => $post['latitude'] ?? '',
195
                 'latitude'       => $post['latitude'] ?? '',
180
-                'delivery_type'  => $post['delivery_type'] ?? [1]
196
+                'delivery_type'  => $post['delivery_type'] ?? [1],
197
+                'hksy_type'      => $hksy_type,
198
+                'hksy_count'    => $hksy_count,
181
             ]);
199
             ]);
182
             // 创建账号
200
             // 创建账号
183
             // 新增商家登录账号
201
             // 新增商家登录账号
197
                 'del' => 0
215
                 'del' => 0
198
             ]);
216
             ]);
199
 
217
 
218
+            // 添加用户套餐时间或者数量日志 ZMH 2025-03-24
219
+            if ($hksy_type >= 0) {
220
+                // 添加用户套餐时间或者数量
221
+                $hk = new ShopHkLog();
222
+                $hk->shop_id = $shop['id'];
223
+                $hk->source_id = 0;
224
+                if ($hksy_type == 1) {
225
+                    $hk->source_type = 100;
226
+                    $hk->change_count = $hksy_count;
227
+                    $hk->left_count = $hksy_count;
228
+                    $hk->remark = '[初始化],赠送操作数量:' . $hksy_count;
229
+                } else {
230
+                    $hk->source_type = 200;
231
+                    $hk->change_count = $op_count;
232
+
233
+                    $hk->before_date = date('Y-m-d H:i:s', time());
234
+                    $hk->after_date = date('Y-m-d H:i:s', $dt->getTimestamp());
235
+                    $hk->remark = '[初始化],赠送月份数量:' . $op_count;
236
+                }
237
+
238
+                $hk->save();
239
+            }
240
+
200
             Db::commit();
241
             Db::commit();
201
             return true;
242
             return true;
202
         } catch (Exception $e) {
243
         } catch (Exception $e) {

+ 92
- 39
app/admin/view/shop/store/add.html View File

1
 {layout name="layout2" /}
1
 {layout name="layout2" /}
2
 <style>
2
 <style>
3
-    .layui-form-item .layui-form-label { width: 95px; }
4
-    .layui-form-item .layui-input-inline { width: 240px; }
5
-    .layui-form-item .map-container{ width: 600px; height: 400px; margin-left: 100px; margin-top: 20px; }
3
+    .layui-form-item .layui-form-label {
4
+        width: 95px;
5
+    }
6
+
7
+    .layui-form-item .layui-input-inline {
8
+        width: 240px;
9
+    }
10
+
11
+    .layui-form-item .map-container {
12
+        width: 600px;
13
+        height: 400px;
14
+        margin-left: 100px;
15
+        margin-top: 20px;
16
+    }
17
+
6
     .layui-form-select dl {
18
     .layui-form-select dl {
7
         z-index: 1001;
19
         z-index: 1001;
8
     }
20
     }
21
                 <div class="layui-form-item">
33
                 <div class="layui-form-item">
22
                     <label for="name" class="layui-form-label"><span style="color:red;">*</span>商家名称:</label>
34
                     <label for="name" class="layui-form-label"><span style="color:red;">*</span>商家名称:</label>
23
                     <div class="layui-input-inline">
35
                     <div class="layui-input-inline">
24
-                        <input type="text" name="name" id="name" lay-verType="tips" lay-verify="name"
25
-                               switch-tab="0" autocomplete="off" class="layui-input">
36
+                        <input type="text" name="name" id="name" lay-verType="tips" lay-verify="name" switch-tab="0"
37
+                            autocomplete="off" class="layui-input">
26
                     </div>
38
                     </div>
27
                 </div>
39
                 </div>
28
                 <div class="layui-form-item" style="display: none;">
40
                 <div class="layui-form-item" style="display: none;">
29
                     <label class="layui-form-label"><span style="color:red;">*</span>商家类型:</label>
41
                     <label class="layui-form-label"><span style="color:red;">*</span>商家类型:</label>
30
                     <div class="layui-input-inline">
42
                     <div class="layui-input-inline">
31
-                        <input type="radio" name="type" value="1" title="官方自营" >
43
+                        <input type="radio" name="type" value="1" title="官方自营">
32
                         <input type="radio" name="type" value="2" title="入驻商家" checked>
44
                         <input type="radio" name="type" value="2" title="入驻商家" checked>
33
                     </div>
45
                     </div>
34
                 </div>
46
                 </div>
35
                 <div class="layui-form-item" style="display: none;">
47
                 <div class="layui-form-item" style="display: none;">
36
                     <label class="layui-form-label"><span style="color:red;">*</span>配送方式:</label>
48
                     <label class="layui-form-label"><span style="color:red;">*</span>配送方式:</label>
37
                     <div class="layui-input-inline">
49
                     <div class="layui-input-inline">
38
-                        <input type="checkbox" name="delivery_type[]" value="1" title="快递发货" lay-skin="primary" checked disabled>
39
-                        <input type="checkbox" name="delivery_type[]" value="2" title="线下自提" lay-skin="primary" >
40
-                        <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">实物商品的配送方式【快递发货】默认为必选,虚拟商品默认为虚拟发货,不受配送方式限制</div>
50
+                        <input type="checkbox" name="delivery_type[]" value="1" title="快递发货" lay-skin="primary" checked
51
+                            disabled>
52
+                        <input type="checkbox" name="delivery_type[]" value="2" title="线下自提" lay-skin="primary">
53
+                        <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">
54
+                            实物商品的配送方式【快递发货】默认为必选,虚拟商品默认为虚拟发货,不受配送方式限制</div>
41
                     </div>
55
                     </div>
42
                 </div>
56
                 </div>
43
                 <div class="layui-form-item">
57
                 <div class="layui-form-item">
46
                         <select name="cid" id="cid" lay-verType="tips" lay-verify="cid" switch-tab="0">
60
                         <select name="cid" id="cid" lay-verType="tips" lay-verify="cid" switch-tab="0">
47
                             <option value=""></option>
61
                             <option value=""></option>
48
                             {volist name="category" id="vo"}
62
                             {volist name="category" id="vo"}
49
-                                <option value="{$vo.id}">{$vo.name}</option>
63
+                            <option value="{$vo.id}">{$vo.name}</option>
50
                             {/volist}
64
                             {/volist}
51
                         </select>
65
                         </select>
52
                     </div>
66
                     </div>
55
                     <label for="nickname" class="layui-form-label"><span style="color:red;">*</span>联系人:</label>
69
                     <label for="nickname" class="layui-form-label"><span style="color:red;">*</span>联系人:</label>
56
                     <div class="layui-input-inline">
70
                     <div class="layui-input-inline">
57
                         <input type="text" name="nickname" id="nickname" lay-verType="tips" lay-verify="nickname"
71
                         <input type="text" name="nickname" id="nickname" lay-verType="tips" lay-verify="nickname"
58
-                               switch-tab="0" autocomplete="off" class="layui-input" value="wuwu">
72
+                            switch-tab="0" autocomplete="off" class="layui-input" value="wuwu">
59
                     </div>
73
                     </div>
60
                 </div>
74
                 </div>
61
                 <div class="layui-form-item" style="display: none;">
75
                 <div class="layui-form-item" style="display: none;">
62
                     <label for="mobile" class="layui-form-label"><span style="color:red;">*</span>联系手机:</label>
76
                     <label for="mobile" class="layui-form-label"><span style="color:red;">*</span>联系手机:</label>
63
                     <div class="layui-input-inline">
77
                     <div class="layui-input-inline">
64
                         <input type="number" name="mobile" id="mobile" lay-verType="tips" lay-verify="mobile"
78
                         <input type="number" name="mobile" id="mobile" lay-verType="tips" lay-verify="mobile"
65
-                               switch-tab="0" autocomplete="off" class="layui-input" value="13268119865">
79
+                            switch-tab="0" autocomplete="off" class="layui-input" value="13268119865">
66
                     </div>
80
                     </div>
67
                 </div>
81
                 </div>
68
                 <div class="layui-form-item" style="display: none;">
82
                 <div class="layui-form-item" style="display: none;">
76
                     <input type="hidden" name="logo" value="./uploads/images/20250221/202502211625593cc9c0131.png">
90
                     <input type="hidden" name="logo" value="./uploads/images/20250221/202502211625593cc9c0131.png">
77
                 </div>
91
                 </div>
78
 
92
 
79
-                <div class="layui-form-item"  style="display: none;">
93
+                <div class="layui-form-item" style="display: none;">
80
                     <label class="layui-form-label">商家地址:</label>
94
                     <label class="layui-form-label">商家地址:</label>
81
                     <div class="layui-input-block">
95
                     <div class="layui-input-block">
82
                         <div class="layui-input-inline" style="width:120px;">
96
                         <div class="layui-input-inline" style="width:120px;">
96
                         </div>
110
                         </div>
97
                     </div>
111
                     </div>
98
                 </div>
112
                 </div>
99
-                <div class="layui-form-item"  style="display: none;">
113
+                <div class="layui-form-item" style="display: none;">
100
                     <label class="layui-form-label">地图定位:</label>
114
                     <label class="layui-form-label">地图定位:</label>
101
                     <div class="layui-input-block">
115
                     <div class="layui-input-block">
102
-                        <div class="layui-inline" >
116
+                        <div class="layui-inline">
103
                             <div class="layui-input-inline" style="width:120px;margin-right:5px;">
117
                             <div class="layui-input-inline" style="width:120px;margin-right:5px;">
104
                                 <input type="text" name="longitude" autocomplete="off" class="layui-input">
118
                                 <input type="text" name="longitude" autocomplete="off" class="layui-input">
105
                             </div>
119
                             </div>
119
                         <div id="map-container" style="width: 700px;height: 400px;margin-left: 115px;"></div>
133
                         <div id="map-container" style="width: 700px;height: 400px;margin-left: 115px;"></div>
120
                     </div>
134
                     </div>
121
                 </div>
135
                 </div>
122
-                <div class="layui-form-item"  style="display: none;">
136
+                <div class="layui-form-item" style="display: none;">
123
                     <label for="keywords" class="layui-form-label">商家关键字:</label>
137
                     <label for="keywords" class="layui-form-label">商家关键字:</label>
124
                     <div class="layui-input-inline">
138
                     <div class="layui-input-inline">
125
                         <input type="text" name="keywords" id="keywords" autocomplete="off" class="layui-input">
139
                         <input type="text" name="keywords" id="keywords" autocomplete="off" class="layui-input">
134
             </div>
148
             </div>
135
             <!-- 2、经营设置 -->
149
             <!-- 2、经营设置 -->
136
             <div class="layui-tab-item">
150
             <div class="layui-tab-item">
137
-                <div class="layui-form-item">
151
+                <div class="layui-form-item" style="display: none;">
138
                     <label for="expire_time" class="layui-form-label"><span style="color:red;">*</span>到期时间:</label>
152
                     <label for="expire_time" class="layui-form-label"><span style="color:red;">*</span>到期时间:</label>
139
                     <div class="layui-input-inline">
153
                     <div class="layui-input-inline">
140
-                        <input type="text" name="expire_time" id="expire_time" lay-verType="tips" lay-verify="expire_time"
141
-                               switch-tab="1" autocomplete="off" class="layui-input">
154
+                        <input type="text" name="expire_time" id="expire_time" lay-verType="tips"
155
+                            lay-verify="expire_time" switch-tab="1" autocomplete="off" class="layui-input">
156
+                    </div>
157
+                </div>
158
+
159
+                <div class="layui-form-item">
160
+                    <label class="layui-form-label"><span style="color:red;">*</span>获客类型:</label>
161
+                    <div class="layui-input-inline">
162
+                        <input type="radio" name="hksy_type" value="0" title="包月" lay-filter="hksy_type">
163
+                        <input type="radio" name="hksy_type" value="1" title="按量付费" lay-filter="hksy_type" checked>
142
                     </div>
164
                     </div>
143
                 </div>
165
                 </div>
166
+
167
+                <div class="layui-form-item hksy_type_item">
168
+                    <label for="hksy_count" class="layui-form-label"><span style="color:red;">*</span>赠送评论数:</label>
169
+                    <div class="layui-input-inline">
170
+                        <input type="number" name="hksy_count" id="hksy_count" value="1000" lay-verType="tips"
171
+                            lay-verify="hksy_count" switch-tab="1" autocomplete="off" class="layui-input">
172
+                    </div>
173
+                </div>
174
+
175
+                <div class="layui-form-item hksy_type_item2" style="display: none;">
176
+                    <label for="months" class="layui-form-label"><span style="color:red;">*</span>赠送月份数:</label>
177
+                    <div class="layui-input-inline">
178
+                        <input type="number" name="months" id="months" value="12" lay-verType="tips"
179
+                            lay-verify="months" switch-tab="1" autocomplete="off" class="layui-input">
180
+                    </div>
181
+                </div>
182
+
144
                 <div class="layui-form-item" style="display: none;">
183
                 <div class="layui-form-item" style="display: none;">
145
-                    <label for="trade_service_fee" class="layui-form-label"><span style="color:red;">*</span>交易服务费:</label>
184
+                    <label for="trade_service_fee" class="layui-form-label"><span
185
+                            style="color:red;">*</span>交易服务费:</label>
146
                     <div class="layui-input-inline">
186
                     <div class="layui-input-inline">
147
                         <input type="number" min="0" max="100" name="trade_service_fee" id="trade_service_fee"
187
                         <input type="number" min="0" max="100" name="trade_service_fee" id="trade_service_fee"
148
-                               lay-verType="tips" lay-verify="trade_service_fee"
149
-                               onkeyup="value=value.replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')"
150
-                               switch-tab="1" autocomplete="off" class="layui-input" value="0">
151
-                        <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">平台每笔交易收取的服务费用。请填写百分比,填0表示不收取服务费</div>
188
+                            lay-verType="tips" lay-verify="trade_service_fee"
189
+                            onkeyup="value=value.replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')" switch-tab="1"
190
+                            autocomplete="off" class="layui-input" value="0">
191
+                        <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">
192
+                            平台每笔交易收取的服务费用。请填写百分比,填0表示不收取服务费</div>
152
                     </div>
193
                     </div>
153
                     <div class="layui-form-mid layui-word-aux">%</div>
194
                     <div class="layui-form-mid layui-word-aux">%</div>
154
                 </div>
195
                 </div>
183
                     <label for="account" class="layui-form-label"><span style="color:red;">*</span>商家账号:</label>
224
                     <label for="account" class="layui-form-label"><span style="color:red;">*</span>商家账号:</label>
184
                     <div class="layui-input-inline">
225
                     <div class="layui-input-inline">
185
                         <input type="text" name="account" id="account" lay-verType="tips" lay-verify="account"
226
                         <input type="text" name="account" id="account" lay-verType="tips" lay-verify="account"
186
-                               switch-tab="2" autocomplete="off" class="layui-input">
227
+                            switch-tab="2" autocomplete="off" class="layui-input">
187
                         <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">商家账号和密码用于登录商家后台</div>
228
                         <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">商家账号和密码用于登录商家后台</div>
188
                     </div>
229
                     </div>
189
                 </div>
230
                 </div>
191
                     <label for="password" class="layui-form-label"><span style="color:red;">*</span>登录密码:</label>
232
                     <label for="password" class="layui-form-label"><span style="color:red;">*</span>登录密码:</label>
192
                     <div class="layui-input-inline">
233
                     <div class="layui-input-inline">
193
                         <input type="text" name="password" id="password" lay-verType="tips" lay-verify="password"
234
                         <input type="text" name="password" id="password" lay-verType="tips" lay-verify="password"
194
-                               switch-tab="2" autocomplete="off" class="layui-input">
235
+                            switch-tab="2" autocomplete="off" class="layui-input">
195
                         <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">商家账号和密码用于登录商家后台</div>
236
                         <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">商家账号和密码用于登录商家后台</div>
196
                     </div>
237
                     </div>
197
                 </div>
238
                 </div>
199
                     <label for="okPassword" class="layui-form-label"><span style="color:red;">*</span>确认密码:</label>
240
                     <label for="okPassword" class="layui-form-label"><span style="color:red;">*</span>确认密码:</label>
200
                     <div class="layui-input-inline">
241
                     <div class="layui-input-inline">
201
                         <input type="text" name="okPassword" id="okPassword" lay-verType="tips" lay-verify="pwd"
242
                         <input type="text" name="okPassword" id="okPassword" lay-verType="tips" lay-verify="pwd"
202
-                               switch-tab="2" autocomplete="off" class="layui-input">
243
+                            switch-tab="2" autocomplete="off" class="layui-input">
203
                         <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">商家账号和密码用于登录商家后台</div>
244
                         <div class="layui-form-mid layui-word-aux" style="white-space:nowrap;">商家账号和密码用于登录商家后台</div>
204
                     </div>
245
                     </div>
205
                 </div>
246
                 </div>
222
     }).extend({
263
     }).extend({
223
         likeArea: "likeArea/likeArea",
264
         likeArea: "likeArea/likeArea",
224
         txMap: "likeMap/txMap",
265
         txMap: "likeMap/txMap",
225
-        customTxMap:'likeMap/customTxMap',
226
-    }).use(["form", "laydate", "likeArea", "txMap",'customTxMap'], function(){
266
+        customTxMap: 'likeMap/customTxMap',
267
+    }).use(["form", "laydate", "likeArea", "txMap", 'customTxMap'], function () {
227
         var $ = layui.$;
268
         var $ = layui.$;
228
         var form = layui.form;
269
         var form = layui.form;
229
         var likeArea = layui.likeArea;
270
         var likeArea = layui.likeArea;
231
         var txMap = layui.txMap;
272
         var txMap = layui.txMap;
232
         var customTxMap = layui.customTxMap;
273
         var customTxMap = layui.customTxMap;
233
 
274
 
234
-        laydate.render({type:"datetime", elem:"#expire_time", trigger:"click",min:0});
275
+        laydate.render({ type: "datetime", elem: "#expire_time", trigger: "click", min: 0 });
235
 
276
 
236
 
277
 
237
         like.delUpload();
278
         like.delUpload();
243
             });
284
             });
244
         });
285
         });
245
 
286
 
287
+        form.on('radio(hksy_type)', function (data) {
288
+            // console.log(data.elem); //得到radio原始DOM对象
289
+            // console.log(data.value); //被点击的radio的value值
290
+            if (data.value == 1) {
291
+                $(".hksy_type_item").show();
292
+                $(".hksy_type_item2").hide();
293
+            } else {
294
+                $(".hksy_type_item").hide();
295
+                $(".hksy_type_item2").show();
296
+            }
297
+        });
298
+
246
 
299
 
247
         form.verify({
300
         form.verify({
248
             name: function (value, item) {
301
             name: function (value, item) {
277
                     }*/
330
                     }*/
278
                 }
331
                 }
279
             },
332
             },
280
-            expire_time: function (value, item) {
281
-                if (!value) {
282
-                    switchTab($(item).attr("switch-tab"));
283
-                    return "请选择到期时间";
284
-                }
285
-            },
333
+            // expire_time: function (value, item) {
334
+            //     if (!value) {
335
+            //         switchTab($(item).attr("switch-tab"));
336
+            //         return "请选择到期时间";
337
+            //     }
338
+            // },
286
             trade_service_fee: function (value, item) {
339
             trade_service_fee: function (value, item) {
287
                 if (!value && parseInt(value) !== 0) {
340
                 if (!value && parseInt(value) !== 0) {
288
                     switchTab($(item).attr("switch-tab"));
341
                     switchTab($(item).attr("switch-tab"));
336
             var city = $("#city");
389
             var city = $("#city");
337
             var district = $("#district");
390
             var district = $("#district");
338
             var address = $("input[name='address']").val();
391
             var address = $("input[name='address']").val();
339
-            if(!province.val()){
392
+            if (!province.val()) {
340
                 layer.msg("请选择省份");
393
                 layer.msg("请选择省份");
341
                 return;
394
                 return;
342
             }
395
             }
343
-            if(!city.val()){
396
+            if (!city.val()) {
344
                 layer.msg("请选择市");
397
                 layer.msg("请选择市");
345
                 return;
398
                 return;
346
             }
399
             }
347
-            if(!district.val()){
400
+            if (!district.val()) {
348
                 layer.msg("请选择镇/区");
401
                 layer.msg("请选择镇/区");
349
                 return;
402
                 return;
350
             }
403
             }

+ 3
- 1
app/shop/controller/content/EquiCategory.php View File

77
 
77
 
78
         // 获取剩余评论数
78
         // 获取剩余评论数
79
         $shop = EquiCategoryLogic::getShop($this->shop_id);
79
         $shop = EquiCategoryLogic::getShop($this->shop_id);
80
-        $hksy_count =$shop->hksy_count;
80
+        $hksy_count = $shop->hksy_count;
81
+        $hksy_type = $shop->hksy_type;
81
 
82
 
82
         return view('lists',['end_time' => $end_time,
83
         return view('lists',['end_time' => $end_time,
83
             'edui_info' => $str,
84
             'edui_info' => $str,
84
             'hksy_count' => $hksy_count,
85
             'hksy_count' => $hksy_count,
86
+            'hksy_type' => $hksy_type,
85
             'server_info' => $res]);
87
             'server_info' => $res]);
86
     }
88
     }
87
 
89
 

+ 2
- 1
app/shop/controller/order/OrderRenew.php View File

3
  * @Author: xiaohai zmhwork@qq.com
3
  * @Author: xiaohai zmhwork@qq.com
4
  * @Date: 2025-03-14 17:27:51
4
  * @Date: 2025-03-14 17:27:51
5
  * @LastEditors: xiaohai zmhwork@qq.com
5
  * @LastEditors: xiaohai zmhwork@qq.com
6
- * @LastEditTime: 2025-03-22 18:10:24
6
+ * @LastEditTime: 2025-03-24 20:54:33
7
  * @FilePath: \opkpm\app\shop\controller\order\OrderRenew.php
7
  * @FilePath: \opkpm\app\shop\controller\order\OrderRenew.php
8
  * @Description: 续费订单
8
  * @Description: 续费订单
9
  */
9
  */
38
         if ($this->request->isAjax()) {
38
         if ($this->request->isAjax()) {
39
             $get = $this->request->get();
39
             $get = $this->request->get();
40
             $get['shop_id'] = $this->shop_id;
40
             $get['shop_id'] = $this->shop_id;
41
+            $get['type_id'] = $this->shop['hksy_type'];
41
             return JsonServer::success('', OrderRenewLogic::renewLists($get));
42
             return JsonServer::success('', OrderRenewLogic::renewLists($get));
42
         }
43
         }
43
 
44
 

+ 9
- 1
app/shop/logic/LoginLogic.php View File

1
 <?php
1
 <?php
2
+/*
3
+ * @Author: xiaohai zmhwork@qq.com
4
+ * @Date: 2025-03-13 18:17:49
5
+ * @LastEditors: xiaohai zmhwork@qq.com
6
+ * @LastEditTime: 2025-03-24 21:19:27
7
+ * @FilePath: \opkpm\app\shop\logic\LoginLogic.php
8
+ * @Description: 
9
+ */
2
 // +----------------------------------------------------------------------
10
 // +----------------------------------------------------------------------
3
 // | likeshop开源商城系统
11
 // | likeshop开源商城系统
4
 // +----------------------------------------------------------------------
12
 // +----------------------------------------------------------------------
45
         $adminModel = new ShopAdmin();
53
         $adminModel = new ShopAdmin();
46
         $admin_info = $adminModel->alias('a')
54
         $admin_info = $adminModel->alias('a')
47
             ->join('shop s', 's.id = a.shop_id')
55
             ->join('shop s', 's.id = a.shop_id')
48
-            ->field(['a.id', 'a.account', 'a.name', 'role_id', 'shop_id', 's.name' => 'shop_name'])
56
+            ->field(['a.id', 'a.account', 'a.name', 'role_id', 'shop_id', 's.name' => 'shop_name', 's.hksy_type'])
49
             ->where(['a.account' => $post['account'], 'a.del' => 0])
57
             ->where(['a.account' => $post['account'], 'a.del' => 0])
50
             ->findOrEmpty()->toArray();
58
             ->findOrEmpty()->toArray();
51
 
59
 

+ 2
- 2
app/shop/logic/order/OrderRenewLogic.php View File

3
  * @Author: xiaohai zmhwork@qq.com
3
  * @Author: xiaohai zmhwork@qq.com
4
  * @Date: 2025-03-14 17:38:50
4
  * @Date: 2025-03-14 17:38:50
5
  * @LastEditors: xiaohai zmhwork@qq.com
5
  * @LastEditors: xiaohai zmhwork@qq.com
6
- * @LastEditTime: 2025-03-23 21:29:28
6
+ * @LastEditTime: 2025-03-24 21:14:25
7
  * @FilePath: \opkpm\app\shop\logic\order\OrderRenewLogic.php
7
  * @FilePath: \opkpm\app\shop\logic\order\OrderRenewLogic.php
8
  * @Description: 续费订单逻辑处理
8
  * @Description: 续费订单逻辑处理
9
  */
9
  */
57
 
57
 
58
         $where = [
58
         $where = [
59
             ['del', '=', 0],
59
             ['del', '=', 0],
60
-            //['status', '=', 1]
60
+            ['type_id', '=', $get['type_id']]
61
         ];
61
         ];
62
 
62
 
63
         if (!empty($get['name']) && $get['name']) {
63
         if (!empty($get['name']) && $get['name']) {

+ 12
- 1
app/shop/view/content/equi_category/lists.html View File

40
 
40
 
41
                 <b>套餐包含:</b> 电脑 <b style="color:#000;">{$server_info.pc_num}</b> 台,每台电脑可添加手机 <b style="color:#000;">{$server_info.mobile_num}</b> 台,可同时运行手机 <b style="color:#000;">{$server_info.run_num}</b> 台。
41
                 <b>套餐包含:</b> 电脑 <b style="color:#000;">{$server_info.pc_num}</b> 台,每台电脑可添加手机 <b style="color:#000;">{$server_info.mobile_num}</b> 台,可同时运行手机 <b style="color:#000;">{$server_info.run_num}</b> 台。
42
               <br/>
42
               <br/>
43
-              总电脑数量:<b style="color:#000;">{$edui_info[0][0]??"0"}</b> 台 &nbsp;&nbsp;&nbsp;&nbsp;<b style="color:red;">服务到期时间:</b>  <span style="color:red;">{$end_time} ({$days_desc})</span> &nbsp;&nbsp;&nbsp;&nbsp;<b style="color:red;">评论次数剩余数量:</b>  <span style="color:red;">{$hksy_count}</span> <br/>
43
+              总电脑数量:<b style="color:#000;">{$edui_info[0][0]??"0"}</b> 台 &nbsp;&nbsp;&nbsp;&nbsp;
44
+
45
+              <br>
46
+
44
               {volist name="edui_info" id="vo"}
47
               {volist name="edui_info" id="vo"}
45
                 第 <b style="color:#000;">{$vo[1]}</b> 台电脑,总共 <b style="color:#000;">{$vo[2]}</b> 台手机设备,已启用 <b style="color:#000;">{$vo[3]}</b> 台手机设备,未启用 <b style="color:#000;">{$vo[4]}</b> 台手机设备,可同时运行手机 <b style="color:#000;">{$server_info.run_num}</b> 台。 <br/>
48
                 第 <b style="color:#000;">{$vo[1]}</b> 台电脑,总共 <b style="color:#000;">{$vo[2]}</b> 台手机设备,已启用 <b style="color:#000;">{$vo[3]}</b> 台手机设备,未启用 <b style="color:#000;">{$vo[4]}</b> 台手机设备,可同时运行手机 <b style="color:#000;">{$server_info.run_num}</b> 台。 <br/>
46
               {/volist}
49
               {/volist}
47
 
50
 
51
+              {eq name="hksy_type" value="1"}
52
+              <b style="color:red;">评论次数剩余数量:</b>  <span style="color:red;">{$hksy_count}</span>
53
+              {/eq}
54
+
55
+              {eq name="hksy_type" value="0"}
56
+              <b style="color:red;">服务到期时间:</b>  <span style="color:red;">{$end_time} ({$days_desc})</span>
57
+              {/eq}
58
+              <br/>
48
             </p>
59
             </p>
49
           </div>
60
           </div>
50
         </div>
61
         </div>

Loading…
Cancel
Save