qifengquan 1 år sedan
förälder
incheckning
3229775479

+ 27 - 0
app/data/controller/api/PostageType.php

@@ -0,0 +1,27 @@
+<?php
+
+namespace app\data\controller\api;
+use app\data\model\BasePostageType;
+use think\admin\Controller;
+
+/**
+ * @Title("配送方式模块")
+ */
+class PostageType extends controller
+{
+    /**
+     * @title 配送方式
+     * @Returned("name",desc="方式名称")
+     * @Returned("remark",desc="方式描述")
+     * @Returned("createtime",desc="创建时间")
+     */
+    public function postagetype(){
+        $this->success(
+            BasePostageType::where('status',1)
+                ->where('delect',0)
+                ->order('id')
+                ->select()
+        );
+    }
+
+}

+ 4 - 4
app/data/controller/base/postage/Type.php

@@ -37,7 +37,7 @@ class Type extends Controller
      */
     public function add()
     {
-        $this->title = '添加公司';
+        $this->title = '添加';
         BasePostageType::mForm('form');
     }
 
@@ -47,12 +47,12 @@ class Type extends Controller
      */
     public function edit()
     {
-        $this->title = '编辑快递公司';
+        $this->title = '编辑';
         BasePostageType::mForm('form');
     }
 
     /**
-     * 同步字段编号
+     *
      * @param array $data
      * @return void
      */
@@ -66,7 +66,7 @@ class Type extends Controller
      */
     public function state()
     {
-        BasePostageCompany::mSave($this->_vali([
+        BasePostageType::mSave($this->_vali([
             'status.in:0,1'  => '状态值范围异常!',
             'status.require' => '状态值不能为空!',
         ]));

+ 2 - 2
app/data/view/base/postage/type/index.html

@@ -3,7 +3,7 @@
 {block name="button"}
 
 <!--{if auth("add") and $type eq 'index'}-->
-<button class='layui-btn layui-btn-sm layui-btn-primary' data-modal='{:url("add")}' data-title="添加快递公司">添加方式</button>
+<button class='layui-btn layui-btn-sm layui-btn-primary' data-modal='{:url("add")}' data-title="添加">添加方式</button>
 <!--{/if}-->
 
 <!--{if auth("state") and $type eq 'index'}-->
@@ -81,7 +81,7 @@
 <!-- 操作面板模板 -->
 <script type="text/html" id="toolbar">
     <!--{if auth("edit") and isset($type) and $type eq 'index'}-->
-    <a class="layui-btn layui-btn-sm" data-modal="{:url('edit')}?id={{d.id}}" data-title="编辑快递公司">编 辑</a>
+    <a class="layui-btn layui-btn-sm" data-modal="{:url('edit')}?id={{d.id}}" data-title="编辑">编 辑</a>
     <!--{/if}-->
     <!--{if auth("remove") and isset($type) and $type neq 'index'}-->
     <a class="layui-btn layui-btn-sm layui-btn-danger" data-action="{:url('remove')}" data-value="id#{{d.id}}" data-confirm="确定要删除该用户吗?">删 除</a>