diff --git a/application/admin/controller/school/activity/Activity.php b/application/admin/controller/school/activity/Activity.php index fe96682..37e7ab5 100644 --- a/application/admin/controller/school/activity/Activity.php +++ b/application/admin/controller/school/activity/Activity.php @@ -9,6 +9,7 @@ use think\db\exception\ModelNotFoundException; use think\exception\DbException; use think\exception\PDOException; use think\exception\ValidateException; +use think\Url; /** * 活动 @@ -98,6 +99,9 @@ class Activity extends Backend { //当前是否为关联查询 $this->relationSearch = true; + + $this->searchFields = ["id","title","address","address_detail","address_city","user.nickname","user.realname","user.mobile"]; + //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { @@ -119,7 +123,14 @@ class Activity extends Backend $row->getRelation('admin')->visible(['nickname','avatar']); } - $result = array("total" => $list->total(), "rows" => $list->items()); + $rows = $list->items(); + foreach ($rows as $k=>&$v){ + $v["miniqrcode_link"] = Url::build("/school/activity/activity/miniqrcode", ["ids" => $v["id"]]); + } + $result = array("total" => $list->total(), "rows" => $rows); + + +// $result = array("total" => $list->total(), "rows" => $list->items()); return json($result); } @@ -133,7 +144,7 @@ class Activity extends Backend * @return string * @throws \think\Exception */ - public function add() + public function add($row=null) { if (false === $this->request->isPost()) { return $this->view->fetch(); @@ -188,6 +199,39 @@ class Activity extends Backend $this->success(); } + + + + + /** + * 复制课程 + * + * @param $ids + * @return string + * @throws DbException + * @throws \think\Exception + */ + public function copy($ids = null) + { + $row = $this->model->get($ids); + if (!$row) { + $this->error(__('No Results were found')); + } + $adminIds = $this->getDataLimitAdminIds(); + if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) { + $this->error(__('You have no permission')); + } + if (false === $this->request->isPost()) { + $this->view->assign('row', $row); + return $this->view->fetch(); + } + + $this->add($row); + } + + + + /** * 编辑 * @@ -340,4 +384,88 @@ class Activity extends Backend + + + + + /** + * 跳转链接 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function url($ids = ''){ + $param = $this->request->param(); + if($this->request->isPost()){ + try{ + if(isset($param['ids']))$ids = $param['ids']; + //设置模拟资格 + $url = \app\common\model\school\activity\Activity::getPath($ids); + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + $this->success($url); + } + $row = $this->model->get($ids); + $this->view->assign('vo', $row); + return $this->view->fetch(); + } + + + /** + * 微信小程序码 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function miniqrcode($ids = ''){ + $param = $this->request->param(); + try{ + if(isset($param['ids']))$ids = $param['ids']; + //设置模拟资格 + $url = \app\common\model\school\activity\Activity::getMiniQrcodeLink($ids); + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + + return $url["response"]; + } + + + + + /** + * 查看微信小程序码 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function lookminiqrcode($ids = ''){ + $param = $this->request->param(); + if($this->request->isPost()){ + try{ + if(isset($param['ids']))$ids = $param['ids']; + //设置模拟资格 + $url = \app\common\model\school\activity\Activity::getMiniQrcodeLink($ids); + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + $this->success("生成小程序码成功",null,$url); + } + $row = $this->model->get($ids); + $this->view->assign('vo', $row); + return $this->view->fetch(); + } + + + } diff --git a/application/admin/controller/school/activity/order/Order.php b/application/admin/controller/school/activity/order/Order.php index cbfdf8b..31e998d 100644 --- a/application/admin/controller/school/activity/order/Order.php +++ b/application/admin/controller/school/activity/order/Order.php @@ -45,6 +45,10 @@ class Order extends Backend { //当前是否为关联查询 $this->relationSearch = true; + + $this->searchFields = ["id","refund_error","refund_no","order_no","pay_no","user_id","detail.title","user.nickname","user.realname","user.mobile"]; + + //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { @@ -74,4 +78,129 @@ class Order extends Backend return $this->view->fetch(); } + + + /** + * 订单未支付取消 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function freecancel($ids = ''){ + $param = $this->request->param(); + if($this->request->isPost()){ + try{ + if(isset($param['ids']))$ids = $param['ids']; + //设置模拟资格 + $model = (new \app\common\model\school\activity\order\Order); + $model->freecancel($ids,0,true,'admin',$this->auth->id,true); + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + $this->success('取消成功!'); + } + $row = $this->model->get($ids); + $this->view->assign('vo', $row); + return $this->view->fetch(); + } + + + + /** + * 订单已支付取消 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function paidcancel($ids = ''){ + $param = $this->request->param(); + if($this->request->isPost()){ + try{ + if(isset($param['ids']))$ids = $param['ids']; + //设置模拟资格 + $model = (new \app\common\model\school\activity\order\Order); + $model->paidcancel($ids,0,true,'admin',$this->auth->id,false,true); + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + $this->success('取消成功!'); + } + $row = $this->model->get($ids); + $this->view->assign('vo', $row); + return $this->view->fetch(); + } + + + + + + + /** + * 后台核销 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function verification($ids = ''){ + $param = $this->request->param(); + if($this->request->isPost()){ + try{ + if(isset($param['ids']))$ids = $param['ids']; + //设置模拟资格 + $model = (new \app\common\model\school\classes\activity\order\Order); + $model->verification($ids,0,true,'admin',$this->auth->id,true); + + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + $this->success('核销成功!'); + } + $row = $this->model->get($ids); + $this->view->assign('vo', $row); + return $this->view->fetch(); + } + + + + + + /** + * 退款重试 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function refund($ids = ''){ + $param = $this->request->param(); + if($this->request->isPost()){ + try{ + if(isset($param['ids']))$ids = $param['ids']; + //设置模拟资格 + $model = (new \app\common\model\school\activity\order\Order); + $model->orderRefund($ids,null,'admin',$this->auth->id,true,true); + + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + $this->success('已重新发起退款,如果是第三方支付请等待回调!'); + } + $row = $this->model->get($ids); + $this->view->assign('vo', $row); + return $this->view->fetch(); + } + + + } diff --git a/application/admin/controller/school/activity/order/OrderCode.php b/application/admin/controller/school/activity/order/OrderCode.php index 5fceda3..097b61d 100644 --- a/application/admin/controller/school/activity/order/OrderCode.php +++ b/application/admin/controller/school/activity/order/OrderCode.php @@ -41,6 +41,10 @@ class OrderCode extends Backend { //当前是否为关联查询 $this->relationSearch = true; + + $this->searchFields = ["id","order.refund_error","order.refund_no","order.order_no","order.pay_no","code","miniurl","user.nickname","user.realname","user.mobile"]; + + //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { @@ -69,4 +73,39 @@ class OrderCode extends Backend return $this->view->fetch(); } + + + + + + /** + * 后台核销 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\BindParamException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function verification($ids = ''){ + $param = $this->request->param(); + if($this->request->isPost()){ + try{ + if(isset($param['ids']))$ids = $param['ids']; + $orderCode = \app\common\model\school\activity\order\OrderCode::where("id","=",$ids)->find(); + if(!$orderCode) throw new \Exception("核销码不存在!"); + //设置模拟资格 + $model = (new \app\common\model\school\activity\order\OrderCode); + $model->verification($orderCode["code"],0,false,'admin',$this->auth->id,true); + + + }catch (\Exception $e){ + $this->error($e->getMessage()); + } + $this->success('核销成功!'); + } + $row = $this->model->get($ids); + $this->view->assign('vo', $row); + return $this->view->fetch(); + } + } diff --git a/application/admin/controller/school/activity/order/OrderDetail.php b/application/admin/controller/school/activity/order/OrderDetail.php index 20dccd1..451e2eb 100644 --- a/application/admin/controller/school/activity/order/OrderDetail.php +++ b/application/admin/controller/school/activity/order/OrderDetail.php @@ -27,6 +27,7 @@ class OrderDetail extends Backend $this->view->assign("newList", $this->model->getNewList()); $this->view->assign("addTypeList", $this->model->getAddTypeList()); $this->view->assign("feelList", $this->model->getFeelList()); + $this->view->assign("cateListJson", json_encode((new \app\admin\model\school\activity\Activity)->getCateList(), JSON_UNESCAPED_UNICODE)); } @@ -45,6 +46,12 @@ class OrderDetail extends Backend { //当前是否为关联查询 $this->relationSearch = true; + + + $this->searchFields = ["id","order.refund_error","order.refund_no","order.order_no","order.pay_no","title","user.nickname","user.realname","user.mobile"]; + + + //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { @@ -63,7 +70,7 @@ class OrderDetail extends Backend foreach ($list as $row) { $row->getRelation('user')->visible(['nickname','realname','mobile','avatar']); - $row->getRelation('order')->visible(['order_no']); + $row->getRelation('order')->visible(['order_no',"totalprice","num"]); $row->getRelation('activity')->visible(['title']); } diff --git a/application/admin/controller/school/activity/order/SettleLog.php b/application/admin/controller/school/activity/order/SettleLog.php index 2c19d63..6884667 100644 --- a/application/admin/controller/school/activity/order/SettleLog.php +++ b/application/admin/controller/school/activity/order/SettleLog.php @@ -41,6 +41,10 @@ class SettleLog extends Backend { //当前是否为关联查询 $this->relationSearch = true; + + $this->searchFields = ["id","order.refund_error","order.refund_no","order.order_no","order.pay_no","touser.nickname","touser.realname","touser.mobile", "payuser.nickname","payuser.realname","payuser.mobile"]; + + //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { diff --git a/application/admin/controller/user/withdrawal/Userwithdrawal.php b/application/admin/controller/user/withdrawal/Userwithdrawal.php index 98cfb6e..ab20bbd 100644 --- a/application/admin/controller/user/withdrawal/Userwithdrawal.php +++ b/application/admin/controller/user/withdrawal/Userwithdrawal.php @@ -41,6 +41,10 @@ class Userwithdrawal extends Backend { //当前是否为关联查询 $this->relationSearch = true; + + $this->searchFields = ["id","name","bank_name","bank_user_name","id_number","user.nickname","user.realname","user.mobile"]; + + //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { diff --git a/application/admin/controller/user/withdrawal/UserwithdrawalLog.php b/application/admin/controller/user/withdrawal/UserwithdrawalLog.php index 4ede2c1..6dd5f66 100644 --- a/application/admin/controller/user/withdrawal/UserwithdrawalLog.php +++ b/application/admin/controller/user/withdrawal/UserwithdrawalLog.php @@ -43,6 +43,10 @@ class UserwithdrawalLog extends Backend { //当前是否为关联查询 $this->relationSearch = true; + + $this->searchFields = ["id","name","bank_name","bank_user_name","id_number","user.nickname","user.realname","user.mobile"]; + + //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { @@ -70,4 +74,84 @@ class UserwithdrawalLog extends Backend return $this->view->fetch(); } + + + + + + + /**提现审核 + * @return string + * @throws \think\Exception + * @throws \think\exception\DbException + */ + public function auths($ids = ""){ + + if($this->request->isPost()) + { + try{ + $params = $this->request->post("row/a"); + + + $auth_status = $params["status"]; + $reason = $params["reason"]; + $model = (new \app\common\model\user\withdrawal\UserwithdrawalLog); + $model->withdrawalReview($ids,$auth_status,$reason,true); + + }catch (\Throwable $e){ + $this->error($e->getMessage()); + } + + $this->success("已完成审核"); + } + + $row = $this->model->where(array('id'=>$ids))->find(); + if (!$row) { + $this->error(__('No Results were found')); + } + +// $row = $this->model->get($param['ids']); + $this->view->assign('row', $row); + return $this->view->fetch(); + } + + + + + + /**确认打款 + * @return string + * @throws \think\Exception + * @throws \think\exception\DbException + */ + public function paid($ids = ""){ + + if($this->request->isPost()) + { + try{ + $params = $this->request->post("row/a"); + + + $remark = $params["remark"]; + $model = (new \app\common\model\user\withdrawal\UserwithdrawalLog); + $model->paidAlready($ids,$remark,true); + + }catch (\Throwable $e){ + $this->error($e->getMessage()); + } + + $this->success("已完成审核"); + } + + $row = $this->model->where(array('id'=>$ids))->find(); + if (!$row) { + $this->error(__('No Results were found')); + } + +// $row = $this->model->get($param['ids']); + $this->view->assign('row', $row); + return $this->view->fetch(); + } + + } diff --git a/application/admin/lang/zh-cn/school/activity/order/order.php b/application/admin/lang/zh-cn/school/activity/order/order.php index 7a3cb47..3acbc9b 100644 --- a/application/admin/lang/zh-cn/school/activity/order/order.php +++ b/application/admin/lang/zh-cn/school/activity/order/order.php @@ -3,9 +3,9 @@ return [ 'Order_no' => '订单号', 'Pay_no' => '微信支付单号', - 'User_id' => '下单人用户id', - 'Activity_id' => '课程活动id', - 'Activity_order_detail_id' => '订单课程活动id', + 'User_id' => '下单人用户', + 'Activity_id' => '活动', + 'Activity_order_detail_id' => '订单活动', 'Beforeprice' => '订单优惠前金额', 'Totalprice' => '订单应付金额', 'Payprice' => '订单实付金额', @@ -66,11 +66,12 @@ return [ 'Createtime' => '创建时间', 'Updatetime' => '修改时间', 'Deletetime' => '删除时间', - 'User.nickname' => '昵称', - 'User.realname' => '真实姓名', - 'User.mobile' => '手机号', - 'User.avatar' => '头像', - 'Activity.title' => '标题', - 'Activity.images' => '轮播图', - 'Detail.title' => '标题' + 'User.nickname' => '下单人昵称', + 'User.realname' => '下单人真实姓名', + 'User.mobile' => '下单人手机号', + 'User.avatar' => '下单人头像', + 'Activity.title' => '活动标题', + 'Activity.images' => '活动轮播图', + 'Detail.title' => '活动标题', + 'Edit' => '详情' ]; diff --git a/application/admin/lang/zh-cn/school/activity/order/order_code.php b/application/admin/lang/zh-cn/school/activity/order/order_code.php index e94eb0f..4e5d39d 100644 --- a/application/admin/lang/zh-cn/school/activity/order/order_code.php +++ b/application/admin/lang/zh-cn/school/activity/order/order_code.php @@ -11,14 +11,14 @@ return [ 'Status 6' => '已核销', 'Set status to 6' => '设为已核销', 'Verificationtime' => '核销时间', - 'Verification_user_id' => '核销人用户id', + 'Verification_user_id' => '核销人ID', 'Verification_type' => '核销用户类型', 'Createtime' => '创建时间', 'Updatetime' => '修改时间', 'Deletetime' => '删除时间', 'Order.order_no' => '订单号', - 'User.nickname' => '昵称', - 'User.realname' => '真实姓名', - 'User.mobile' => '手机号', - 'User.avatar' => '头像' + 'User.nickname' => '核销人昵称', + 'User.realname' => '核销人真实姓名', + 'User.mobile' => '核销人手机号', + 'User.avatar' => '核销人头像' ]; diff --git a/application/admin/lang/zh-cn/school/activity/order/order_detail.php b/application/admin/lang/zh-cn/school/activity/order/order_detail.php index 4927579..3567b14 100644 --- a/application/admin/lang/zh-cn/school/activity/order/order_detail.php +++ b/application/admin/lang/zh-cn/school/activity/order/order_detail.php @@ -2,8 +2,8 @@ return [ 'User_id' => '发布用户', - 'Activity_order_id' => '活动订单id', - 'Activity_id' => '活动id', + 'Activity_order_id' => '活动订单', + 'Activity_id' => '活动', 'Title' => '标题', 'Images' => '轮播图', 'Address_city' => '城市选择', @@ -47,10 +47,12 @@ return [ 'Createtime' => '创建时间', 'Updatetime' => '修改时间', 'Deletetime' => '删除时间', - 'User.nickname' => '昵称', - 'User.realname' => '真实姓名', - 'User.mobile' => '手机号', - 'User.avatar' => '头像', - 'Order.order_no' => '订单号', - 'Activity.title' => '标题' + 'User.nickname' => '发布用户昵称', + 'User.realname' => '发布用户真实姓名', + 'User.mobile' => '发布用户手机号', + 'User.avatar' => '发布用户头像', + 'Order.order_no' => '下单订单号', + 'Activity.title' => '活动标题', + "Order.totalprice" => '订单总价', + 'Edit' => '详情' ]; diff --git a/application/admin/lang/zh-cn/school/activity/order/settle_log.php b/application/admin/lang/zh-cn/school/activity/order/settle_log.php index 04dab54..ba226bf 100644 --- a/application/admin/lang/zh-cn/school/activity/order/settle_log.php +++ b/application/admin/lang/zh-cn/school/activity/order/settle_log.php @@ -29,5 +29,18 @@ return [ 'User.realname' => '真实姓名', 'User.mobile' => '手机号', 'User.avatar' => '头像', - 'Third.openname' => '第三方会员昵称' + 'Third.openname' => '第三方会员昵称', + + + 'Payuser.nickname' => '支付用户昵称', + 'Payuser.realname' => '支付用户真实姓名', + 'Payuser.mobile' => '支付用户手机号', + 'Payuser.avatar' => '支付用户头像', + + + 'Touser.nickname' => '结算用户昵称', + 'Touser.realname' => '结算用户真实姓名', + 'Touser.mobile' => '结算用户手机号', + 'Touser.avatar' => '结算用户头像' + ]; diff --git a/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal.php b/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal.php index 314706a..016f5fc 100644 --- a/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal.php +++ b/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal.php @@ -8,6 +8,18 @@ return [ 'Createtime' => '创建时间', 'Updatetime' => '修改时间', 'Deletetime' => '删除时间', + 'Payuser.nickname' => '昵称', + 'Payuser.realname' => '真实姓名', + 'Payuser.mobile' => '手机号', + 'Payuser.avatar' => '头像', + + + 'Touser.nickname' => '昵称', + 'Touser.realname' => '真实姓名', + 'Touser.mobile' => '手机号', + 'Touser.avatar' => '头像', + + 'User.nickname' => '昵称', 'User.realname' => '真实姓名', 'User.mobile' => '手机号', diff --git a/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal_log.php b/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal_log.php index d91bfe7..4c359d8 100644 --- a/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal_log.php +++ b/application/admin/lang/zh-cn/user/withdrawal/userwithdrawal_log.php @@ -30,5 +30,6 @@ return [ 'User.nickname' => '昵称', 'User.realname' => '真实姓名', 'User.mobile' => '手机号', - 'User.avatar' => '头像' + 'User.avatar' => '头像', + 'Edit' => '详情' ]; diff --git a/application/admin/view/school/activity/activity/copy.html b/application/admin/view/school/activity/activity/copy.html new file mode 100644 index 0000000..191712a --- /dev/null +++ b/application/admin/view/school/activity/activity/copy.html @@ -0,0 +1,371 @@ +
+ +
+ +
+ + + + + (没找到用户则点击按钮创建用户后重新下拉框选用户) + 根据手机号生成用户 + + + +
+ +
+
+ +
+ +
+
+
+ +
+
+ +
+ + +
+ +
+
    +
    +
    + +
    + +
    + + + + (没找到{:__('Cate_ids')}则点击按钮创建{:__('Cate_ids')}后重新下拉框选{:__('Cate_ids')}) + {:__('Add')} + + +
    +
    + +
    + +
    + + + + (没找到退款策略则点击按钮创建退款策略后重新下拉框选退款策略) + 创建新退款策略 + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    +
    + + +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    + +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    + {foreach name="statusList" item="vo"} + + {/foreach} +
    + +
    +
    + + + + + + + + + + + + +
    + +
    + +
    +
    +
    + +
    + + + +
    +
    +
    + +
    + + + +
    +
    +
    + +
    + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    + {foreach name="authStatusList" item="vo"} + + {/foreach} +
    + +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + +
    diff --git a/application/admin/view/school/activity/order/order/edit.html b/application/admin/view/school/activity/order/order/edit.html index 43a87d4..21f6e27 100644 --- a/application/admin/view/school/activity/order/order/edit.html +++ b/application/admin/view/school/activity/order/order/edit.html @@ -1,60 +1,70 @@
    + {if condition="$row.refund_error"} +
    + +
    + + {$row.refund_error} +
    +
    + {/if} +
    - +
    - +
    - -
    -
    -
    - -
    - +
    + + + + + +
    - +
    - +
    - +
    - +
    - {foreach name="payTypeList" item="vo"} - + {/foreach} @@ -66,180 +76,186 @@
    {foreach name="statusList" item="vo"} - + {/foreach}
    + +
    + +
    + +
    +
    - +
    - -
    - {foreach name="beforeStatusList" item="vo"} - - {/foreach} -
    - +
    +
    + +
    + +
    +
    + + + + + + + + + + + + +
    {foreach name="serverStatusList" item="vo"} - + {/foreach}
    + + +
    - +
    - +
    - +
    - +
    - +
    - +
    -
    - -
    - -
    -
    -
    - -
    - -
    -
    -
    - -
    - -
    -
    -
    - -
    - -
    -
    - {:__('Key')} - {:__('Value')} -
    -
    {:__('Append')}
    - -
    + + + + + + + + + + + + + -
    -
    + +
    - +
    -
    - -
    - -
    -
    -
    - -
    - -
    - {foreach name="authStatusList" item="vo"} - - {/foreach} -
    + + + + + + + + + + + + + + + -
    -
    -
    - -
    - -
    -
    -
    - -
    - -
    -
    -
    - -
    - -
    -
    -
    - -
    - -
    -
    - {:__('Key')} - {:__('Value')} -
    -
    {:__('Append')}
    - -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -
    -
    -
    - -
    - -
    -
    + + + + + + + +
    - -
    -
    - + + + + + +
    diff --git a/application/admin/view/school/activity/order/order/index.html b/application/admin/view/school/activity/order/order/index.html index b80270c..e06839a 100644 --- a/application/admin/view/school/activity/order/order/index.html +++ b/application/admin/view/school/activity/order/order/index.html @@ -17,9 +17,9 @@
    - {:__('Add')} + {:__('Edit')} - {:__('Delete')} +
    diff --git a/application/admin/view/school/activity/order/order_code/index.html b/application/admin/view/school/activity/order/order_code/index.html index e2fae5c..6d6996d 100644 --- a/application/admin/view/school/activity/order/order_code/index.html +++ b/application/admin/view/school/activity/order/order_code/index.html @@ -17,25 +17,25 @@
    - {:__('Add')} - {:__('Edit')} - {:__('Delete')} - + + + + - + + + + + + + + {:__('Recycle bin')}
    diff --git a/application/admin/view/school/activity/order/order_detail/edit.html b/application/admin/view/school/activity/order/order_detail/edit.html index 5d8beb7..f1ed9a3 100644 --- a/application/admin/view/school/activity/order/order_detail/edit.html +++ b/application/admin/view/school/activity/order/order_detail/edit.html @@ -3,32 +3,32 @@
    - +
    - +
    - +
    - +
    - +
    @@ -38,113 +38,178 @@
      -
      - -
      -
      -
      -
      + + + + + +
      - + + + + + + +
      + + + + + + + + + + + + + + + + + +
      - +
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - + + + + + + +
      +
      - +
      + +
      +
      +
      + +
      - +
      + +
      - +
      - +
      +
      - +
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      - +
      - +
      - +
      - +
      - {foreach name="recommendList" item="vo"} {/foreach} @@ -156,7 +221,7 @@
      - {foreach name="hotList" item="vo"} {/foreach} @@ -168,7 +233,7 @@
      - {foreach name="newList" item="vo"} {/foreach} @@ -179,20 +244,20 @@
      - +
      - +
      - {foreach name="addTypeList" item="vo"} {/foreach} @@ -203,14 +268,14 @@
      - +
      - {foreach name="feelList" item="vo"} {/foreach} @@ -221,25 +286,25 @@
      - +
      - +
      - -
      -
      - + + + + + + diff --git a/application/admin/view/school/activity/order/order_detail/index.html b/application/admin/view/school/activity/order/order_detail/index.html index 3081d6e..ef76813 100644 --- a/application/admin/view/school/activity/order/order_detail/index.html +++ b/application/admin/view/school/activity/order/order_detail/index.html @@ -7,9 +7,9 @@ @@ -27,3 +27,6 @@
      + \ No newline at end of file diff --git a/application/admin/view/school/activity/order/order_log/index.html b/application/admin/view/school/activity/order/order_log/index.html index 5a715b9..a008600 100644 --- a/application/admin/view/school/activity/order/order_log/index.html +++ b/application/admin/view/school/activity/order/order_log/index.html @@ -17,25 +17,25 @@
      - {:__('Add')} - {:__('Edit')} - {:__('Delete')} - + + + + - + + + + + + + + - {:__('Recycle bin')} +
      diff --git a/application/admin/view/school/activity/order/settle_log/add.html b/application/admin/view/school/activity/order/settle_log/add.html index 9f6b84d..399774d 100644 --- a/application/admin/view/school/activity/order/settle_log/add.html +++ b/application/admin/view/school/activity/order/settle_log/add.html @@ -3,25 +3,25 @@
      - +
      - +
      - +
      - +
      diff --git a/application/admin/view/school/activity/order/settle_log/edit.html b/application/admin/view/school/activity/order/settle_log/edit.html index 13b21b2..50fbc84 100644 --- a/application/admin/view/school/activity/order/settle_log/edit.html +++ b/application/admin/view/school/activity/order/settle_log/edit.html @@ -3,25 +3,25 @@
      - +
      - +
      - +
      - +
      diff --git a/application/admin/view/school/activity/order/settle_log/index.html b/application/admin/view/school/activity/order/settle_log/index.html index 7383580..745f458 100644 --- a/application/admin/view/school/activity/order/settle_log/index.html +++ b/application/admin/view/school/activity/order/settle_log/index.html @@ -17,25 +17,25 @@
      - {:__('Add')} - {:__('Edit')} - {:__('Delete')} - + + + + - + + + + + + + + - {:__('Recycle bin')} +
      diff --git a/application/admin/view/user/withdrawal/userwithdrawal/add.html b/application/admin/view/user/withdrawal/userwithdrawal/add.html index 3d0dc81..7e20cb1 100644 --- a/application/admin/view/user/withdrawal/userwithdrawal/add.html +++ b/application/admin/view/user/withdrawal/userwithdrawal/add.html @@ -3,7 +3,13 @@
      - + + + + (没找到用户则点击按钮创建用户后重新下拉框选用户) + 根据手机号生成用户 + +
      diff --git a/application/admin/view/user/withdrawal/userwithdrawal/edit.html b/application/admin/view/user/withdrawal/userwithdrawal/edit.html index 7ec544c..cc2dc50 100644 --- a/application/admin/view/user/withdrawal/userwithdrawal/edit.html +++ b/application/admin/view/user/withdrawal/userwithdrawal/edit.html @@ -3,8 +3,17 @@
      - + + + + + (没找到用户则点击按钮创建用户后重新下拉框选用户) + 根据手机号生成用户 + + +
      +
      diff --git a/application/admin/view/user/withdrawal/userwithdrawal_log/add.html b/application/admin/view/user/withdrawal/userwithdrawal_log/add.html index a424aa1..91fd64f 100644 --- a/application/admin/view/user/withdrawal/userwithdrawal_log/add.html +++ b/application/admin/view/user/withdrawal/userwithdrawal_log/add.html @@ -51,7 +51,7 @@
      - +
      @@ -84,18 +84,18 @@
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      + + + + + + + + + + + +