This commit is contained in:
彭桃 2023-02-04 17:45:57 +08:00
parent cbeadb395b
commit bb60b24a35
20 changed files with 763 additions and 63 deletions

View File

@ -133,6 +133,18 @@ class Index extends BaseController
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=69')->sum('p.land_area');
// 荒地面积
$sum_waste_land_area = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=69')->sum('p.waste_land_area');
// 养殖面积
$breed_area = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=69')->sum('p.breed_area');
$hd_num = $sum_waste_land_area - $breed_area;
View::assign(
[
'totaluser' => $num,//User::where($whe)->count(),// 总用户数
@ -153,6 +165,8 @@ class Index extends BaseController
'sum_214' => $sum_214,
'sum_70' => $sum_70,
'sum_69' => $sum_69,
'sum_waste_land_area' => $hd_num<0 ?$hd_num:0,
'breed_area' => $breed_area,
]
);
return View();

View File

@ -26,8 +26,28 @@ class Notice extends BaseController
{
$this->model = new NoticeModel();
$this->uid = get_login_admin('id');
$this->adminInfo = get_login_admin();
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
$www['admin_id'] = $this->adminInfo['id'];
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where[] = ['village_id','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where[] = ['street_id','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where[] = ['area_id','=',$user_address['area_id']];
}else{
$where[] = ['village_id','=',$user_address['village_id']];
}
}else{
$where[] = ['village_id','=',''];
}
}else{
$where = [];
}
// 获取用户信息
$this->users = Db::table('fa_szxc_information_usermsg')->where('status',1)->field('user_id,name')->select();
$this->users = Db::table('fa_szxc_information_usermsg')->where('status',1)->where($where)->field('user_id,name')->select();
}
/**
* 数据列表
@ -37,7 +57,26 @@ class Notice extends BaseController
if (request()->isAjax()) {
$param = get_params();
$where = [];
if (isset($param['keywords'])){
$where[]=['title','like','%'.$param['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
$www['admin_id'] = $this->adminInfo['id'];
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where[] = ['village_id','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where[] = ['street_id','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where[] = ['area_id','=',$user_address['area_id']];
}else{
$where[] = ['village_id','=',$user_address['village_id']];
}
}else{
$where[] = ['village_id','=',''];
}
}
$list = $this->model->getNoticeList($where,$param);
foreach ($list as $k =>$v){
$list[$k]['user_name'] = Db::table('fa_szxc_information_usermsg')->where('user_id',$v['user_id'])->value('name');
@ -77,7 +116,11 @@ class Notice extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$adds=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->find();
$param['area_id']=$adds['area_id'];
$param['street_id']=$adds['street_id'];
$param['village_id']=$adds['village_id'];
$this->model->addNotice($param);
}else{
View::assign('users', $this->users);

View File

@ -26,6 +26,7 @@ class SzxcUserAuthentication extends BaseController
{
$this->model = new SzxcUserAuthenticationModel();
$this->uid = get_login_admin('id');
$this->adminInfo = get_login_admin();
}
/**
* 数据列表
@ -35,7 +36,26 @@ class SzxcUserAuthentication extends BaseController
if (request()->isAjax()) {
$param = get_params();
$where = [];
if (isset($param['keywords'])){
$where[]=['name','like','%'.$param['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
$www['admin_id'] = $this->adminInfo['id'];
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where[] = ['village_id','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where[] = ['street_id','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where[] = ['area_id','=',$user_address['area_id']];
}else{
$where[] = ['village_id','=',$user_address['village_id']];
}
}else{
$where[] = ['village_id','=',''];
}
}
$list = $this->model->getSzxcUserAuthenticationList($where,$param);
foreach ($list as $k=>$v){
$list[$k]['sh_time'] = date('Y-m-d H:i:s',$v['sh_time']);
@ -63,7 +83,11 @@ class SzxcUserAuthentication extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$adds=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->find();
$param['area_id']=$adds['area_id'];
$param['street_id']=$adds['street_id'];
$param['village_id']=$adds['village_id'];
$this->model->addSzxcUserAuthentication($param);
}else{
return view();

View File

@ -23,8 +23,8 @@ class Article extends BaseController
public function index($params)
{
$where['status']=1;
if (isset($params['keywords'])){
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -32,18 +32,19 @@ class Article extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}
$category_id =$params['category_id'];
if($category_id){
@ -96,6 +97,12 @@ class Article extends BaseController
$param['township']=$adds['street_id'];
$param['village']=$adds['village_id'];
$param['user_id']=$adds['user_id'];
if(empty($param['category_type'])){
$param['category_type'] = 0;
}
if(empty($param['end_time'])){
$param['end_time'] = date('Y-m-d H:i:s');
}
$res=Db::table('fa_article')->strict(false)->field(true)->insertGetId($param);
if ($res){
return to_assign(0,'操作成功',['aid'=>$res]);

View File

@ -0,0 +1,177 @@
<?php
namespace app\admin\controller\nk;
use app\admin\BaseController;
use think\facade\Db;
use think\facade\View;
/**
* 农产品结构
*
* @icon fa fa-circle-o
*/
class Products extends BaseController
{
/**
* 构造函数
*/
public function __construct()
{
$this->adminInfo = get_login_admin();
$this->url=[
'/admin/nk.products/index',
'/admin/nk.products/add',
'/admin/nk.products/edit',
'/admin/nk.products/del',
'/admin/nk.products/read',
];
}
/**
* 数据列表
*/
public function index()
{
if (request()->isAjax()) {
$params= get_params();
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]= ['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
$www['admin_id'] = $this->adminInfo['id'];
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where[] = ['village_id','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where[] = ['street_id','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where[] = ['area_id','=',$user_address['area_id']];
}else{
$where[] = ['village_id','=',$user_address['village_id']];
}
}else{
$where[] = ['village_id','=',''];
}
}
$total = Db::table('cms_agriculture_products')
->where($where)
->count();
$list = Db::table('cms_agriculture_products')
->withAttr('area_id',function ($value,$data){
return Db::table('fa_geo_area')->where('area_code',$data['area_id'])->value('area_name');
})
->withAttr('street_id',function ($value,$data){
return Db::table('fa_geo_street')->where('street_code',$data['street_id'])->value('street_name');
})
->withAttr('village_id',function ($value,$data){
return Db::table('fa_geo_village')->where('village_id',$data['village_id'])->value('village_name');
})
->withAttr('status',function ($value,$data){
if($value == 1){
return '正常';
}else{
return '禁用';
}
})
->where($where)
->page($params['page'])
->limit($params['limit'])
->order('id desc')
->select();
$result = ['total' => $total, 'data' => $list];
return table_assign(0, '', $result);
}
else{
return view('nk/products/index',['url'=>$this->url]);
}
}
public function add(){
if (request()->isAjax()) {
$param= get_params();
$adds=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->find();
$param['area_id']=$adds['area_id'];
$param['street_id']=$adds['street_id'];
$param['village_id']=$adds['village_id'];
$param['add_time']=date('Y-m-d H:i:s');
$param['title'] = Db::table('fa_szxc_planting_type')->where('id',$param['szxc_planting_type_id'])->value('name');
$res=Db::table('cms_agriculture_products')->strict(false)->field(true)->insertGetId($param);
if ($res){
return to_assign(0,'操作成功',['aid'=>$res]);
}
return to_assign(1, '操作失败,原因:'.$res);
}else{
View::assign('editor', get_system_config('other','editor'));
$szxc_planting_type = Db::table('fa_szxc_planting_type')->select();
View::assign('szxc_planting_type', $szxc_planting_type);
return view();
}
}
public function edit(){
$param= get_params();
if (request()->isAjax()) {
$param['title'] = Db::table('fa_szxc_planting_type')->where('id',$param['szxc_planting_type_id'])->value('name');
$res=Db::table('cms_agriculture_products')->where('id',$param['id'])->strict(false)->field(true)->update($param);
if ($res){
return to_assign();
}else{
return to_assign(1, '操作失败,原因:'.$res);
}
}else{
$id = isset($param['id']) ? $param['id'] : 0;
$detail = Db::table('cms_agriculture_products')->where('id',$id)->find();
View::assign('editor', get_system_config('other','editor'));
if (!empty($detail)) {
View::assign('detail', $detail);
$szxc_planting_type = Db::table('fa_szxc_planting_type')->select();
View::assign('szxc_planting_type', $szxc_planting_type);
return view();
}
else{
throw new \think\exception\HttpException(404, '找不到页面');
}
}
}
/**
* 查看信息
*/
public function read()
{
$param= get_params();
$id = isset($param['id']) ? $param['id'] : 0;
$detail = Db::table('cms_agriculture_products')->where('id',$id)->find();
if (!empty($detail)) {
View::assign('detail', $detail);
$szxc_planting_type = Db::table('fa_szxc_planting_type')->select();
View::assign('szxc_planting_type', $szxc_planting_type);
return view();
}
else{
throw new \think\exception\HttpException(404, '找不到页面');
}
}
/**
* 删除
*/
public function del()
{
$param= get_params();
$id = isset($param['id']) ? $param['id'] : 0;
$type = isset($param['type']) ? $param['type'] : 0;
$res = Db::table('cms_agriculture_products')->where('id',$id)->delete();
if ($res){
return to_assign();
}else{
return to_assign(1, '操作失败,原因:'.$res);
}
}
}

View File

@ -35,13 +35,14 @@ class User extends BaseController
{
if (request()->isAjax()) {
$mmm = [];
$map = [];
$post = get_params();
if (!empty($post['keywords'])) {
$mmm[] = ['m.name', 'LIKE', '%' . $post['keywords'] . '%'];
$map[] = ['m.name', 'LIKE', '%' . $post['keywords'] . '%'];
}
if (!empty($post['phone'])) {
$mmm[] = ['m.phone', 'LIKE', '%' . $post['phone'] . '%'];
$map[] = ['m.phone', 'LIKE', '%' . $post['phone'] . '%'];
}
//权限组信息
@ -71,14 +72,19 @@ class User extends BaseController
$mmm['brigade_id'] = $post['brigade_id'];
}
}
//权限组信息
$total = Db::table('fa_szxc_information_usermsg')
->alias('m')
->where($mmm)
->where($map)
->join(['fa_user' => 'u'], 'm.user_id=u.id')
->join(['fa_user_group' => 'g'], 'g.id=u.group_id')
->count();
$list = Db::table('fa_szxc_information_usermsg')
->alias('m')
->where($mmm)
->where($map)
->join(['fa_user' => 'u'], 'm.user_id=u.id')
->join(['fa_user_group' => 'g'], 'g.id=u.group_id')
->field('u.id,m.name,m.phone,u.avatar,u.group_id,u.status,m.gender,m.age,g.name group_name,m.householder_id')

View File

@ -32,8 +32,8 @@ class Article extends BaseController
{
if (request()->isAjax()) {
$params= get_params();
$where['status']=1;
if (isset($params['keywords'])){
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -41,16 +41,16 @@ class Article extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}

View File

@ -38,8 +38,8 @@ class Branch extends BaseController
{
if (request()->isAjax()) {
$params= get_params();
$where['status']=1;
if (isset($params['keywords'])){
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -47,16 +47,16 @@ class Branch extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}

View File

@ -39,8 +39,8 @@ class BranchPayList extends BaseController
{
if (request()->isAjax()) {
$params= get_params();
$where['status']=1;
if (isset($params['keywords'])){
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -48,16 +48,16 @@ class BranchPayList extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}

View File

@ -40,8 +40,8 @@ class BranchPayUser extends BaseController
{
if (request()->isAjax()) {
$params= get_params();
$where['status']=1;
if (isset($params['keywords'])){
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -49,16 +49,16 @@ class BranchPayUser extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}

View File

@ -39,8 +39,8 @@ class Info extends BaseController
{
if (request()->isAjax()) {
$params= get_params();
$where['status']=1;
if (isset($params['keywords'])){
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -48,16 +48,16 @@ class Info extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}

View File

@ -37,8 +37,8 @@ class Vote extends BaseController
{
if (request()->isAjax()) {
$params= get_params();
$where['status']=1;
if (isset($params['keywords'])){
$where[]= ['status','=',1];
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -46,16 +46,16 @@ class Vote extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}

View File

@ -38,7 +38,7 @@ class VoteComment extends BaseController
if (request()->isAjax()) {
$params= get_params();
$where=[];
if (isset($params['keywords'])){
if (isset($params['keywords']) && !empty($params['keywords'])){
$where[]=['title','like','%'.$params['keywords'].'%'];
}
if($this->adminInfo['position_id'] != 1){ //不是超级管理员
@ -46,16 +46,16 @@ class VoteComment extends BaseController
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
if ($user_address){
if($user_address['auth_range'] == 1){
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}elseif ($user_address['auth_range'] == 2){
$where['township'] = $user_address['street_id'];
$where[] = ['township','=',$user_address['street_id']];
}elseif ($user_address['auth_range'] == 3){
$where['county'] = $user_address['area_id'];
$where[] = ['county','=',$user_address['area_id']];
}else{
$where['village'] = $user_address['village_id'];
$where[] = ['village','=',$user_address['village_id']];
}
}else{
$where['village'] = '';
$where[] = ['village','=',''];
}
}

View File

@ -97,6 +97,10 @@
<div class="num-title">养殖</div>
<div class="blue">{$sum_216}</div>
</td>
<td>
<div class="num-title">荒地面积</div>
<div class="blue">{$sum_waste_land_area}</div>
</td>
</tr>
<tr>
<td>

View File

@ -0,0 +1,99 @@
{extend name="common/base"/}
{block name="style"}
<style type="text/css">
.editormd-code-toolbar select {
display: inline-block
}
.editormd li {
list-style: inherit;
}
.layui-td-gray{
width: 110px;
}
</style>
{/block}
<!-- 主体 -->
{block name="body"}
<form class="layui-form p-4">
<h3 class="pb-3">添加</h3>
<table class="layui-table layui-table-form">
<tr>
<td class="layui-td-gray">农作物<font>*</font></td>
<td colspan="3">
<div class="layui-col-md6">
<select name="szxc_planting_type_id" lay-verify="required" lay-search="">
<option value="" >请选择</option>
{volist name='szxc_planting_type' id='vo'}
<option value="{$vo.id}" >{$vo.name}</option>
{/volist}
</select>
</div>
</td>
</tr>
<tr>
<td class="layui-td-gray">简介<font>*</font></td>
<td colspan="6">
<textarea class="layui-textarea" name="synopsis"></textarea>
</td>
</tr>
<tr>
<td class="layui-td-gray">内容</td>
<td colspan="6">
<textarea class="layui-textarea" id="container_content" name="content"></textarea>
</td>
</tr>
</table>
<div class="pt-3">
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>
<button type="reset" class="layui-btn layui-btn-primary">重置</button>
</div>
</form>
{/block}
<!-- /主体 -->
<!-- 脚本 -->
{block name="script"}
<script>
const editorType = '{$editor}';
var moduleInit = ['tool', 'tagpicker', 'tinymce'];
function gouguInit() {
var form = layui.form, tool = layui.tool,laydate = layui.laydate;
var editor = layui.tinymce;
var edit = editor.render({
selector: "#container_content",
height: 500
});
//监听提交
form.on('submit(webform)', function (data) {
data.field.content = tinyMCE.editors['container_content'].getContent();
let callback = function (e) {
layer.msg(e.msg);
if (e.code == 0) {
setTimeout(function () {
parent.location.reload();
}, 1000);
}
}
tool.post('/admin/nk.products/add', data.field, callback);
return false;
});
//日期选择
laydate.render({
elem: '#formDate',
max: 7,
showBottom: false
});
}
</script>
{/block}
<!-- /脚本 -->

View File

@ -0,0 +1,108 @@
{extend name="common/base"/}
{block name="style"}
<style type="text/css">
.editormd-code-toolbar select {
display: inline-block
}
.editormd li {
list-style: inherit;
}
.layui-td-gray{
width: 110px;
}
</style>
{/block}
<!-- 主体 -->
{block name="body"}
<form class="layui-form p-4">
<h3 class="pb-3">编辑</h3>
<table class="layui-table layui-table-form">
<tr>
<td class="layui-td-gray">农作物<font>*</font></td>
<td colspan="3">
<div class="layui-col-md6">
<select name="szxc_planting_type_id" lay-verify="required" lay-search="">
<option value="" >请选择</option>
{volist name='szxc_planting_type' id='vo'}
<option value="{$vo.id}" {if $detail.szxc_planting_type_id==$vo.id} selected {/if}>{$vo.name}</option>
{/volist}
</select>
</div>
</td>
</tr>
<tr>
<td class="layui-td-gray">简介<font>*</font></td>
<td colspan="6">
<textarea class="layui-textarea" name="synopsis">{$detail.synopsis}</textarea>
</td>
</tr>
<tr>
<td class="layui-td-gray">内容</td>
<td colspan="6">
<textarea class="layui-textarea" id="container_content" name="content">{$detail.content}</textarea>
</td>
</tr>
</table>
<div class="pt-3">
<input type="hidden" name="id" value="{$detail.id}"/>
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>
<button type="reset" class="layui-btn layui-btn-primary">重置</button>
</div>
</form>
{/block}
<!-- /主体 -->
<!-- 脚本 -->
{block name="script"}
<script>
var moduleInit = ['tool', 'tagpicker', 'tinymce'];
function gouguInit() {
var form = layui.form, tool = layui.tool, tagpicker = layui.tagpicker,laydate = layui.laydate;
var editor = layui.tinymce;
var edit = editor.render({
selector: "#container_content",
height: 500
});
//上传缩略图
var upload_thumb = layui.upload.render({
elem: '#upload_btn_thumb',
url: '/admin/api/upload',
done: function (res) {
//如果上传失败
if (res.code == 1) {
layer.msg('上传失败');
return false;
}
//上传成功
$('#upload_box_thumb input').attr('value', res.data.filepath);
$('#upload_box_thumb img').attr('src', res.data.filepath);
}
});
//监听提交
form.on('submit(webform)', function (data) {
data.field.content = tinyMCE.editors['container_content'].getContent();
let callback = function (e) {
layer.msg(e.msg);
if (e.code == 0) {
tool.sideClose(1000);
}
}
tool.post("/admin/nk.products/edit", data.field, callback);
return false;
});
//日期选择
laydate.render({
elem: '#formDate',
max: 17,
showBottom: false
});
}
</script>
{/block}
<!-- /脚本 -->

View File

@ -0,0 +1,154 @@
{extend name="common/base"/}
<!-- 主体 -->
{block name="body"}
<div class="p-3">
<form class="layui-form gg-form-bar border-t border-x">
<div class="layui-input-inline" style="width:300px;">
<input type="text" name="keywords" placeholder="请输入标题" class="layui-input" autocomplete="off" />
</div>
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="searchform">提交搜索</button>
</form>
<table class="layui-hide" id="article" lay-filter="article"></table>
</div>
<script type="text/html" id="status">
<i class="layui-icon {{# if(d.status == 1){ }}layui-icon-ok{{# } else { }}layui-icon-close{{# } }}"></i>
</script>
<script type="text/html" id="is_home">
<i class="layui-icon {{# if(d.is_home == 1){ }}layui-icon-ok{{# } else { }}layui-icon-close{{# } }}"></i>
</script>
<script type="text/html" id="toolbarDemo">
<div class="layui-btn-container">
<span class="layui-btn layui-btn-sm" lay-event="add" data-title="添加">+ 添加</span>
</div>
</script>
<script type="text/html" id="barDemo">
<div class="layui-btn-group"><a class="layui-btn layui-btn-normal layui-btn-xs" lay-event="read">查看</a><a class="layui-btn layui-btn-xs" lay-event="edit">编辑</a><a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a></div>
</script>
{/block}
<!-- /主体 -->
<!-- 脚本 -->
{block name="script"}
<script>
const moduleInit = ['tool'];
function gouguInit() {
var table = layui.table,tool = layui.tool, form = layui.form;
layui.pageTable = table.render({
elem: '#article',
title: '列表',
toolbar: '#toolbarDemo',
url: '{$url[0]}',
page: true,
limit: 20,
cellMinWidth: 300,
cols: [
[
{
fixed: 'left',
field: 'id',
title: '编号',
align: 'center',
width:80,
},{
field: 'area_id',
title: '区县',
align: 'center',
width:120,
},{
field: 'street_id',
title: '乡镇',
align: 'center',
width:120,
},{
field: 'village_id',
title: '街道/村',
align: 'center',
width:120,
},{
field: 'title',
title: '农作物名称',
align: 'center',
width:150,
},{
field: 'synopsis',
title: '简介',
align: 'center',
width:150,
},{
field: 'add_time',
title: '添加时间',
align: 'center',
width:150,
},{
field: 'status',
title: '状态',
align: 'center',
width:100,
},{
fixed: 'right',
field: 'right',
title: '操作',
toolbar: '#barDemo',
align: 'center'
}
]
]
});
//监听表头工具栏事件
table.on('toolbar(article)', function(obj){
if (obj.event === 'add') {
tool.side('{$url[1]}');
return false;
}
});
//监听表格行工具事件
table.on('tool(article)', function(obj) {
var data = obj.data;
if (obj.event === 'read') {
tool.side('{$url[4]}?id='+obj.data.id);
}
else if (obj.event === 'edit') {
tool.side('{$url[2]}?id='+obj.data.id);
}
else if (obj.event === 'del') {
layer.confirm('确定要删除该记录吗?', {
icon: 3,
title: '提示'
}, function(index) {
let callback = function (e) {
layer.msg(e.msg);
if (e.code == 0) {
obj.del();
}
}
tool.delete('{$url[3]}', { id: data.id }, callback);
layer.close(index);
});
}
return false;
});
//监听搜索提交
form.on('submit(searchform)', function(data) {
layui.pageTable.reload({
where: {
keywords: data.field.keywords,
cate_id: data.field.cate_id
},
page: {
curr: 1
}
});
return false;
});
}
</script>
{/block}
<!-- /脚本 -->

View File

@ -0,0 +1,57 @@
{extend name="common/base"/}
{block name="style"}
<style>
.content-article img{max-width:88%!important; height:auto!important; margin:6px 0!important; border-radius:4px;}
.layui-td-gray{
width: 110px;
}
</style>
{/block}
<!-- 主体 -->
{block name="body"}
<div class="layui-form p-4">
<h3 class="pb-3">详情</h3>
<table class="layui-table layui-table-form">
<tr>
<td class="layui-td-gray">农作物<font>*</font></td>
<td colspan="3">
<div class="layui-col-md6">
<select name="szxc_planting_type_id" lay-verify="required" lay-search="" disabled>
<option value="" >请选择</option>
{volist name='szxc_planting_type' id='vo'}
<option value="{$vo.id}" {if $detail.szxc_planting_type_id==$vo.id} selected {/if}>{$vo.name}</option>
{/volist}
</select>
</div>
</td>
</tr>
<tr>
<td class="layui-td-gray">简介<font>*</font></td>
<td colspan="6">
{$detail.synopsis}
</td>
</tr>
<tr>
<td class="layui-td-gray">内容</td>
<td colspan="6">
{$detail.content|raw}
</td>
</tr>
</table>
</div>
{/block}
<!-- /主体 -->
<!-- 脚本 -->
{block name="script"}
<script>
var moduleInit = ['tool', 'tagpicker', 'tinymce'];
function gouguInit() {
var form = layui.form, tool = layui.tool, tagpicker = layui.tagpicker,laydate = layui.laydate;
}
</script>
{/block}
<!-- /脚本 -->

View File

@ -271,7 +271,8 @@
layui.pageTable.reload({
where: {
keywords: data.field.keywords,
cate_id: data.field.cate_id
cate_id: data.field.cate_id,
phone:data.field.phone
},
page: {
curr: 1

View File

@ -436,6 +436,12 @@ class User extends BaseController
$uid = JWT_UID;
$params['user_id'] = $uid;
$is_have = Db::table('cms_szxc_user_authentication')->where('user_id',$uid)->find();
$adds=Db::table('fa_szxc_information_useraddress')->where('user_id',JWT_UID)->find();
$params['area_id']=$adds['area_id'];
$params['street_id']=$adds['street_id'];
$params['village_id']=$adds['village_id'];
if($is_have){
if($is_have['status'] == 0){
$this->apiError('您的实名认证正在审核中','您的实名认证正在审核中');