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

添加信息

... ... @@ -71,6 +71,8 @@ class SecondController extends RestBaseController
$return[$k]['name']=$v['name'];
$return[$k]['work_time']=$v['work_total_time'];
}
}else{
$this->error('');
}
}
$this->success('',$return);
... ...
<?php
/**
* Created by PhpStorm.
* auther: sgj
* Date: 2020/10/14
* Time: 17:02
*/
namespace app\admin\controller;
use cmf\controller\AdminBaseController;
use cmf\controller\BaseController;
class OrderController extends AdminBaseController
{
/**
* 订单列表
*/
public function index(){
$param=$this->request->param();
$map=[];
$data= db('orders')->alias('o')
->field('v.name as user_name,v.photo,o.*,g.*')
->join('goods g','o.good_id=g.id')
->join('user u','u.id=o.user_id')
->join('volunteer v','v.user_id=o.user_id')
->where($map)
->order('o.id desc')
->paginate();
$data->appends($param);
$list=$data->items();
$this->assign([
'data'=>$list,
'page'=>$data->render(),
]);
return $this->fetch();
}
public function info(){
}
public function edit()
{
$id = input('id');
$param = $this->request->param();
$map['o.id'] = $id;
$data = db('orders')->alias('o')
->field('v.name as user_name,v.photo,o.*,g.*')
->join('goods g', 'o.good_id=g.id')
->join('user u', 'u.id=o.user_id')
->join('volunteer v', 'v.user_id=o.user_id')
->where($map)
->find();
dump($data);
$this->assign('data', $data);
return $this->fetch();
}
}
\ No newline at end of file
... ...
... ... @@ -47,6 +47,7 @@ return array (
'ADMIN_NAVMENU_INDEX' => '导航菜单',
'ADMIN_NAVMENU_LISTORDER' => '导航菜单排序',
'ADMIN_ONLINETRAIN_INDEX' => '在线培训',
'ADMIN_ORDER_INDEX' => '订单列表',
'ADMIN_PLUGIN_DEFAULT' => '插件管理',
'ADMIN_PLUGIN_INDEX' => '插件列表',
'ADMIN_PLUGIN_INSTALL' => '插件安装',
... ...
<include file="public@header"/>
</head>
<body>
<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">订单编号<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="good_name"
id="title" value="{$data.order_sn}" />
<input type="hidden" name="id" value="{$data.id}">
</td>
</tr>
<tr>
<th width="100">商品名称<span class="form-required">*</span></th>
<td>
<input class="form-control" readonly type="text" name="good_name"
id="good_name" value="{$data.good_name}" />
</td>
</tr>
<tr>
<th width="100">商品数量<span class="form-required">*</span></th>
<td>
<input class="form-control" readonly type="number" name="num"
id="good_name" value="{$data.num}" />
</td>
</tr>
<tr>
<th width="100">是否为虚拟商品<span class="form-required">*</span></th>
<td>
<if condition="$data.is_real==1">
<input class="form-control" readonly type="number" name="num" readonly id="good_name" value="是" />
</if>
<if condition="$data.is_real==0">
<input class="form-control" readonly type="number" name="num" readonly id="good_name" value="否" />
</if>
</td>
</tr>
<tr>
<th width="100">商品数量<span class="form-required">*</span></th>
<td>
<input class="form-control" readonly type="number" name="num"
id="good_name" value="{$data.num}" />
</td>
</tr>
<tr>
<th width="100">商品数量<span class="form-required">*</span></th>
<td>
<input class="form-control" readonly type="number" name="num"
id="good_name" value="{$data.num}" />
</td>
</tr>
<if condition="$data.real_good==1">
<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>
</if>
</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>
</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="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.order_sn}</td>
<td>{$vo.good_name}</td>
<if condition="$vo.status==0"> <td>待审核</td> </if>
<if condition="$vo.status==1"> <td>已发放</td> </if>
<td>{:date('Y-m-d H:i:s',$vo['create_time'])}</td>
<td>{$vo.user_name}</td>
<td>{$vo.num}</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>
<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
... ...