切换导航条
此项目
正在载入...
登录
郭盛
/
enterprise
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
差异文件
浏览文件
作者
何书鹏
4 years ago
提交
8430b767841506937674610c5b648ffb1e8ba191
2 个父辈
178782f6
4e1511a9
1 个管道 的构建
通过
耗费 1 秒
合并分支 'heshupeng' 到 'master'
后台消息管理 查看合并请求
!163
变更
17
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
17 个修改的文件
包含
814 行增加
和
0 行删除
application/admin/controller/mobile/Message.php
application/admin/controller/mobile/MessageAdmin.php
application/admin/lang/zh-cn/mobile/message.php
application/admin/lang/zh-cn/mobile/message_admin.php
application/admin/model/mobile/Message.php
application/admin/model/mobile/MessageAdmin.php
application/admin/validate/mobile/Message.php
application/admin/validate/mobile/MessageAdmin.php
application/admin/view/mobile/message/add.html
application/admin/view/mobile/message/edit.html
application/admin/view/mobile/message/index.html
application/admin/view/mobile/message_admin/add.html
application/admin/view/mobile/message_admin/edit.html
application/admin/view/mobile/message_admin/index.html
application/admin/view/mobile/message_admin/info.html
public/assets/js/backend/mobile/message.js
public/assets/js/backend/mobile/message_admin.js
application/admin/controller/mobile/Message.php
0 → 100644
查看文件 @
8430b76
<?php
namespace
app\admin\controller\mobile
;
use
app\common\controller\Backend
;
/**
* 消息管理
*
* @icon fa fa-circle-o
*/
class
Message
extends
Backend
{
/**
* Message模型对象
* @var \app\admin\model\mobile\Message
*/
protected
$model
=
null
;
public
function
_initialize
()
{
parent
::
_initialize
();
$this
->
model
=
new
\app\admin\model\mobile\Message
;
$this
->
view
->
assign
(
"isReadList"
,
$this
->
model
->
getIsReadList
());
}
/**
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
*/
/**
* 查看
*/
public
function
index
()
{
//当前是否为关联查询
$this
->
relationSearch
=
true
;
//设置过滤方法
$this
->
request
->
filter
([
'strip_tags'
,
'trim'
]);
if
(
$this
->
request
->
isAjax
())
{
//如果发送的来源是Selectpage,则转发到Selectpage
if
(
$this
->
request
->
request
(
'keyField'
))
{
return
$this
->
selectpage
();
}
list
(
$where
,
$sort
,
$order
,
$offset
,
$limit
)
=
$this
->
buildparams
();
$total
=
$this
->
model
->
with
([
'user'
])
->
where
(
'message_admin_id'
,
$this
->
request
->
request
(
'message_admin_id'
))
->
where
(
$where
)
->
order
(
$sort
,
$order
)
->
count
();
$list
=
$this
->
model
->
with
([
'user'
])
->
where
(
'message_admin_id'
,
$this
->
request
->
request
(
'message_admin_id'
))
->
where
(
$where
)
->
order
(
$sort
,
$order
)
->
limit
(
$offset
,
$limit
)
->
select
();
foreach
(
$list
as
$row
)
{
$row
->
visible
([
'id'
,
'user_id'
,
'title'
,
'is_read'
,
'createtime'
]);
$row
->
visible
([
'user'
]);
$row
->
getRelation
(
'user'
)
->
visible
([
'nickname'
]);
}
$list
=
collection
(
$list
)
->
toArray
();
$result
=
array
(
"total"
=>
$total
,
"rows"
=>
$list
);
return
json
(
$result
);
}
return
$this
->
view
->
fetch
();
}
}
...
...
application/admin/controller/mobile/MessageAdmin.php
0 → 100644
查看文件 @
8430b76
<?php
namespace
app\admin\controller\mobile
;
use
app\common\controller\Backend
;
use
think\Db
;
/**
* 后台消息管理
*
* @icon fa fa-circle-o
*/
class
MessageAdmin
extends
Backend
{
/**
* MessageAdmin模型对象
* @var \app\admin\model\mobile\MessageAdmin
*/
protected
$model
=
null
;
public
function
_initialize
()
{
parent
::
_initialize
();
$this
->
model
=
new
\app\admin\model\mobile\MessageAdmin
;
}
/**
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
*/
/**
* 查看
*/
public
function
index
()
{
//当前是否为关联查询
$this
->
relationSearch
=
false
;
//设置过滤方法
$this
->
request
->
filter
([
'strip_tags'
,
'trim'
]);
if
(
$this
->
request
->
isAjax
())
{
//如果发送的来源是Selectpage,则转发到Selectpage
if
(
$this
->
request
->
request
(
'keyField'
))
{
return
$this
->
selectpage
();
}
list
(
$where
,
$sort
,
$order
,
$offset
,
$limit
)
=
$this
->
buildparams
();
$total
=
$this
->
model
->
where
(
$where
)
->
order
(
$sort
,
$order
)
->
count
();
$list
=
$this
->
model
->
where
(
$where
)
->
order
(
$sort
,
$order
)
->
limit
(
$offset
,
$limit
)
->
select
();
foreach
(
$list
as
$row
)
{
$row
->
visible
([
'id'
,
'title'
,
'createtime'
]);
}
$list
=
collection
(
$list
)
->
toArray
();
$result
=
array
(
"total"
=>
$total
,
"rows"
=>
$list
);
return
json
(
$result
);
}
return
$this
->
view
->
fetch
();
}
/**
* 添加
*/
public
function
add
()
{
if
(
$this
->
request
->
isPost
())
{
$params
=
$this
->
request
->
post
(
"row/a"
);
if
(
$params
)
{
$params
=
$this
->
preExcludeFields
(
$params
);
if
(
$this
->
dataLimit
&&
$this
->
dataLimitFieldAutoFill
)
{
$params
[
$this
->
dataLimitField
]
=
$this
->
auth
->
id
;
}
$result
=
false
;
Db
::
startTrans
();
try
{
//是否采用模型验证
if
(
$this
->
modelValidate
)
{
$name
=
str_replace
(
"
\\
model
\\
"
,
"
\\
validate
\\
"
,
get_class
(
$this
->
model
));
$validate
=
is_bool
(
$this
->
modelValidate
)
?
(
$this
->
modelSceneValidate
?
$name
.
'.add'
:
$name
)
:
$this
->
modelValidate
;
$this
->
model
->
validateFailException
(
true
)
->
validate
(
$validate
);
}
if
(
$params
[
'register_time'
]){
$register_time
=
str_replace
(
' - '
,
','
,
$params
[
'register_time'
]);
$arr
=
array_slice
(
explode
(
','
,
$register_time
),
0
,
2
);
$where
[
'createtime'
]
=
[
'between time'
,
$arr
];
}
if
(
$params
[
'group_id'
]
!=
'all'
){
$where
[
'group_id'
]
=
$params
[
'group_id'
];
}
$user_id_arr
=
\app\admin\model\User
::
where
(
$where
)
->
column
(
'id'
);
if
(
!
$user_id_arr
){
$this
->
error
(
'未查询到用户'
);
}
$result
=
$this
->
model
->
allowField
(
true
)
->
save
(
$params
);
if
(
$user_id_arr
){
$message
=
[];
foreach
(
$user_id_arr
as
$user_id
){
$message
[]
=
[
'message_admin_id'
=>
$this
->
model
[
'id'
],
'user_id'
=>
$user_id
,
'title'
=>
$this
->
model
[
'title'
],
'content'
=>
$this
->
model
[
'content'
],
];
}
(
new
\app\admin\model\mobile\Message
)
->
saveAll
(
$message
);
}
Db
::
commit
();
}
catch
(
ValidateException
$e
)
{
Db
::
rollback
();
$this
->
error
(
$e
->
getMessage
());
}
catch
(
PDOException
$e
)
{
Db
::
rollback
();
$this
->
error
(
$e
->
getMessage
());
}
catch
(
Exception
$e
)
{
Db
::
rollback
();
$this
->
error
(
$e
->
getMessage
());
}
if
(
$result
!==
false
)
{
$this
->
success
();
}
else
{
$this
->
error
(
__
(
'No rows were inserted'
));
}
}
$this
->
error
(
__
(
'Parameter %s can not be empty'
,
''
));
}
return
$this
->
view
->
fetch
();
}
/**
* 订单详情
*/
public
function
info
(
$ids
=
null
)
{
$info
=
$this
->
model
->
get
(
$ids
);
if
(
!
$info
)
{
$this
->
error
(
__
(
'No Results were found'
));
}
$this
->
view
->
assign
(
"row"
,
$info
);
return
$this
->
view
->
fetch
();
}
/**
* 删除
*/
public
function
del
(
$ids
=
""
)
{
if
(
!
$this
->
request
->
isPost
())
{
$this
->
error
(
__
(
"Invalid parameters"
));
}
$ids
=
$ids
?
$ids
:
$this
->
request
->
post
(
"ids"
);
if
(
$ids
)
{
$pk
=
$this
->
model
->
getPk
();
$adminIds
=
$this
->
getDataLimitAdminIds
();
if
(
is_array
(
$adminIds
))
{
$this
->
model
->
where
(
$this
->
dataLimitField
,
'in'
,
$adminIds
);
}
$list
=
$this
->
model
->
where
(
$pk
,
'in'
,
$ids
)
->
select
();
$count
=
0
;
Db
::
startTrans
();
try
{
$message_model
=
new
\app\admin\model\mobile\Message
;
foreach
(
$list
as
$k
=>
$v
)
{
$message_model
->
where
(
'message_admin_id'
,
$v
[
'id'
])
->
delete
();
$count
+=
$v
->
delete
();
}
Db
::
commit
();
}
catch
(
PDOException
$e
)
{
Db
::
rollback
();
$this
->
error
(
$e
->
getMessage
());
}
catch
(
Exception
$e
)
{
Db
::
rollback
();
$this
->
error
(
$e
->
getMessage
());
}
if
(
$count
)
{
$this
->
success
();
}
else
{
$this
->
error
(
__
(
'No rows were deleted'
));
}
}
$this
->
error
(
__
(
'Parameter %s can not be empty'
,
'ids'
));
}
}
...
...
application/admin/lang/zh-cn/mobile/message.php
0 → 100644
查看文件 @
8430b76
<?php
return
[
'Id'
=>
'ID'
,
'Message_admin_id'
=>
'后台消息ID'
,
'User_id'
=>
'用户ID'
,
'Title'
=>
'标题'
,
'Content'
=>
'内容'
,
'Is_read'
=>
'是否已读'
,
'Is_read 0'
=>
'否'
,
'Is_read 1'
=>
'是'
,
'Createtime'
=>
'创建时间'
,
'Updatetime'
=>
'更新时间'
,
'User.nickname'
=>
'昵称'
];
...
...
application/admin/lang/zh-cn/mobile/message_admin.php
0 → 100644
查看文件 @
8430b76
<?php
return
[
'Id'
=>
'ID'
,
'Title'
=>
'标题'
,
'Content'
=>
'内容'
,
'Createtime'
=>
'创建时间'
,
'Updatetime'
=>
'更新时间'
];
...
...
application/admin/model/mobile/Message.php
0 → 100644
查看文件 @
8430b76
<?php
namespace
app\admin\model\mobile
;
use
think\Model
;
class
Message
extends
Model
{
// 表名
protected
$name
=
'mobile_message'
;
// 自动写入时间戳字段
protected
$autoWriteTimestamp
=
'int'
;
// 定义时间戳字段名
protected
$createTime
=
'createtime'
;
protected
$updateTime
=
'updatetime'
;
protected
$deleteTime
=
false
;
// 追加属性
protected
$append
=
[
'is_read_text'
];
public
function
getIsReadList
()
{
return
[
'0'
=>
__
(
'Is_read 0'
),
'1'
=>
__
(
'Is_read 1'
)];
}
public
function
getIsReadTextAttr
(
$value
,
$data
)
{
$value
=
$value
?
$value
:
(
isset
(
$data
[
'is_read'
])
?
$data
[
'is_read'
]
:
''
);
$list
=
$this
->
getIsReadList
();
return
isset
(
$list
[
$value
])
?
$list
[
$value
]
:
''
;
}
public
function
user
()
{
return
$this
->
belongsTo
(
'app\admin\model\User'
,
'user_id'
,
'id'
,
[],
'LEFT'
)
->
setEagerlyType
(
0
);
}
}
...
...
application/admin/model/mobile/MessageAdmin.php
0 → 100644
查看文件 @
8430b76
<?php
namespace
app\admin\model\mobile
;
use
think\Model
;
class
MessageAdmin
extends
Model
{
// 表名
protected
$name
=
'mobile_message_admin'
;
// 自动写入时间戳字段
protected
$autoWriteTimestamp
=
'int'
;
// 定义时间戳字段名
protected
$createTime
=
'createtime'
;
protected
$updateTime
=
'updatetime'
;
protected
$deleteTime
=
false
;
// 追加属性
protected
$append
=
[
];
}
...
...
application/admin/validate/mobile/Message.php
0 → 100644
查看文件 @
8430b76
<?php
namespace
app\admin\validate\mobile
;
use
think\Validate
;
class
Message
extends
Validate
{
/**
* 验证规则
*/
protected
$rule
=
[
];
/**
* 提示消息
*/
protected
$message
=
[
];
/**
* 验证场景
*/
protected
$scene
=
[
'add'
=>
[],
'edit'
=>
[],
];
}
...
...
application/admin/validate/mobile/MessageAdmin.php
0 → 100644
查看文件 @
8430b76
<?php
namespace
app\admin\validate\mobile
;
use
think\Validate
;
class
MessageAdmin
extends
Validate
{
/**
* 验证规则
*/
protected
$rule
=
[
];
/**
* 提示消息
*/
protected
$message
=
[
];
/**
* 验证场景
*/
protected
$scene
=
[
'add'
=>
[],
'edit'
=>
[],
];
}
...
...
application/admin/view/mobile/message/add.html
0 → 100644
查看文件 @
8430b76
<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"
>
{:__('Message_admin_id')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-message_admin_id"
data-rule=
"required"
data-source=
"message/admin/index"
class=
"form-control selectpage"
name=
"row[message_admin_id]"
type=
"text"
value=
""
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('User_id')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-user_id"
data-rule=
"required"
data-source=
"user/user/index"
data-field=
"nickname"
class=
"form-control selectpage"
name=
"row[user_id]"
type=
"text"
value=
""
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Title')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-title"
data-rule=
"required"
class=
"form-control"
name=
"row[title]"
type=
"text"
value=
""
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Content')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<textarea
id=
"c-content"
class=
"form-control editor"
rows=
"5"
name=
"row[content]"
cols=
"50"
></textarea>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Is_read')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<select
id=
"c-is_read"
data-rule=
"required"
class=
"form-control selectpicker"
name=
"row[is_read]"
>
{foreach name="isReadList" item="vo"}
<option
value=
"{$key}"
{
in
name=
"key"
value=
"0"
}
selected
{/
in
}
>
{$vo}
</option>
{/foreach}
</select>
</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>
...
...
application/admin/view/mobile/message/edit.html
0 → 100644
查看文件 @
8430b76
<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"
>
{:__('Message_admin_id')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-message_admin_id"
data-rule=
"required"
data-source=
"message/admin/index"
class=
"form-control selectpage"
name=
"row[message_admin_id]"
type=
"text"
value=
"{$row.message_admin_id|htmlentities}"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('User_id')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-user_id"
data-rule=
"required"
data-source=
"user/user/index"
data-field=
"nickname"
class=
"form-control selectpage"
name=
"row[user_id]"
type=
"text"
value=
"{$row.user_id|htmlentities}"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Title')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-title"
data-rule=
"required"
class=
"form-control"
name=
"row[title]"
type=
"text"
value=
"{$row.title|htmlentities}"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Content')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<textarea
id=
"c-content"
class=
"form-control editor"
rows=
"5"
name=
"row[content]"
cols=
"50"
>
{$row.content|htmlentities}
</textarea>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Is_read')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<select
id=
"c-is_read"
data-rule=
"required"
class=
"form-control selectpicker"
name=
"row[is_read]"
>
{foreach name="isReadList" item="vo"}
<option
value=
"{$key}"
{
in
name=
"key"
value=
"$row.is_read"
}
selected
{/
in
}
>
{$vo}
</option>
{/foreach}
</select>
</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>
...
...
application/admin/view/mobile/message/index.html
0 → 100644
查看文件 @
8430b76
<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('mobile/message/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('mobile/message/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('mobile/message/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a>-->
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover table-nowrap"
data-operate-edit=
"{:$auth->check('mobile/message/edit')}"
data-operate-del=
"{:$auth->check('mobile/message/del')}"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
...
...
application/admin/view/mobile/message_admin/add.html
0 → 100644
查看文件 @
8430b76
<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"
>
{:__('注册时间')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-register_time"
class=
"form-control datetimerange"
name=
"row[register_time]"
type=
"text"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('用户角色')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<select
id=
"c-group_id"
data-rule=
"required"
class=
"form-control selectpicker"
name=
"row[group_id]"
>
<option
value=
"all"
selected
>
全部
</option>
<option
value=
"0"
>
普通用户
</option>
<option
value=
"1"
>
企业管理员
</option>
</select>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Title')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-title"
data-rule=
"required"
class=
"form-control"
name=
"row[title]"
type=
"text"
value=
""
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Content')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<textarea
id=
"c-content"
data-rule=
"required"
class=
"form-control editor"
rows=
"5"
name=
"row[content]"
cols=
"50"
></textarea>
</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>
...
...
application/admin/view/mobile/message_admin/edit.html
0 → 100644
查看文件 @
8430b76
<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"
>
{:__('Title')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-title"
data-rule=
"required"
class=
"form-control"
name=
"row[title]"
type=
"text"
value=
"{$row.title|htmlentities}"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
{:__('Content')}:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<textarea
id=
"c-content"
class=
"form-control editor"
rows=
"5"
name=
"row[content]"
cols=
"50"
>
{$row.content|htmlentities}
</textarea>
</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>
...
...
application/admin/view/mobile/message_admin/index.html
0 → 100644
查看文件 @
8430b76
<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('mobile/message_admin/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('mobile/message_admin/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('mobile/message_admin/del')?'':'hide'}"
title=
"{:__('Delete')}"
><i
class=
"fa fa-trash"
></i>
{:__('Delete')}
</a>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover table-nowrap"
data-operate-edit=
"false"
data-operate-del=
"{:$auth->check('mobile/message_admin/del')}"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
...
...
application/admin/view/mobile/message_admin/info.html
0 → 100644
查看文件 @
8430b76
<div
class=
"ibox-content order-info"
>
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel-heading"
>
标题
</div>
<div
class=
"panel-body"
>
<div
class=
"row show-grid"
>
<div
class=
"col-xs-12"
>
{$row.title}
</div>
</div>
</div>
</div>
</div>
<div
class=
"col-sm-12"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel-heading"
>
内容
</div>
<div
class=
"panel-body"
>
<div
class=
"row show-grid"
>
<div
class=
"col-xs-12"
>
{$row.content}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ No newline at end of file
...
...
public/assets/js/backend/mobile/message.js
0 → 100644
查看文件 @
8430b76
define
([
'jquery'
,
'bootstrap'
,
'backend'
,
'table'
,
'form'
],
function
(
$
,
undefined
,
Backend
,
Table
,
Form
)
{
var
Controller
=
{
index
:
function
()
{
// 初始化表格参数配置
Table
.
api
.
init
({
extend
:
{
index_url
:
'mobile/message/index'
+
location
.
search
,
add_url
:
'mobile/message/add'
,
edit_url
:
'mobile/message/edit'
,
del_url
:
'mobile/message/del'
,
multi_url
:
'mobile/message/multi'
,
table
:
'mobile_message'
,
}
});
var
table
=
$
(
"#table"
);
// 初始化表格
table
.
bootstrapTable
({
url
:
$
.
fn
.
bootstrapTable
.
defaults
.
extend
.
index_url
,
pk
:
'id'
,
sortName
:
'id'
,
columns
:
[
[
{
checkbox
:
true
},
{
field
:
'id'
,
title
:
__
(
'Id'
)},
{
field
:
'user.nickname'
,
title
:
__
(
'用户'
)},
{
field
:
'title'
,
title
:
__
(
'Title'
)},
{
field
:
'is_read'
,
title
:
__
(
'Is_read'
),
searchList
:
{
"0"
:
__
(
'Is_read 0'
),
"1"
:
__
(
'Is_read 1'
)},
formatter
:
Table
.
api
.
formatter
.
normal
},
{
field
:
'createtime'
,
title
:
__
(
'Createtime'
),
operate
:
'RANGE'
,
addclass
:
'datetimerange'
,
formatter
:
Table
.
api
.
formatter
.
datetime
},
// {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
;
});
\ No newline at end of file
...
...
public/assets/js/backend/mobile/message_admin.js
0 → 100644
查看文件 @
8430b76
define
([
'jquery'
,
'bootstrap'
,
'backend'
,
'table'
,
'form'
],
function
(
$
,
undefined
,
Backend
,
Table
,
Form
)
{
var
Controller
=
{
index
:
function
()
{
// 初始化表格参数配置
Table
.
api
.
init
({
extend
:
{
index_url
:
'mobile/message_admin/index'
+
location
.
search
,
add_url
:
'mobile/message_admin/add'
,
edit_url
:
'mobile/message_admin/edit'
,
del_url
:
'mobile/message_admin/del'
,
multi_url
:
'mobile/message_admin/multi'
,
table
:
'mobile_message_admin'
,
}
});
var
table
=
$
(
"#table"
);
// 初始化表格
table
.
bootstrapTable
({
url
:
$
.
fn
.
bootstrapTable
.
defaults
.
extend
.
index_url
,
pk
:
'id'
,
sortName
:
'id'
,
columns
:
[
[
{
checkbox
:
true
},
{
field
:
'id'
,
title
:
__
(
'Id'
)},
{
field
:
'title'
,
title
:
__
(
'Title'
)},
{
field
:
'createtime'
,
title
:
__
(
'Createtime'
),
operate
:
'RANGE'
,
addclass
:
'datetimerange'
,
formatter
:
Table
.
api
.
formatter
.
datetime
},
//操作栏,默认有编辑、删除或排序按钮,可自定义配置buttons来扩展按钮
{
field
:
'operate'
,
title
:
__
(
'Operate'
),
table
:
table
,
events
:
Table
.
api
.
events
.
operate
,
buttons
:
[
{
name
:
'info'
,
text
:
__
(
'查看详情'
),
title
:
__
(
'查看详情'
),
classname
:
'btn btn-xs btn-info btn-dialog'
,
icon
:
'fa fa-book'
,
url
:
'mobile/message_admin/info?order_id={id}'
},
{
text
:
'发送用户'
,
title
:
'发送用户'
,
classname
:
'btn btn-xs btn-primary btn-dialog'
,
icon
:
'fa fa-list'
,
url
:
'mobile/message?message_admin_id={id}'
,
}
],
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
;
});
\ No newline at end of file
...
...
请
注册
或
登录
后发表评论