wupengfei 2 gadi atpakaļ
vecāks
revīzija
a3a8fe5ffd

+ 7 - 4
.idea/workspace.xml

@@ -2,8 +2,10 @@
 <project version="4">
   <component name="ChangeListManager">
     <list default="true" id="a760c6e5-d38f-48d9-be27-0f7a4f48e29f" name="Default Changelist" comment="">
+      <change afterPath="$PROJECT_DIR$/application/store/view/goods/add_first.html" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/store/view/banner/form.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/view/banner/form.html" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/store/controller/Goods.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/controller/Goods.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/store/view/goods/import_first_list.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/view/goods/import_first_list.html" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -95,7 +97,7 @@
   <component name="PropertiesComponent">
     <property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
     <property name="WebServerToolWindowFactoryState" value="false" />
-    <property name="last_opened_file_path" value="$PROJECT_DIR$/application/user/view" />
+    <property name="last_opened_file_path" value="$PROJECT_DIR$/application/store/view/goods" />
     <property name="node.js.detected.package.eslint" value="true" />
     <property name="node.js.detected.package.tslint" value="true" />
     <property name="node.js.path.for.package.eslint" value="project" />
@@ -105,11 +107,11 @@
   </component>
   <component name="RecentsManager">
     <key name="CopyFile.RECENT_KEYS">
+      <recent name="D:\zs\xianglian_test_admin\application\store\view\goods" />
       <recent name="D:\zs\xianglian_test_admin\application\user\view" />
       <recent name="D:\zs\xianglian_test_admin\application\user\controller" />
       <recent name="D:\zs\xianglian_test_admin\application\store\view\collect_info" />
       <recent name="D:\zs\xianglian_test_admin\application\store\view" />
-      <recent name="D:\zs\xianglian_test_admin\application\store\controller" />
     </key>
   </component>
   <component name="SvnConfiguration">
@@ -148,7 +150,8 @@
       <workItem from="1661734371076" duration="15282000" />
       <workItem from="1661820079823" duration="2898000" />
       <workItem from="1661907611720" duration="5931000" />
-      <workItem from="1661993135050" duration="1376000" />
+      <workItem from="1661993135050" duration="4377000" />
+      <workItem from="1662078426211" duration="1730000" />
     </task>
     <servers />
   </component>

+ 19 - 0
application/store/controller/Goods.php

@@ -289,6 +289,25 @@ class Goods extends Controller
             $this->fetch();
         }
     }
+
+
+    public function add_first()
+    {
+        if($this->request->post()){
+            $phone = input('post.phone');
+            $c_id = input('post.c_id');
+            $num = input('post.num');
+            $member = Db::name('store_member')->where('phone',$phone)->find();
+            if(!$member) $this->error('用户未注册');
+            //查询是否已经导入
+            $isAdd = Db::name('store_collection_first')->where(['phone'=>$phone,'c_id'=>$c_id])->count();
+            if($isAdd) $this->error('已经添加');
+            Db::name('store_collection_first')->insert(['uid'=>$member->id,'phone'=>$phone,'num'=>$num,'c_id'=>$c_id]);
+            $this->error('已经成功');
+        }
+        $this->fetch();
+    }
+
     public function hash(){
         if($this->request->post()){
             $id = $this->request->post('id');

+ 28 - 0
application/store/view/goods/add_first.html

@@ -0,0 +1,28 @@
+<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off">
+
+    <div class="layui-card-body">
+
+        <div class="layui-row margin-bottom-15">
+            <label class="layui-col-xs2 think-form-label">手机号:</label>
+            <label class="layui-col-xs10">
+                <input name="phone" placeholder="" class="layui-input">
+            </label>
+        </div>
+        <div class="layui-row margin-bottom-15">
+            <label class="layui-col-xs2 think-form-label">限购量:</label>
+            <label class="layui-col-xs10">
+                <input name="num" placeholder="" class="layui-input">
+            </label>
+        </div>
+        <input type="hidden" name="c_id" value="{$Think.get.id}"/>
+    </div>
+
+    <div class="hr-line-dashed"></div>
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>提交</button>
+        <button class="layui-btn layui-btn-danger" type='button' data-close>取消</button>
+    </div>
+</form>
+<script>
+    window.form.render();
+</script>

+ 3 - 0
application/store/view/goods/import_first_list.html

@@ -1,4 +1,7 @@
 {extend name='admin@main'}
+{block name="button"}
+    <a data-dbclick class="layui-btn layui-btn-sm" data-open='{:url("add_first")}'>添加</a>
+{/block}
 {block name="content"}
 <div class="think-box-shadow">
     <fieldset>