You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
4.0 KiB
123 lines
4.0 KiB
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2018/4/8
|
|
* Time: 15:29
|
|
*/
|
|
|
|
/**
|
|
* 常态路演-楼层其他分类
|
|
*/
|
|
namespace app\home\controller;
|
|
use think\Db;
|
|
|
|
class Mpdepc extends Base
|
|
{
|
|
/**
|
|
* 路演查询集合
|
|
*/
|
|
public function mpdepc_list(){
|
|
$lists=Db::name('lypt')->where(['status'=>1])->order('create_time desc')->paginate(6,false,['query'=>get_query()]);
|
|
$show = $lists->render();
|
|
$this->assign('page',$show);
|
|
$this->assign("lists",$lists);
|
|
return $this->view->fetch(':roadshow');
|
|
}
|
|
|
|
/**
|
|
* 国有资产查询集合
|
|
*/
|
|
public function gyxm_list(){
|
|
$count =input('count');
|
|
$lc_gyxm=Db::name('lc_gyxm')->where(['gyxm_status'=>1,'gyxm_id'=>$count])->order('gyxm_sort,gyxm_time desc')->find();
|
|
$this->assign("list",$lc_gyxm);
|
|
return $this->view->fetch(':detailesculture_gyxm');
|
|
}
|
|
|
|
/**
|
|
*楼层
|
|
*/
|
|
public function lc_list(){
|
|
$count =input('count');
|
|
$this->assign("lb",$count);
|
|
if($count==12){
|
|
$this->assign("name","艺投资");
|
|
}else if($count==13){
|
|
$this->assign("name","艺资管");
|
|
}else if($count==1){
|
|
$this->assign("name","国有业务");
|
|
}else if($count==2){
|
|
$this->assign("name","文化企业债");
|
|
}else if($count==3){
|
|
$this->assign("name","文化产业板");
|
|
}else if($count==4){
|
|
$this->assign("name","文化资产托管");
|
|
}else if($count==5){
|
|
$this->assign("name","股权类服务");
|
|
}else if($count==6){
|
|
$this->assign("name","非股权金融类服务");
|
|
}else if($count==7){
|
|
$this->assign("name","其他综合服务");
|
|
}else if($count==14){
|
|
$this->assign("name","专家库及咨询");
|
|
}else if($count==15){
|
|
$this->assign("name","无形资产评估及企业信用评级");
|
|
}else if($count==8){
|
|
$this->assign("name","挂牌");
|
|
}else if($count==9){
|
|
$this->assign("name","托管");
|
|
}else if($count==10){
|
|
$this->assign("name","交易");
|
|
}else{
|
|
$this->assign("name","摘牌");
|
|
}
|
|
$lc_list=Db::name('lc_whcyb')->where(['whcyb_status'=>1,'whcyb_type'=>$count])->order('whcyb_sort,whcyb_time desc')->find();
|
|
$this->assign("list",$lc_list);
|
|
return $this->view->fetch(':detailesculture');
|
|
}
|
|
/**
|
|
* 当前显示页
|
|
* @return string
|
|
*/
|
|
public function page(){
|
|
$count =input('count');
|
|
$this->assign("lb",$count);
|
|
|
|
$lc_list=Db::name('lc_whcyb')->where(['whcyb_status'=>1,'whcyb_type'=>$count])->order('whcyb_sort,whcyb_time desc')->find();
|
|
$name='';
|
|
if($lc_list){
|
|
$name=$lc_list['whcyb_name'];
|
|
}
|
|
$this->assign('name',$name);
|
|
$this->assign("list",$lc_list);
|
|
return $this->view->fetch(':detailesculture');
|
|
}
|
|
|
|
//耧播掌柜金服详情跳转
|
|
|
|
public function zgwh(){
|
|
$count =input('count');
|
|
$id =input('id');
|
|
$this->assign("count",$count);
|
|
if($count==1){
|
|
$gg_list=Db::name('zgwhjf_gg')->where(['gg_status'=>1,'gg_id'=>$id])->find();
|
|
$this->assign("list",$gg_list);
|
|
return $this->view->fetch(':cult_zgwh');
|
|
}else if($count==2){
|
|
$sc_list=Db::name('zgwhjf_sc')->where(['sc_status'=>1,'sc_id'=>$id])->find();
|
|
$this->assign("list",$sc_list);
|
|
return $this->view->fetch(':cult_zgwh');
|
|
}else if($count==3){
|
|
$yp_list=Db::name('zgwhjf_yp')->where(['yp_status'=>1,'yp_id'=>$id])->find();
|
|
$this->assign("list",$yp_list);
|
|
return $this->view->fetch(':cult_zgwh');
|
|
}else{
|
|
$zgwhjf_ysth=Db::name('zgwhjf_ysth')->where(['ysth_status'=>1,'ysth_id'=>$id])->find();
|
|
$this->assign("list",$zgwhjf_ysth);
|
|
return $this->view->fetch(':cult_zgwh');
|
|
}
|
|
|
|
}
|
|
|
|
}
|