作者 sgj
1 个管道 的构建 失败 耗费 6 秒

后台完善

... ... @@ -19,6 +19,15 @@ class GoodController extends AdminBaseController
* @return mixed
*/
public function index(){
$param=$this->request->param();
$map=[];
$data= db('goods')->where($map)->order('id desc')->paginate();
$data->appends($param);
$list=$data->items();
$this->assign([
'data'=>$list,
'page'=>$data->render(),
]);
return $this->fetch();
}
... ... @@ -26,8 +35,44 @@ class GoodController extends AdminBaseController
* 编辑商品
*/
public function edit(){
$id=input('id');
$data=db('goods')->where('id',$id)->find();
$this->assign('data',$data);
return $this->fetch();
}
/**
* 编辑商品
*/
public function editPost(){
$id=input('id');
$data=input();
$info=db('goods')->where('id',$id)->update($data);
if (!empty($info)){
$this->success('编辑成功!');
}else{
$this->error('编辑失败!');
}
}
/**
* 添加页面
*/
public function add(){
return $this->fetch();
}
/**
* 添加提交
*/
public function addPost(){
$data=input();
$info=db('goods')->insert($data);
if (!empty($info)){
$this->success('编辑成功!');
}else{
$this->error('编辑失败!');
}
}
}
\ No newline at end of file
... ...
<include file="public@header"/>
</head>
<body>
<!--<script type="text/html" id="photos-item-tpl">-->
<!--<li id="saved-image{id}">-->
<!--<input id="photo-{id}" type="hidden" name="photo_urls[]" value="{filepath}">-->
<!--<input class="form-control" id="photo-{id}-name" type="text" name="photo_names[]" value="{name}"-->
<!--style="width: 200px;" title="图片名称">-->
<!--<img id="photo-{id}-preview" src="{url}" style="height:36px;width: 36px;"-->
<!--onclick="imagePreviewDialog(this.src);">-->
<!--<a href="javascript:uploadOneImage('图片上传','#photo-{id}');">替换</a>-->
<!--<a href="javascript:(function(){$('#saved-image{id}').remove();})();">移除</a>-->
<!--</li>-->
<!--</script>-->
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('index')}">商品列表</a></li>
<li class="active">
<a href="{:url('add')}">商品添加</a>
</li>
</ul>
<form action="{:url('addPost')}" method="post" class="form-horizontal js-ajax-form margin-top-20">
<div class="row">
<div class="col-md-9">
<table class="table table-bordered">
<tr>
<th width="100">名称(限20字)<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="good_name"
id="title" value="" placeholder="请输入名称"/>
</td>
</tr>
<tr>
<th width="100">内容<span class="form-required">*</span></th>
<td>
<script type="text/plain" id="content" name="content"></script>
</td>
</tr>
</table>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary js-ajax-submit">{:lang('SAVE')}</button>
<a class="btn btn-default" href="javascript:history.back(-1);">{:lang('BACK')}</a>
</div>
</div>
</div>
<div class="col-md-3">
<table class="table table-bordered">
<tr>
<th>缩略图<span class="form-required">(335px*220px)</span></th>
</tr>
<tr>
<td>
<div style="text-align: center;">
<input type="hidden" name="pic" id="thumbnail"
value="{$data.thumbnail|default=''}">
<a href="javascript:uploadOneImage('image upload','#thumbnail');">
<if condition="empty($data['pic'])">
<img src="__TMPL__/public/assets/images/default-thumbnail.png"
id="thumbnail-preview"
width="135" style="cursor: pointer"/>
<else/>
<img src="{:cmf_get_image_url($data.pic)}"
id="thumbnail-preview"
width="135" style="cursor: pointer"/>
</if>
</a>
<input type="button" class="btn btn-sm btn-cancel-thumbnail"
value="取消图片">
</div>
</td>
</tr>
<tr>
<th>是否上架</th>
</tr>
<tr>
<td>
<div class="checkbox">
<label><input type="checkbox" name="is_online" value="1" checked >上架</label>
</div>
</td>
</tr>
<tr>
<th>是否为线上商品</th>
</tr>
<tr>
<td>
<div class="checkbox">
<label><input type="radio" name="real_good" value="0" >虚拟商品</label>
<label><input type="radio" name="real_good" value="1" checked >实物商品</label>
</div>
</td>
</tr>
<tr>
<th><b>消耗工时(h)</b></th>
</tr>
<tr>
<td>
<input class="form-control" type="number" name="work_time"
value="{$data.work_time}">
</td>
</tr>
</table>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
<script type="text/javascript">
//编辑器路径定义
var editorURL = GV.WEB_ROOT;
</script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.config.js"></script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.all.min.js"></script>
<script type="text/javascript">
$(function () {
editorcontent = new baidu.editor.ui.Editor();
editorcontent.render('content');
try {
editorcontent.sync();
} catch (err) {
}
$('.btn-cancel-thumbnail').click(function () {
$('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
$('#thumbnail').val('');
});
$('.btn-cancel-thumbnail1').click(function () {
$('#thumbnail-preview1').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
$('#thumbnail1').val('');
});
});
</script>
</body>
</html>
... ...
<include file="public@header"/>
</head>
<body>
<!--<script type="text/html" id="photos-item-tpl">-->
<!--<li id="saved-image{id}">-->
<!--<input id="photo-{id}" type="hidden" name="photo_urls[]" value="{filepath}">-->
<!--<input class="form-control" id="photo-{id}-name" type="text" name="photo_names[]" value="{name}"-->
<!--style="width: 200px;" title="图片名称">-->
<!--<img id="photo-{id}-preview" src="{url}" style="height:36px;width: 36px;"-->
<!--onclick="imagePreviewDialog(this.src);">-->
<!--<a href="javascript:uploadOneImage('图片上传','#photo-{id}');">替换</a>-->
<!--<a href="javascript:(function(){$('#saved-image{id}').remove();})();">移除</a>-->
<!--</li>-->
<!--</script>-->
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('index')}">商品列表</a></li>
<li>
<a href="{:url('add')}">商品添加</a>
</li>
<li class="active"><a href="#">编辑商品</a></li>
</ul>
<form action="{:url('editPost')}" method="post" class="form-horizontal js-ajax-form margin-top-20">
<div class="row">
<div class="col-md-9">
<table class="table table-bordered">
<tr>
<th width="100">名称(限20字)<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="good_name"
id="title" value="{$data.good_name}" placeholder="请输入名称"/>
<input type="hidden" name="id" value="{$data.id}">
</td>
</tr>
<tr>
<th width="100">内容<span class="form-required">*</span></th>
<td>
<script type="text/plain" id="content" name="content">{:cmf_replace_content_file_url(htmlspecialchars_decode($data.content))}</script>
</td>
</tr>
</table>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary js-ajax-submit">{:lang('SAVE')}</button>
<a class="btn btn-default" href="javascript:history.back(-1);">{:lang('BACK')}</a>
</div>
</div>
</div>
<div class="col-md-3">
<table class="table table-bordered">
<tr>
<th>缩略图<span class="form-required">(335px*220px)</span></th>
</tr>
<tr>
<td>
<div style="text-align: center;">
<input type="hidden" name="pic" id="thumbnail"
value="{$data.thumbnail|default=''}">
<a href="javascript:uploadOneImage('image upload','#thumbnail');">
<if condition="empty($data['pic'])">
<img src="__TMPL__/public/assets/images/default-thumbnail.png"
id="thumbnail-preview"
width="135" style="cursor: pointer"/>
<else/>
<img src="{:cmf_get_image_url($data.pic)}"
id="thumbnail-preview"
width="135" style="cursor: pointer"/>
</if>
</a>
<input type="button" class="btn btn-sm btn-cancel-thumbnail"
value="取消图片">
</div>
</td>
</tr>
<tr>
<th>是否上架</th>
</tr>
<tr>
<td>
<div class="checkbox">
<label><input type="checkbox" name="is_online" value="1" <eq name="$data.is_online" value="1">checked</eq> >上架</label>
</div>
</td>
</tr>
<tr>
<th>是否为线上商品</th>
</tr>
<tr>
<td>
<div class="checkbox">
<label><input type="radio" name="real_good" value="0" <eq name="$data.real_good" value="0">checked</eq> >虚拟商品</label>
<label><input type="radio" name="real_good" value="1" <eq name="$data.real_good" value="1">checked</eq> >实物商品</label>
</div>
</td>
</tr>
<tr>
<th><b>消耗工时(h)</b></th>
</tr>
<tr>
<td>
<input class="form-control" type="number" name="work_time"
value="{$data.work_time}">
</td>
</tr>
</table>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
<script type="text/javascript">
//编辑器路径定义
var editorURL = GV.WEB_ROOT;
</script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.config.js"></script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.all.min.js"></script>
<script type="text/javascript">
$(function () {
editorcontent = new baidu.editor.ui.Editor();
editorcontent.render('content');
try {
editorcontent.sync();
} catch (err) {
}
$('.btn-cancel-thumbnail').click(function () {
$('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
$('#thumbnail').val('');
});
$('.btn-cancel-thumbnail1').click(function () {
$('#thumbnail-preview1').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
$('#thumbnail1').val('');
});
});
</script>
</body>
</html>
... ...
<include file="public@header" />
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="{:url('index')}">商品列表</a></li>
<li><a href="{:url('add')}">添加商品</a></li>
</ul>
<!-- <form class="well form-inline margin-top-20" method="post" action="{:url('activity/index')}">
关键字:
<input type="text" class="form-control" name="keyword" style="width: 150px;" value="{$keyword|default=''}" placeholder="请输入关键字">
<input type="submit" class="btn btn-primary" value="搜索" />
<a class="btn btn-danger" href="{:url('activity/index')}">清空</a>
</form>-->
<form class="js-ajax-form" action="" method="post">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th width="15">
<label>
<input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
</label>
</th>
<th width="20">ID</th>
<th width="50">名称</th>
<th width="50">缩略图</th>
<th width="50">总时长</th>
<th width="50">状态</th>
<th width="100">操作</th>
</tr>
</thead>
<tbody>
<foreach name="data" item="vo">
<tr>
<td>
<input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]"
value="{$vo.id}" title="ID:{$vo.id}">
</td>
<td>{$vo.id}</td>
<td>{$vo.good_name}</td>
<td>
<notempty name="$vo.pic">
<a href="javascript:parent.imagePreviewDialog('{:cmf_get_image_preview_url($vo.pic)}');">
<img height="80px" src="{:cmf_get_image_preview_url($vo.pic)}">
</a>
</notempty>
</td>
<td>{$vo.work_time}</td>
<if condition="$vo.is_online==0"> <td>已下架</td> </if>
<if condition="$vo.is_online==1"> <td>已上架</td> </if>
<td>
<a href='{:url("edit",array("id"=>$vo["id"]))}'>{:lang('EDIT')}</a>|
<a class="js-ajax-delete" href="{:url('delete',array('id'=>$vo['id']))}">{:lang('DELETE')}</a>
<if condition="$vo.is_online==1">|
<a class="js-ajax-dialog-btn" data-msg="确定下架吗?" href="{:url('online',array('id'=>$vo['id'],'status'=>'0'))}">下架</a>
</if>
<if condition="$vo.is_online==0">|
<a class="js-ajax-dialog-btn" data-msg="确定上架吗?" href="{:url('online',array('id'=>$vo['id'],'status'=>'1'))}">上架</a>
</if>
</td>
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page}</div>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>
\ No newline at end of file
... ...