瀏覽代碼

广州电信产品管理

zealerChina 1 年之前
父節點
當前提交
962b40429c

+ 40 - 0
application/admin/controller/ProduceGzdx.php

@@ -0,0 +1,40 @@
+<?php
+
+namespace app\admin\controller;
+
+use app\common\controller\Backend;
+
+/**
+ * 广州电信产品管理
+ *
+ * @icon fa fa-circle-o
+ */
+class ProduceGzdx extends Backend
+{
+    
+    /**
+     * ProduceGzdx模型对象
+     * @var \app\common\model\ProduceGzdx
+     */
+    protected $model = null;
+
+    public function _initialize()
+    {
+        parent::_initialize();
+        $this->model = new \app\common\model\ProduceGzdx;
+
+    }
+
+    public function import()
+    {
+        parent::import();
+    }
+
+    /**
+     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
+     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
+     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
+     */
+    
+
+}

+ 34 - 0
application/admin/lang/zh-cn/produce_gzdx.php

@@ -0,0 +1,34 @@
+<?php
+
+return [
+    'Upstream_no'                  => '对应上游单号',
+    'Agent_account'                => '代理商账号',
+    'User_name'                    => '使用人姓名',
+    'User_card'                    => '使用人证件号',
+    'Package_no'                   => '揽装工号',
+    'Seller_account'               => '销售人员账号',
+    'Order_product_name'           => '订购产品-产品名称',
+    'Delivery_gift_product_name'   => '配送产品-礼品-产品名称',
+    'Business_type'                => '业务类型',
+    'Delivery_type'                => '配送类型',
+    'Month_fee_name'               => '月租费用项-费用项名称',
+    'Once_fee_name'                => '一次性费用项-费用项名称',
+    'Order_product_column_name_1'  => '订购产品-属性列表-属性名1',
+    'Order_product_column_value_1' => '订购产品-属性列表-属性值1',
+    'Order_product_column_name_2'  => '订购产品-属性列表-属性名2',
+    'Order_product_column_value_2' => '订购产品-属性列表-属性值2',
+    'Order_product_column_name_3'  => '订购产品-属性列表-属性名3',
+    'Order_product_column_value_3' => '订购产品-属性列表-属性值3',
+    'Order_product_column_name_4'  => '订购产品-属性列表-属性名4',
+    'Order_product_column_value_4' => '订购产品-属性列表-属性值4',
+    'Order_product_column_name_5'  => '订购产品-属性列表-属性名5',
+    'Order_product_column_value_5' => '订购产品-属性列表-属性值5',
+    'Order_product_column_name_6'  => '订购产品-属性列表-属性名6',
+    'Order_product_column_value_6' => '订购产品-属性列表-属性值6',
+    'Order_product_column_name_7'  => '订购产品-属性列表-属性名7',
+    'Order_product_column_value_7' => '订购产品-属性列表-属性值7',
+    'Order_product_column_name_8'  => '订购产品-属性列表-属性名8',
+    'Order_product_column_value_8' => '订购产品-属性列表-属性值8',
+    'Delivery_company'             => '配送公司',
+    'Num_pool'                     => '号码池'
+];

+ 190 - 0
application/admin/view/produce_gzdx/add.html

@@ -0,0 +1,190 @@
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Upstream_no')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-upstream_no" class="form-control" name="row[upstream_no]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Agent_account')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-agent_account" class="form-control" name="row[agent_account]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('User_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-user_name" class="form-control" name="row[user_name]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('User_card')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-user_card" class="form-control" name="row[user_card]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Package_no')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-package_no" class="form-control" name="row[package_no]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Seller_account')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-seller_account" class="form-control" name="row[seller_account]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_name" class="form-control" name="row[order_product_name]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Delivery_gift_product_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-delivery_gift_product_name" class="form-control" name="row[delivery_gift_product_name]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Business_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-business_type" class="form-control" name="row[business_type]" type="text">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Delivery_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-delivery_type" class="form-control" name="row[delivery_type]" type="text">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Month_fee_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-month_fee_name" class="form-control" name="row[month_fee_name]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Once_fee_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-once_fee_name" class="form-control" name="row[once_fee_name]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_1')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_1" class="form-control" name="row[order_product_column_name_1]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_1')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_1" class="form-control" name="row[order_product_column_value_1]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_2')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_2" class="form-control" name="row[order_product_column_name_2]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_2')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_2" class="form-control" name="row[order_product_column_value_2]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_3')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_3" class="form-control" name="row[order_product_column_name_3]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_3')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_3" class="form-control" name="row[order_product_column_value_3]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_4')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_4" class="form-control" name="row[order_product_column_name_4]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_4')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_4" class="form-control" name="row[order_product_column_value_4]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_5')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_5" class="form-control" name="row[order_product_column_name_5]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_5')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_5" class="form-control" name="row[order_product_column_value_5]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_6')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_6" class="form-control" name="row[order_product_column_name_6]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_6')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_6" class="form-control" name="row[order_product_column_value_6]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_7')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_7" class="form-control" name="row[order_product_column_name_7]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_7')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_7" class="form-control" name="row[order_product_column_value_7]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_8')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_8" class="form-control" name="row[order_product_column_name_8]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_8')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_8" class="form-control" name="row[order_product_column_value_8]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Delivery_company')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-delivery_company" class="form-control" name="row[delivery_company]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Num_pool')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-num_pool" class="form-control" name="row[num_pool]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 190 - 0
application/admin/view/produce_gzdx/edit.html

@@ -0,0 +1,190 @@
+<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Upstream_no')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-upstream_no" class="form-control" name="row[upstream_no]" type="text" value="{$row.upstream_no|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Agent_account')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-agent_account" class="form-control" name="row[agent_account]" type="text" value="{$row.agent_account|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('User_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-user_name" class="form-control" name="row[user_name]" type="text" value="{$row.user_name|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('User_card')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-user_card" class="form-control" name="row[user_card]" type="text" value="{$row.user_card|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Package_no')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-package_no" class="form-control" name="row[package_no]" type="text" value="{$row.package_no|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Seller_account')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-seller_account" class="form-control" name="row[seller_account]" type="text" value="{$row.seller_account|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_name" class="form-control" name="row[order_product_name]" type="text" value="{$row.order_product_name|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Delivery_gift_product_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-delivery_gift_product_name" class="form-control" name="row[delivery_gift_product_name]" type="text" value="{$row.delivery_gift_product_name|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Business_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-business_type" class="form-control" name="row[business_type]" type="text" value="{$row.business_type|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Delivery_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-delivery_type" class="form-control" name="row[delivery_type]" type="text" value="{$row.delivery_type|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Month_fee_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-month_fee_name" class="form-control" name="row[month_fee_name]" type="text" value="{$row.month_fee_name|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Once_fee_name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-once_fee_name" class="form-control" name="row[once_fee_name]" type="text" value="{$row.once_fee_name|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_1')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_1" class="form-control" name="row[order_product_column_name_1]" type="text" value="{$row.order_product_column_name_1|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_1')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_1" class="form-control" name="row[order_product_column_value_1]" type="text" value="{$row.order_product_column_value_1|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_2')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_2" class="form-control" name="row[order_product_column_name_2]" type="text" value="{$row.order_product_column_name_2|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_2')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_2" class="form-control" name="row[order_product_column_value_2]" type="text" value="{$row.order_product_column_value_2|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_3')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_3" class="form-control" name="row[order_product_column_name_3]" type="text" value="{$row.order_product_column_name_3|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_3')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_3" class="form-control" name="row[order_product_column_value_3]" type="text" value="{$row.order_product_column_value_3|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_4')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_4" class="form-control" name="row[order_product_column_name_4]" type="text" value="{$row.order_product_column_name_4|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_4')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_4" class="form-control" name="row[order_product_column_value_4]" type="text" value="{$row.order_product_column_value_4|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_5')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_5" class="form-control" name="row[order_product_column_name_5]" type="text" value="{$row.order_product_column_name_5|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_5')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_5" class="form-control" name="row[order_product_column_value_5]" type="text" value="{$row.order_product_column_value_5|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_6')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_6" class="form-control" name="row[order_product_column_name_6]" type="text" value="{$row.order_product_column_name_6|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_6')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_6" class="form-control" name="row[order_product_column_value_6]" type="text" value="{$row.order_product_column_value_6|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_7')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_7" class="form-control" name="row[order_product_column_name_7]" type="text" value="{$row.order_product_column_name_7|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_7')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_7" class="form-control" name="row[order_product_column_value_7]" type="text" value="{$row.order_product_column_value_7|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_name_8')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_name_8" class="form-control" name="row[order_product_column_name_8]" type="text" value="{$row.order_product_column_name_8|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Order_product_column_value_8')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-order_product_column_value_8" class="form-control" name="row[order_product_column_value_8]" type="text" value="{$row.order_product_column_value_8|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Delivery_company')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-delivery_company" class="form-control" name="row[delivery_company]" type="text" value="{$row.delivery_company|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Num_pool')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-num_pool" class="form-control" name="row[num_pool]" type="text" value="{$row.num_pool|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 35 - 0
application/admin/view/produce_gzdx/index.html

@@ -0,0 +1,35 @@
+<div class="panel panel-default panel-intro">
+    {:build_heading()}
+
+    <div class="panel-body">
+        <div id="myTabContent" class="tab-content">
+            <div class="tab-pane fade active in" id="one">
+                <div class="widget-body no-padding">
+                    <div id="toolbar" class="toolbar">
+                        <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
+                        <a href="javascript:;" class="btn btn-success btn-add {:$auth->check('produce_gzdx/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i> {:__('Add')}</a>
+                        <a href="javascript:;" class="btn btn-success btn-edit btn-disabled disabled {:$auth->check('produce_gzdx/edit')?'':'hide'}" title="{:__('Edit')}" ><i class="fa fa-pencil"></i> {:__('Edit')}</a>
+                        <a href="javascript:;" class="btn btn-danger btn-del btn-disabled disabled {:$auth->check('produce_gzdx/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a>
+                        <a href="javascript:;" class="btn btn-danger btn-import {:$auth->check('produce_gzdx/import')?'':'hide'}" title="{:__('Import')}" id="btn-import-file" data-url="ajax/upload" data-mimetype="csv,xls,xlsx" data-multiple="false"><i class="fa fa-upload"></i> {:__('Import')}</a>
+
+                        <div class="dropdown btn-group {:$auth->check('produce_gzdx/multi')?'':'hide'}">
+                            <a class="btn btn-primary btn-more dropdown-toggle btn-disabled disabled" data-toggle="dropdown"><i class="fa fa-cog"></i> {:__('More')}</a>
+                            <ul class="dropdown-menu text-left" role="menu">
+                                <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>
+                                <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>
+                            </ul>
+                        </div>
+
+                        
+                    </div>
+                    <table id="table" class="table table-striped table-bordered table-hover table-nowrap"
+                           data-operate-edit="{:$auth->check('produce_gzdx/edit')}" 
+                           data-operate-del="{:$auth->check('produce_gzdx/del')}" 
+                           width="100%">
+                    </table>
+                </div>
+            </div>
+
+        </div>
+    </div>
+</div>

+ 40 - 0
application/common/model/ProduceGzdx.php

@@ -0,0 +1,40 @@
+<?php
+
+namespace app\common\model;
+
+use think\Model;
+
+
+class ProduceGzdx extends Model
+{
+
+    
+
+    
+
+    // 表名
+    protected $table = 'produce_gzdx';
+    
+    // 自动写入时间戳字段
+    protected $autoWriteTimestamp = false;
+
+    // 定义时间戳字段名
+    protected $createTime = false;
+    protected $updateTime = false;
+    protected $deleteTime = false;
+
+    // 追加属性
+    protected $append = [
+
+    ];
+    
+
+    
+
+
+
+
+
+
+
+}

+ 27 - 0
application/common/validate/ProduceGzdx.php

@@ -0,0 +1,27 @@
+<?php
+
+namespace app\common\validate;
+
+use think\Validate;
+
+class ProduceGzdx extends Validate
+{
+    /**
+     * 验证规则
+     */
+    protected $rule = [
+    ];
+    /**
+     * 提示消息
+     */
+    protected $message = [
+    ];
+    /**
+     * 验证场景
+     */
+    protected $scene = [
+        'add'  => [],
+        'edit' => [],
+    ];
+    
+}

+ 80 - 0
public/assets/js/backend/produce_gzdx.js

@@ -0,0 +1,80 @@
+define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
+
+    var Controller = {
+        index: function () {
+            // 初始化表格参数配置
+            Table.api.init({
+                extend: {
+                    index_url: 'produce_gzdx/index' + location.search,
+                    add_url: 'produce_gzdx/add',
+                    edit_url: 'produce_gzdx/edit',
+                    del_url: 'produce_gzdx/del',
+                    multi_url: 'produce_gzdx/multi',
+                    import_url: 'produce_gzdx/import',
+                    table: 'produce_gzdx',
+                }
+            });
+
+            var table = $("#table");
+
+            // 初始化表格
+            table.bootstrapTable({
+                url: $.fn.bootstrapTable.defaults.extend.index_url,
+                pk: 'id',
+                sortName: 'id',
+                columns: [
+                    [
+                        {checkbox: true},
+                        {field: 'id', title: __('Id')},
+                        {field: 'upstream_no', title: __('Upstream_no'), operate: 'LIKE'},
+                        {field: 'agent_account', title: __('Agent_account'), operate: 'LIKE'},
+                        {field: 'user_name', title: __('User_name'), operate: 'LIKE'},
+                        {field: 'user_card', title: __('User_card'), operate: 'LIKE'},
+                        {field: 'package_no', title: __('Package_no'), operate: 'LIKE'},
+                        {field: 'seller_account', title: __('Seller_account'), operate: 'LIKE'},
+                        {field: 'order_product_name', title: __('Order_product_name'), operate: 'LIKE'},
+                        {field: 'delivery_gift_product_name', title: __('Delivery_gift_product_name'), operate: 'LIKE'},
+                        {field: 'business_type', title: __('Business_type'), operate: 'LIKE'},
+                        {field: 'delivery_type', title: __('Delivery_type'), operate: 'LIKE'},
+                        {field: 'month_fee_name', title: __('Month_fee_name'), operate: 'LIKE'},
+                        {field: 'once_fee_name', title: __('Once_fee_name'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_1', title: __('Order_product_column_name_1'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_1', title: __('Order_product_column_value_1'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_2', title: __('Order_product_column_name_2'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_2', title: __('Order_product_column_value_2'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_3', title: __('Order_product_column_name_3'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_3', title: __('Order_product_column_value_3'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_4', title: __('Order_product_column_name_4'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_4', title: __('Order_product_column_value_4'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_5', title: __('Order_product_column_name_5'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_5', title: __('Order_product_column_value_5'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_6', title: __('Order_product_column_name_6'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_6', title: __('Order_product_column_value_6'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_7', title: __('Order_product_column_name_7'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_7', title: __('Order_product_column_value_7'), operate: 'LIKE'},
+                        // {field: 'order_product_column_name_8', title: __('Order_product_column_name_8'), operate: 'LIKE'},
+                        // {field: 'order_product_column_value_8', title: __('Order_product_column_value_8'), operate: 'LIKE'},
+                        {field: 'delivery_company', title: __('Delivery_company'), operate: 'LIKE'},
+                        // {field: 'num_pool', title: __('Num_pool'), operate: 'LIKE'},
+                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
+                    ]
+                ]
+            });
+
+            // 为表格绑定事件
+            Table.api.bindevent(table);
+        },
+        add: function () {
+            Controller.api.bindevent();
+        },
+        edit: function () {
+            Controller.api.bindevent();
+        },
+        api: {
+            bindevent: function () {
+                Form.api.bindevent($("form[role=form]"));
+            }
+        }
+    };
+    return Controller;
+});