正在显示
4 个修改的文件
包含
14 行增加
和
0 行删除
@@ -5,6 +5,7 @@ return [ | @@ -5,6 +5,7 @@ return [ | ||
5 | 'Name' => '门店名称', | 5 | 'Name' => '门店名称', |
6 | 'Address' => '门店详细地址', | 6 | 'Address' => '门店详细地址', |
7 | 'Lat' => '维度', | 7 | 'Lat' => '维度', |
8 | + 'Commission' => '佣金', | ||
8 | 'Lng' => '经度', | 9 | 'Lng' => '经度', |
9 | 'Agent_image' => '代理人邀请二维码', | 10 | 'Agent_image' => '代理人邀请二维码', |
10 | 'Phone' => '联系电话', | 11 | 'Phone' => '联系电话', |
@@ -31,6 +31,12 @@ | @@ -31,6 +31,12 @@ | ||
31 | </div> | 31 | </div> |
32 | </div> | 32 | </div> |
33 | <div class="form-group"> | 33 | <div class="form-group"> |
34 | + <label class="control-label col-xs-12 col-sm-2">{:__('Commission')}:</label> | ||
35 | + <div class="col-xs-12 col-sm-8"> | ||
36 | + <input id="c-commission" class="form-control" name="row[commission]" type="number"> | ||
37 | + </div> | ||
38 | + </div> | ||
39 | + <div class="form-group"> | ||
34 | <label class="control-label col-xs-12 col-sm-2">{:__('Image')}:</label> | 40 | <label class="control-label col-xs-12 col-sm-2">{:__('Image')}:</label> |
35 | <div class="col-xs-12 col-sm-8"> | 41 | <div class="col-xs-12 col-sm-8"> |
36 | <div class="input-group"> | 42 | <div class="input-group"> |
@@ -31,6 +31,12 @@ | @@ -31,6 +31,12 @@ | ||
31 | </div> | 31 | </div> |
32 | </div> | 32 | </div> |
33 | <div class="form-group"> | 33 | <div class="form-group"> |
34 | + <label class="control-label col-xs-12 col-sm-2">{:__('Commission')}:</label> | ||
35 | + <div class="col-xs-12 col-sm-8"> | ||
36 | + <input id="c-commission" class="form-control" name="row[commission]" type="number" value="{$row.commission|htmlentities}"> | ||
37 | + </div> | ||
38 | + </div> | ||
39 | + <div class="form-group"> | ||
34 | <label class="control-label col-xs-12 col-sm-2">{:__('Image')}:</label> | 40 | <label class="control-label col-xs-12 col-sm-2">{:__('Image')}:</label> |
35 | <div class="col-xs-12 col-sm-8"> | 41 | <div class="col-xs-12 col-sm-8"> |
36 | <div class="input-group"> | 42 | <div class="input-group"> |
@@ -29,6 +29,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -29,6 +29,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
29 | {field: 'name', title: __('Name'), operate: 'LIKE'}, | 29 | {field: 'name', title: __('Name'), operate: 'LIKE'}, |
30 | {field: 'address', title: __('Address'), operate: 'LIKE'}, | 30 | {field: 'address', title: __('Address'), operate: 'LIKE'}, |
31 | {field: 'phone', title: __('Phone'), operate: 'LIKE'}, | 31 | {field: 'phone', title: __('Phone'), operate: 'LIKE'}, |
32 | + {field: 'commission', title: __('Commission'), operate: 'LIKE'}, | ||
32 | {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, | 33 | {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, |
33 | {field: 'agent_image', title: __('Agent_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, | 34 | {field: 'agent_image', title: __('Agent_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, |
34 | {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate, | 35 | {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate, |
-
请 注册 或 登录 后发表评论