Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录
切换导航
T
taote
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
李达
taote
Commits
12e03e4a
提交
12e03e4a
authored
3 年前
作者:
LTSC-20210524KK\Administrator
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' of
http://120.27.146.32:8888/lida/taote
into develop
# Conflicts: # application/common/model/TtEx.php
上级
4c55cbac
c5219b71
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
57 行增加
和
19 行删除
+57
-19
TtCode.php
application/admin/controller/TtCode.php
+3
-2
TtEx.php
application/admin/controller/TtEx.php
+6
-2
Backend.php
application/admin/library/traits/Backend.php
+4
-0
index.html
application/admin/view/tt_ex/index.html
+6
-10
common.php
application/common.php
+11
-1
TtEx.php
application/common/model/TtEx.php
+10
-0
tt_ex.js
public/assets/js/backend/tt_ex.js
+17
-4
没有找到文件。
application/admin/controller/TtCode.php
浏览文件 @
12e03e4a
...
...
@@ -3,6 +3,7 @@
namespace
app\admin\controller
;
use
app\common\controller\Backend
;
use
app\common\model\User
;
/**
* 邀请码
...
...
@@ -72,8 +73,8 @@ class TtCode extends Backend
* 搜索下拉框
*/
public
function
admin_user
()
{
$user
=
\app\admin\model\User
::
select
();
{
$user
=
User
::
where
(
'status'
,
User
::
STATUS_FALSE
)
->
where
(
'type'
,
User
::
TYPE_TT
)
->
select
();
$user
=
collection
(
$user
)
->
toArray
();
foreach
(
$user
as
$key
=>
$value
)
{
$user
[
$key
][
'name'
]
=
$value
[
'nickname'
];
...
...
This diff is collapsed.
Click to expand it.
application/admin/controller/TtEx.php
浏览文件 @
12e03e4a
...
...
@@ -3,7 +3,7 @@
namespace
app\admin\controller
;
use
app\common\controller\Backend
;
use
app\common\model\TtEx
as
TtExModel
;
/**
* 订单管理
*
...
...
@@ -36,5 +36,9 @@ class TtEx extends Backend
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
*/
public
function
ex_class
()
{
$className
=
TtExModel
::
getClassName
();
return
$className
;
}
}
This diff is collapsed.
Click to expand it.
application/admin/library/traits/Backend.php
浏览文件 @
12e03e4a
...
...
@@ -565,6 +565,9 @@ trait Backend
if
(
$currentColumn
==
1
){
$val
=
decimalNotation
(
$val
);
}
if
(
$currentColumn
==
3
||
$currentColumn
==
4
){
$val
=
floatTimeChange
(
$val
);
}
$values
[]
=
is_null
(
$val
)
?
''
:
$val
;
}
$row
=
[];
...
...
@@ -575,6 +578,7 @@ trait Backend
}
}
if
(
$row
)
{
$row
[
'add_time'
]
=
time
();
$insert
[]
=
$row
;
}
}
...
...
This diff is collapsed.
Click to expand it.
application/admin/view/tt_ex/index.html
浏览文件 @
12e03e4a
...
...
@@ -7,18 +7,14 @@
<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('tt_ex/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('tt_ex/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('tt_ex/del')?'':'hide'}"
title=
"{:__('Delete')}"
><i
class=
"fa fa-trash"
></i>
{:__('Delete')}
</a>
<a
href=
"javascript:;"
class=
"btn btn-danger btn-import {:$auth->check('tt_ex/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('tt_ex/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 class="dropdown btn-group {:$auth->check('tt_ex/multi')?'':'hide'}">-->
<!-- <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>
...
...
This diff is collapsed.
Click to expand it.
application/common.php
浏览文件 @
12e03e4a
...
...
@@ -494,4 +494,14 @@ if (!function_exists('decimalNotation')){
return
rtrim
(
$decimal
,
'.'
);
}
}
\ No newline at end of file
}
if
(
!
function_exists
(
'floatTimeChange'
)){
/*还原excel导入时间浮点数*/
function
floatTimeChange
(
$date
)
{
$d
=
25569
;
$t
=
24
*
60
*
60
;
return
gmdate
(
'Y-m-d H:i:s'
,(
$date
-
$d
)
*
$t
);
}
}
This diff is collapsed.
Click to expand it.
application/common/model/TtEx.php
浏览文件 @
12e03e4a
...
...
@@ -30,6 +30,7 @@ class TtEx Extends Model
{
//通过code_id查询用户所有订单
$info
=
self
::
where
(
'code_id'
,
$code_id
)
->
field
(
'real_money'
)
->
select
();
// 对象转成数组
$info
=
collection
(
$info
)
->
toArray
();
if
(
$info
){
...
...
@@ -62,4 +63,13 @@ class TtEx Extends Model
return
false
;
}
}
/**
* 获取订单分类
* @return array|bool|string
*/
public
static
function
getClassName
()
{
return
self
::
group
(
'class_name'
)
->
column
(
'class_name'
);
}
}
This diff is collapsed.
Click to expand it.
public/assets/js/backend/tt_ex.js
浏览文件 @
12e03e4a
...
...
@@ -22,14 +22,26 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
url
:
$
.
fn
.
bootstrapTable
.
defaults
.
extend
.
index_url
,
pk
:
'id'
,
sortName
:
'id'
,
// 搜索按钮框展开
searchFormVisible
:
true
,
// 隐藏搜索按钮
showSearch
:
false
,
//隐藏搜索框
search
:
false
,
//隐藏切换按钮
showToggle
:
false
,
//隐藏列按钮
showColumns
:
false
,
//隐藏导出按钮
showExport
:
false
,
columns
:
[
[
{
checkbox
:
true
},
//
{checkbox: true},
{
field
:
'id'
,
title
:
__
(
'Id'
)},
{
field
:
'order_id'
,
title
:
__
(
'Order_id'
)},
{
field
:
'enddate'
,
title
:
__
(
'Enddate'
)},
{
field
:
'create_time'
,
title
:
__
(
'Create_time'
)},
{
field
:
'pay_time'
,
title
:
__
(
'Pay_time'
)},
{
field
:
'create_time'
,
title
:
__
(
'Create_time'
)
,
formatter
:
Table
.
api
.
formatter
.
datetime
},
{
field
:
'pay_time'
,
title
:
__
(
'Pay_time'
)
,
formatter
:
Table
.
api
.
formatter
.
datetime
},
{
field
:
'refund_time'
,
title
:
__
(
'Refund_time'
)},
{
field
:
'channel_id'
,
title
:
__
(
'Channel_id'
)},
{
field
:
'channel_name'
,
title
:
__
(
'Channel_name'
)},
...
...
@@ -41,7 +53,8 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
{
field
:
'shop_quantity'
,
title
:
__
(
'Shop_quantity'
)},
{
field
:
'class_three_name'
,
title
:
__
(
'Class_three_name'
)},
{
field
:
'class_two_name'
,
title
:
__
(
'Class_two_name'
)},
{
field
:
'class_name'
,
title
:
__
(
'Class_name'
)},
{
field
:
'add_time'
,
title
:
'导入时间'
,
operate
:
'RANGE'
,
addclass
:
'datetimerange'
,
autocomplete
:
false
,
formatter
:
Table
.
api
.
formatter
.
datetime
},
{
field
:
'class_name'
,
title
:
__
(
'Class_name'
),
searchList
:
$
.
getJSON
(
'tt_ex/ex_class'
)},
{
field
:
'name'
,
title
:
__
(
'Name'
)},
// {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
]
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论