标签 内容 内容长度 优化建议
网页标题(Title) 江西电力职业技术学院官方网站 14 个字符 标题字符数量在合理范围
网页关键词(KeyWords) 关键字,获取失败 0 个字符 关键字数在合理范围
内容描述(Description) 内容描述,获取失败 0 个字符 描述内容长度在合理范围
页面 http://www.jxdlzy.com/ 检测结果
检测时间 2024-10-14 16:20:21
服务器IP 218.65.110.153
返回状态码 200
网页返回HEAD信息 HTTP/1.1 302
connection: close
Location: http://www.jxdlzy.com/site/main/index.html
Content-Language: en-US
Content-Length: 0
Date: Mon, 14 Oct 2024 08:20:17 GMT

HTTP/1.1 200
Transfer-Encoding: chunked
Date: Mon, 14 Oct 2024 08:20:19 GMT

网页代码查看
<!DOCTYPE html>
<html id="htmlId"><!--style="filter: grayscale(100%)" 一键变成黑白样式-->
<head>
	<meta charset="utf-8">
	<title>江西电力职业技术学院官方网站</title>
	<script src="/static/plugins/vue/2.6.11/vue.js"></script>
<script src="/static/plugins/element-ui/2.12.0/index.js"></script>
<link rel="stylesheet" type="text/css" href="/static/plugins/iconfont/1.0.0/iconfont.css" />
<link rel="stylesheet" type="text/css" href="/static/plugins/element-ui/2.12.0/index.css">
<script src="/static/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<script src="/static/plugins/ms/1.0.0/ms.util.js"></script>
<script type="text/babel">$(function(){
    var resize = function(){
        var winHeight = $(window).height();
        $(".scrollbar-container").height(winHeight);
    }
    resize();
    window.onresize = resize;
})


/**
 *自定义vue element-ui组件集合,需要配合vue及element-ui使用
 *
 */
window.commonFunObj = {
    getSiteLink:function(site){
        if(site.startsWith('http://')){
            return site;
        }else{
            return '/site/'+site;
        }
    }
    ,getCaLink:function(site,category){
        if(category==170){
            return this.getSiteLink(site)+'/index.html';
        }else{
            return this.getSiteLink(site)+'/'+category+'/index.html';
        }
    },getCaLink1:function(site,category,appId){//子站点
        return this.getSiteLink(site)+"/"+appId+'/index1.html';
    }
    ,getArticleLink:function(site,category,article){
        return this.getSiteLink(site)+'/'+category+'/'+article+'/index.html';
    }
}

/**
 * 普通文章卡片组件
 */
Vue.component('custom-normal-card',{
    props:["categoryinfo","app"]
    ,template:'<el-card v-if="categoryinfo" class="custom-normal-card">' +
        /*'<div slot="header" class="clearfix">' +
            '<el-row>'+
                '<el-col :span="20">'+
                    '<span>{{categoryinfo.entity.categoryTitle}}</span>' +
                '</el-col>'+
                '<el-col :span="4" style="text-align: right">'+
                    '<el-link target="_blank" type="primary" :href="getCaLink(app.appUrl,categoryinfo.entity.id)">更多></el-link>'+
                '</el-col>'+
            '</el-row>'+
        '</div>'+*/
        '<ul class="news-wrapper" >' +
            '<li class="article-li" style="width:100%;height:44px;line-height: 44px;margin-top: 2px;" v-for="(item,index) of categoryinfo.articles" :key="index" v-if="index<9">' +
                '<el-link v-if="item.topState==0" target="_blank" style="float:left;width:88%;display:inline-block;" :href="getArticleLink(app.appUrl,categoryinfo.entity.id,item.id)">{{item.contentTitle | ellipsis}}</el-link>' +
                '<el-link v-else="item.topState==1" target="_blank" style="float:left;width:88%;display:inline-block;" :href="getArticleLink(app.appUrl,categoryinfo.entity.id,item.id)"><span style="color: #ff0000;font-size:10px">[置顶]&nbsp;</span>{{item.contentTitle | ellipsis}}</el-link>' +
                '<span style="float:right;width:11%;">{{getDateStr(item.contentDatetime)}}</span>'+
            '</li>'+
        '</ul>'+
        '</el-card>'
    ,methods:{
        getDateStr:function(time){
            return ms.util.date.fmt(time,"MM-dd");
        }
        ,getCaLink:function(site,category){
            return commonFunObj.getCaLink(site,category);
        }
        ,getArticleLink:function(site,category,article){
            return commonFunObj.getArticleLink(site,category,article);
        }
    },
    filters: {
        ellipsis(value) {
            if (!value) return "";
            if (value.length > 20) {
                return value.slice(0, 20) + "...";
            }
            return value;
        }
    }
})
/**
 * 普通文章卡片组件改造
 */
Vue.component('custom-normal-card2',{
    props:["categoryslist","app"]
    ,template:'<el-card v-if="categoryslist" class="custom-normal-card">' +
        '<ul class="news-wrapper" >' +
            '<li class="article-li" style="width:100%;height:44px;line-height: 44px;margin-top: 2px;" v-for="(item,index) of categoryslist.articles" :key="index" v-if="index<9">' +
                '<el-link v-if="item.topState==0" target="_blank" style="float:left;width:88%;display:inline-block;" :href="getArticleLink(app.appUrl,categoryslist.entity.id,item.id)">{{item.contentTitle | ellipsis}}</el-link>' +
                '<el-link v-else="item.topState==1" target="_blank" style="float:left;width:88%;display:inline-block;" :href="getArticleLink(app.appUrl,categoryslist.entity.id,item.id)"><span style="color: #ff0000;font-size:10px">[置顶]&nbsp;</span>{{item.contentTitle | ellipsis}}</el-link>' +
                '<span style="float:right;width:11%;">{{getDateStr(item.contentDatetime)}}</span>'+
            '</li>'+
        '</ul>'+
        '</el-card>'
    ,methods:{
        getDateStr:function(time){
            return ms.util.date.fmt(time,"MM-dd");
        }
        ,getCaLink:function(site,category){
            return commonFunObj.getCaLink(site,category);
        }
        ,getArticleLink:function(site,category,article){
            return commonFunObj.getArticleLink(site,category,article);
        }
    },
    filters: {
        ellipsis(value) {
            if (!value) return "";
            if (value.length > 15) {
                return value.slice(0, 15) + "...";
            }
            return value;
        }
    }
})
//媒体报道
Vue.component('custom-normal-card1',{
    props:["categoryinfo","app"]
    ,template:'<el-card v-if="categoryinfo" class="custom-normal-card">' +
        '<ul style="width:100%;text-align: left;margin:0;padding:0;list-style-type: none;" >' +
        '<li style="width:50%;float:left;margin-top: 19px;padding-right: 10px;" v-for="(item,index) of categoryinfo.articles" :key="index" v-if="index<8">' +
        '<a :href="item.contentUrl" class="el-link el-link--default is-underline" target="_blank">' +
        '<span style="line-height: 40px;text-align: center;color: #ffffff;background: #cb3a26;height: 40px;float:left;width:120px;display:inline-block;">{{item.contentUrlName}}</span>' +
        '<span style="width:160px;float:left;margin-left: 10px;font-style: normal;">{{item.contentTitle | ellipsis}}</span>'+
        '</a>'+

        /*'<el-link target="_blank" style="line-height: 40px;text-align: center;color: #fff;background: #cb3a26;height: 40px;float:left;width:39%;display:inline-block;" :href="getArticleLink(app.appUrl,categoryinfo.entity.id,item.id)">{{getDateStr(item.contentDatetime)}}</el-link>' +
        '<i style="float:left;margin-left: 10px;font-style: normal;">{{item.contentTitle.substring(0,180)}}</i>'+*/
        '</li>'+
        '</ul>'+
        '</el-card>'
    ,methods:{
        getDateStr:function(time){
            return ms.util.date.fmt(time,"MM-dd");
        }
        ,getCaLink:function(site,category){
            return commonFunObj.getCaLink(site,category);
        }
        ,getArticleLink:function(site,category,article){
            return commonFunObj.getArticleLink(site,category,article);
        }
    },
    filters: {
        ellipsis(value) {
            if (!value) return "";
            if (value.length > 15) {
                return value.slice(0, 15) + "...";
            }
            return value;
        }
    }
})
/**
*图片风采集组件
 */
Vue.component("custom-img-card",{
    props:['imglist','title']
    ,template:'<el-card class="custom-img-card">' +
           /* '<div slot="header" class="clearfix">' +
                '<el-row>'+
                '<el-col :span="20">'+
                '<span>{{title}}</span>' +
                '</el-col>'+
                '<el-col :span="4" style="text-align: right">'+
                '<el-link target="_blank" type="primary" href="">更多></el-link>'+
                '</el-col>'+
                '</el-row>'+
            '</div>' +*/
            '<ul>' +
                '<li v-for="(item,index) in imglist" :key="index">' +
                    '<el-image :src="item.imgUrl"></el-image>' +
                '</li>' +
            '</ul>' +
        '</el-card>'
})

Vue.component("custom-img-card1",{
    props:['imglist','title']
    ,template:
        /* '<div slot="header" class="clearfix">' +
             '<el-row>'+
             '<el-col :span="20">'+
             '<span>{{title}}</span>' +
             '</el-col>'+
             '<el-col :span="4" style="text-align: right">'+
             '<el-link target="_blank" type="primary" href="">更多></el-link>'+
             '</el-col>'+
             '</el-row>'+
         '</div>' +*/
        '<div id="demo"><div id="indemo"><div id="demo1">' +
        '' +
        '<el-link :href="item.url" target="_blank" v-for="(item,index) in imglist" :key="index">'+
            '<img style="padding: 1px;" :src="item.imgUrl" width="390" height="245" ></img>' +
        /*'<p style="width: 100%;height: 30px; line-height: 30px; position: relative; bottom: 30px; text-align: center; color: #fff; ' +
        'background: rgba(0,0,0,0.5);">不忘初心牢记使命</p>'+*/
        '</el-link>'+
        '' +
        '</div></div><div id="demo2"></div></div>'
})

/**
 * 导航标签
 */
Vue.component('custom-menuitem',{
    props:["menuItem"]
    ,template:'<el-menu-item v-if="menuItem.children.length==0||!menuItem.children" :index="menuItem.id">{{menuItem.menuName}}</el-menu-item>'+
        '<el-submenu :popper-append-to-body="false" v-else-if="menuItem.id!=29" :index="menuItem.id" :id="menuItem.id">' +
        ' <template slot="title">{{menuItem.menuName}}</template>' +
        '<custom-menuitem v-for="(item,index) in menuItem.children" :key="item.id" :menuItem="item"></custom-menuitem>'+
        '</el-submenu>'
})

/**
 * 导航组件
 */
Vue.component('custom-menu1', {
    props:["menudata","mode","site","colors","active"]
    ,computed:{
        customColors:function(){
            return this.colors?this.colors:{};
        }
    }
    /*,template: '<el-menu :default-active="active" :mode="mode" class="el-menu-demo" :background-color="this.customColors.backgroundColor"' +
        ' @select="this.select" :text-color="this.customColors.textColor" :active-text-color="this.customColors.activeTextColor" >' +
        '<custom-menuitem v-for="(item,index) in menudata" :key="item.id" :index="item.id" :menuItem="item" v-if="index<11"></custom-menuitem>'+
        '</el-menu>'+*/
    ,template: '<div class="content"> ' +
        '<div class="nav-item" v-for="(item,index) in menudata" :key="item.id" :index="item.id" :menuItem="item">' +
            '<a v-if="item.id==170" @click = "select(item.id)">{{item.menuName}}</a> ' +
            '<a v-else="item.id!=170" href="#">{{item.menuName}}</a>'+
            '<ul v-if="item.children && item.children.length>0"> ' +
                '<li v-for="(v,index) in item.children" :key="v.id" :index="v.id" ><a @click = "select(v.id)">{{v.menuName}}</a></li> ' +
            '</ul> ' +
        '</div> ' +
    '</div>'
    ,methods:{
        select:function(index){
            if(index==170){
                location.href=window.commonFunObj.getCaLink(this.site,170);
            }else if(index==84){//电力工程系
                window.open(window.commonFunObj.getCaLink1(this.site,index,2));
            }else if(index==83){//供用电工程系
                window.open(window.commonFunObj.getCaLink1(this.site,index,3));
            }else if(index==209){//动力工程系
                window.open(window.commonFunObj.getCaLink1(this.site,index,4));
            }else if(index==210){//信息工程系
                window.open(window.commonFunObj.getCaLink1(this.site,index,5));
            }else if(index==211){//公共教育系
                window.open(window.commonFunObj.getCaLink1(this.site,index,6));
            }else if(index==212){//招生网
                window.open(window.commonFunObj.getCaLink1(this.site,index,7));
            }else if(index==213){//就业网
                window.open(window.commonFunObj.getCaLink1(this.site,index,8));
            }else if(index==216){//教育教学网
                window.open(window.commonFunObj.getCaLink1(this.site,index,9));
            }else if(index==217){//培训服务网
                window.open(window.commonFunObj.getCaLink1(this.site,index,10));
            }else if(index==218){//信息公开网
                window.open(window.commonFunObj.getCaLink1(this.site,index,11));
            }else if(index==41){//成果网
                window.open(window.commonFunObj.getCaLink1(this.site,index,12));
            }else{
                //window.open(window.commonFunObj.getCaLink(this.site,index));
                location.href = window.commonFunObj.getCaLink(this.site,index);
            }
        }
    }
})
Vue.component('custom-menu2', {
    props:["menudata","mode","site","colors","active"]
    ,computed:{
        customColors:function(){
            return this.colors?this.colors:{};
        }
    }
    ,template: '<el-menu :default-active="active" :mode="mode" class="el-menu-demo" :background-color="this.customColors.backgroundColor"' +
        ' @select="this.select" :text-color="this.customColors.textColor" :active-text-color="this.customColors.activeTextColor" >' +
        '<custom-menuitem v-for="(item,index) in menudata" :key="item.id" :index="item.id" :menuItem="item" v-if="index<11"></custom-menuitem>'+
        '</el-menu>'
    ,methods:{
        select:function(index){
            if(index==170){
                location.href=window.commonFunObj.getCaLink(this.site,170);
            }else{
                //window.open(window.commonFunObj.getCaLink(this.site,index));
                location.href = window.commonFunObj.getCaLink(this.site,index);
            }
        }
    }
})
/**
 * 走马灯组件
 */
Vue.component('custom-carousel',{
    computed:{
        textStyle:function(){
            return {
                margin: 0
                ,lineHeight:0
                ,height:this.cheight
                ,width:'100%'
                ,textAlign:'center'
            };
        }
        ,cheight:function(){
            var t = this.height||'200px';
            return t;
        }
    }
    ,props:["carousedata","height"]
    ,template:'<el-carousel class="custom-carousel" :height="cheight" :interval="3000" arrow="always">' +
        '    <el-carousel-item v-for="(item,index) in carousedata.slice(0,5)" :key="index">' +
        '      <el-link :style="textStyle" :href="item.url" target="_blank"><img fit="fill" width="100%" height="405px" :src="item.imgUrl"></img></el-link>' +
        '    </el-carousel-item>' +
        '  </el-carousel>'
})

Vue.component('custom-img-list',{
    props:['imglist']
    ,data:function(){
        return {
            currentIndex:0
            ,size:1
            ,small:true
        }
    }
    ,computed:{
        length:function(){
            if(this.imglist){
                return this.imglist.length;
            }else{
                return 0;
            }
        }
        ,currentItem:function(){
            if(this.imglist){
                return this.imglist[this.currentIndex];
            }else{
                return {};
            }
        }
    }
    ,mounted:function(){
        setInterval(()=>{
            if(this.imglist){
                if(this.currentIndex<this.imglist.length-1){
                    this.currentIndex++;
                }else{
                    this.currentIndex = 0;
                }
            }
        },5000)
    }
    ,methods:{
        changeCurrent:function(e){
            this.currentIndex = e-1;
        }
    }
    ,template:'<div class="custom-img-list">' +
        '<el-link target="_blank" :href="currentItem.url"><img :src="currentItem.imgUrl" width="390px" height="289px"></img></el-link>' +
        '<el-pagination background' +
        '    layout="pager"' +
        '    :total="length" :page-size="size" :small="small" @current-change="changeCurrent">' +
        '  </el-pagination>' +
        '</div>'
})
//首页第一个轮播图
Vue.component('custom-img-list1',{
    computed:{
        textStyle:function(){
            return {
                margin: 0
                ,lineHeight:0
                ,height:this.cheight
                ,width:'100%'
                ,textAlign:'center'
            };
        }
        ,cheight:function(){
            var t = this.height||'430px';
            return t;
        }
    }
    ,props:["carousedata","height"]
    ,template:'<el-carousel class="custom-carousel" :height="cheight" :interval="3000" arrow="always">' +
        '    <el-carousel-item v-for="(item,index) in carousedata.slice(0,6)" :key="index">' +
        '       <el-link v-if="item.url==\'\'||item.url==null" :style="textStyle" target="_blank" ><img fit="fill" width="100%" height="430px" :src="item.imgUrl"></img></el-link>' +
        '      <el-link v-else="item.url!=null&&item.url!=\'\'" :style="textStyle" :href="item.url" target="_blank"><img fit="fill" width="100%" height="430px" :src="item.imgUrl"></img></el-link>' +
        '    </el-carousel-item>' +
        '  </el-carousel>'/*
    ,template:
        '<div class="lun-item active" v-for="(item,index) in carousedata.slice(0,5)" :key="index">' +
        '<el-link :style="textStyle" :href="item.url" target="_blank"><img :src="currentItem.imgUrl" alt="" width="100%" height="100%" /></el-link> ' +
        '<span class="title">学院开展“人人出彩 技能强国”职业教学周活动 。。。</span>'+
        '</div> '*/
})
Vue.component('custom-imglist-card',{
    props:['list','title']
    ,template:'<el-card class="custom-imglist-card">' +
        /*'<div slot="header" class="clearfix">' +
        '<el-row>'+
        '<el-col :span="20">'+
        '<span>{{title}}</span>' +
        '</el-col>'+
        '<el-col :span="4" style="text-align: right">'+
        '<el-link target="_blank" type="primary" href="">更多></el-link>'+
        '</el-col>'+
        '</el-row>'+
        '</div>' +*/
        /*'<el-row :gutter="20">' +*/
        '<ul class="listBox">' +
        '<li v-for="(item,index) in list" :key="index" v-if="index<4"><a :href="item.url" target="_blank"><img width="172" height="69" :src="item.imgUrl" alt=""></a></li>'+
        '</ul>' +
        /*'</el-row>'+*/
        '</el-card>'
})
Vue.component('custom-imglist-card1',{
    props:['list','title']
    ,template:'<el-card class="custom-imglist-card">' +
        /*'<div slot="header" class="clearfix">' +
        '<el-row>'+
        '<el-col :span="20">'+
        '<span>{{title}}</span>' +
        '</el-col>'+
        '<el-col :span="4" style="text-align: right">'+
        '<el-link target="_blank" type="primary" href="">更多></el-link>'+
        '</el-col>'+
        '</el-row>'+
        '</div>' +*/
        /*'<el-row :gutter="20">' +*/
        '<ul class="listBox">' +
        '<li v-for="(item,index) in list" :key="index"><a :href="item.url" target="_blank"><img width="175" height="115" :src="item.imgUrl" alt=""></a></li>'+
        '</ul>' +
        /*'</el-row>'+*/
        '</el-card>'
})



</script>
<script src="/static/js/browser.min.js"></script>
<script src="/static/js/polyfill.min.js"></script>
<link rel="icon" href="/static/favicon.ico" type="x-icon">
<link rel="stylesheet" type="text/css" href="/static/css/index1.css" />
<link rel="stylesheet" type="text/css" href="/static/css/common.css" />
<link rel="stylesheet" type="text/css" href="/static/theme/default/css/site.css" />
<link rel="stylesheet" type="text/css" href="/static/theme/default/css/content.css" />


<style>
html,body{
    margin:0;
    padding:0;
}
.news_list_title p {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #00726c;
    min-height: 60px;
}

.news_list_title i {
    float: left;
    font-style: normal;
    color: #999;
    padding-left: 25px;
    background: url(/static/img/date1.png) no-repeat left;
    margin-right: 20px;
}

.news_list_title i:last-child {
    background: url(/static/img/see.png) no-repeat left;
}

.news_list_title i {
    float: left;
    font-style: normal;
    color: #999;
    padding-left: 25px;
    background: url(/static/img/date1.png) no-repeat left;
    margin-right: 20px;
}

ul, ol {
    list-style: none outside none;
}

h1, h2, h3, h4, h5, h6, p, figure, form, blockquote{
    margin:0;
}

ul.news_list li {
    width: 100%;
    margin-top: 20px;
    float: left;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
</style></head>
<body>
<div id="img" style="position: absolute; z-index: 10;left: 311; top: 815;visibility :hidden;"
	 onmouseover="clearInterval(interval)" onmouseout="interval = setInterval('changePos()', delay)" align="right">
	<img style="width:100%;height:100%;z-index: 10; cursor:pointer" src="/userfiles/upload/appLogo/1682411925711.png"
		 onclick="javascript:window.open('http://www.jxec.edu.cn/');" />
	<div style="background-color:#f5f5f5;padding:1px;width: 30px;"><a href="javascript:showimagecloseu0();" style="color: #333333">关闭</a></div>
</div>
<div id="img1" style="position: absolute; z-index: 10;left: 311; top: 815;visibility :hidden;"
	 onmouseover="clearInterval(interval1)" onmouseout="interval1 = setInterval('changePos1()', delay)" align="right">
	<img style="width:100%;height:100%;z-index: 10; cursor:pointer" src=""
		 onclick="javascript:window.open('http://218.65.96.13:9000/dzxx.html');" />
	<div style="background-color:#f5f5f5;padding:1px;width: 30px;"><a href="javascript:showimagecloseu01();" style="color: #333333">关闭</a></div>
</div>
<div id="img2" style="position: absolute; z-index: 10;left: 311; top: 815;visibility :hidden;"
	 onmouseover="clearInterval(interval2)" onmouseout="interval2 = setInterval('changePos2()', delay)" align="right">
	<img style="width:100%;height:100%;z-index: 10; cursor:pointer" src=""
		 onclick="javascript:window.open('');" />
	<div style="background-color:#f5f5f5;padding:1px;width: 30px;"><a href="javascript:showimagecloseu02();" style="color: #333333">关闭</a></div>
</div>
<div id="siteMain" class="scrollbar-container" style="z-index: -1">
<el-container >
<!-- header -->

<div class="header-wrapper"> </div>
<el-header style="padding:0;width: 100%;height:auto;">
<!-- nav -->
<div class="nav-wrapper">
    <custom-menu1 :menudata="menuData" site="http://www.jxec.edu.cn/site/main" class="el-menu-demo" mode="horizontal">
    </custom-menu1>
</div>
</el-header>	<div class="diaodu-wrapper clearfix">
		<div class="lun-wrapper">
			<!-- content -->
			<div class="lun-content" id="lunbo-hook">
				<el-row class="top-row">
					<el-col>
						<custom-img-list1 :carousedata="carousedata"></custom-img-list1>
					</el-col>
				</el-row>
			</div>
		</div>
		<div class="riglist">
			<h5 class="titNews"> <span>学院要闻</span> <a id="aid" href="http://www.jxec.edu.cn/site/main/150/index.html" target="_blank" class="more" title="更多">更多</a></h5>
			<custom-normal-card :app="app" :categoryinfo="categorys[150]"></custom-normal-card>
		</div>
	</div>

	<!-- content02 -->
	<div class="combine-wrapper clearfix">
		<div class="content">
			<div class="left-link">
				<h5 class="titNews1"> <span>媒体聚焦</span> <a href="http://www.jxec.edu.cn/site/main/87/index.html" class="more" target="_blank" title="更多">更多</a></h5>
				<custom-normal-card :app="app" :categoryinfo="categorys[87]"></custom-normal-card>
			</div>
			<div class="left-link">
				<h5 class="titNews1"> <span>校园动态</span> <a href="http://www.jxec.edu.cn/site/main/115/index.html" class="more" title="更多">更多</a></h5>
				<custom-normal-card :app="app" :categoryinfo="categorys[115]"></custom-normal-card>
			</div>
			<div class="left-link left-link01">
				<h5 class="titNews1"> <span>视频看台</span> <a href="http://www.jxec.edu.cn/site/main/375/index.html" class="more" title="更多">更多</a></h5>
				<custom-imglist-card1 :list="imgList" ></custom-imglist-card1>
				<h5 class="titNews1"> <span>专题网站</span> <a @click = "ztwz()" class="more" target="_blank" title="更多">更多</a></h5>
				<custom-imglist-card :list="ztimglist" ></custom-imglist-card>
			</div>
		</div>
		<div class="box">
			<h5 class="titNews1"> <span>校园风光</span> <a @click = "select()" class="more" title="更多">更多</a></h5>
			<div class="picslide">
				<div id="scrollBox">
					<div id="innerdiv">
						<div id="con1">
							<custom-img-card1 :imglist="imglist2" ></custom-img-card1>
						</div>
						<div id="con2">
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
<div class="footer-wrapper">
    <div class="content">
        <div class="fota1 fota101">
            <h6>联系我们</h6>
            <p>
                版权所有 © 江西电力职业技术学院<br>
                学校地址:江西省南昌市昌北经济开发区海棠南路666号<br>
                邮政编码:330032<br>
                ICP备案号:赣ICP备10000990号
            </p>
        </div>
        <div class="fota1">
            <h6>友情链接</h6>
            <p>
                <a href="http://www.moe.gov.cn/" target="_blank">中华人民共和国教育部</a>
                <a href="http://jyt.jiangxi.gov.cn" target="_blank">江西教育网</a>
                <a href="http://jxwmw.cn/" target="_blank">江西文明网</a>
                <a href="http://nc.wenming.cn" target="_blank">南昌文明网</a>
            </p>
        </div>
        <div class="fota1 fota103">
            <ul>
                <li style="dispaly:inline;">
                    <img src="../../static/img/wxjj.jpg" style="width: 82px;height: 82px">
                    <p>微信公众号</p>
                </li>
                <li style="dispaly:inline;">
                    <img src="../../static/img/wbjj.png" style="width: 82px;height: 82px">
                    <p>官方微博</p>
                </li>
                <li style="dispaly:inline;">
                    <img src="../../static/img/zhxy.png" style="width: 82px;height: 82px;cursor: pointer" onclick="zhxy('127.0.0.1');">
                    <p>智慧校园</p>
                </li>
                <li style="dispaly:inline;">
                    <img src="../../static/img/rjxz.png" style="width: 82px;height: 82px;cursor: pointer" onclick="down();">
                    <p>软件下载</p>
                </li>
                <li style="dispaly:inline;">
                    <div style="float: left; margin-top: -80px; margin-left: -50px;">
                        <span>
                            <a href="https://bszs.conac.cn/sitename?method=show&amp;id=20D92F852DDB4923E053022819AC2483" target="_blank">
                                <img src="https://dcs.conac.cn/image/blue.png" style="height: 110px;width: 110px">
                            </a>
                        </span>
                    </div>
                </li>
            </ul>
        </div>
    </div>
</div></el-container>
</div>
<script language="javascript">
	function zhxy(ip){
		debugger;
		/*if(ip=='218.65.96.2'||ip=='218.65.96.3'||ip=='218.65.96.4'||ip=='218.65.96.5'
				||ip=='218.65.96.6'||ip=='218.65.96.7'||ip=='218.65.96.8'||ip=='218.65.96.9'
				||ip=='218.65.96.10'||ip=='218.65.96.11'||ip=='218.65.96.12'||ip=='218.65.96.13'
				||ip=='218.65.96.14'||ip=='218.65.96.15'||ip=='218.65.96.16'||ip=='218.65.96.17'){

		}else{
			//不处理
			alert("该页面只能在校园网里访问!!!");
		}*/
		window.open("http://10.0.202.101:7011/tp_up");
	}
	function down(){
		window.open("http://10.0.202.160:8080/4.html");
	}
	function showimagecloseu0()
	{
		var img = document.getElementById("img");
		img.style.display = 'none';
	};
	function showimagecloseu01()
	{
		var img1 = document.getElementById("img1");
		img1.style.display = 'none';
	};
	function showimagecloseu02()
	{
		var img2 = document.getElementById("img2");
		img2.style.display = 'none';
	};
	var xPos = 0;
	var yPos = 0;
	var xPos1 = document.body.clientWidth;
	var yPos1 = 0;
	var xPos2 = 0;
	var yPos2 = document.body.clientHeight;
	var step = 1;
	var delay = 30;
	var height = 0;
	var Hoffset = 0;
	var Woffset = 0;
	var Hoffset1 = 0;
	var Woffset1 = 0;
	var Hoffset2 = 0;
	var Woffset2 = 0;
	var yon = 0;
	var xon = 0;
	var yon1 = 0;
	var xon1 = 0;
	var yon2 = 0;
	var xon2 = 0;
	var pause = true;
	var interval;
	var interval1;
	var interval2;
	img.style.top = yPos;
	img1.style.top = yPos1;
	img2.style.top = yPos2;
	function changePos() {
		var w = document.body.clientWidth;
		height = document.body.clientHeight;
		Hoffset = img.offsetHeight;
		Woffset = img.offsetWidth;
		img.style.left = (xPos + document.body.scrollLeft)+"px";
		img.style.top = (yPos + document.body.scrollTop)+"px";
		if (yon) {
			yPos = yPos + step;
		}
		else {
			yPos = yPos - step;
		}
		if (yPos < 0) {
			yon = 1;
			yPos = 0;
		}
		if (yPos >= (height - Hoffset)) {
			yon = 0;
			yPos = (height - Hoffset);
		}
		if (xon) {
			xPos = xPos + step;
		}
		else {
			xPos = xPos - step;
		}
		if (xPos < 0) {
			xon = 1;
			xPos = 0;
		}
		if (xPos >= (w - Woffset)) {
			xon = 0;
			xPos = (w - Woffset);
		}
	}
	function changePos1() {
		var w = document.body.clientWidth;
		height = document.body.clientHeight;
		Hoffset1 = img1.offsetHeight;
		Woffset1 = img1.offsetWidth;
		img1.style.left = (xPos1 + document.body.scrollLeft)+"px";
		img1.style.top = (yPos1 + document.body.scrollTop)+"px";
		if (yon1) {
			yPos1 = yPos1 + step;
		}
		else {
			yPos1 = yPos1 - step;
		}
		if (yPos1 < 0) {
			yon1 = 1;
			yPos1 = 0;
		}
		if (yPos1 >= (height - Hoffset1)) {
			yon1 = 0;
			yPos1 = (height - Hoffset1);
		}
		if (xon1) {
			xPos1 = xPos1 + step;
		}
		else {
			xPos1 = xPos1 - step;
		}
		if (xPos1 < 0) {
			xon1 = 1;
			xPos1 = 0;
		}
		if (xPos1 >= (w - Woffset1)) {
			xon1 = 0;
			xPos1 = (w - Woffset1);
		}
	}
	function changePos2() {
		var w = document.body.clientWidth;
		height = document.body.clientHeight;
		Hoffset2 = img2.offsetHeight;
		Woffset2 = img2.offsetWidth;
		img2.style.left = (xPos2 + document.body.scrollLeft)+"px";
		img2.style.top = (yPos2 + document.body.scrollTop)+"px";
		if (yon2) {
			yPos2 = yPos2 + step;
		}
		else {
			yPos2 = yPos2 - step;
		}
		if (yPos2 < 0) {
			yon2 = 1;
			yPos2 = 0;
		}
		if (yPos2 >= (height - Hoffset2)) {
			yon2 = 0;
			yPos2 = (height - Hoffset2);
		}
		if (xon2) {
			xPos2 = xPos2 + step;
		}
		else {
			xPos2 = xPos2 - step;
		}
		if (xPos2 < 0) {
			xon2 = 1;
			xPos2 = 0;
		}
		if (xPos2 >= (w - Woffset2)) {
			xon2 = 0;
			xPos2 = (w - Woffset2);
		}
	}
	function start() {
		img.style.visibility = "visible";
		interval = setInterval('changePos()', delay);
	}
	function start1() {
		img1.style.visibility = "visible";
		interval1 = setInterval('changePos1()', delay);
	}
	function start2() {
		img2.style.visibility = "visible";
		interval2 = setInterval('changePos2()', delay);
	}
	//$('#img').attr('disabled',"true");//添加disabled属性
	//$('#img').removeAttr("disabled"); //移除disabled属性
</script>
</body>
<script type="text/babel">
	$(function(){
		var resize = function(){
			$("#siteMain").height($(window).height());
		}
		resize();
		window.onresize = resize;
	})
	Vue.config.devtools = true;
	var vm = new Vue({
		el:"#siteMain"
		,data:{
			menuData:[{"children":[],"display":1,"menuName":"首页","id":"170","url":"index.htm"},{"children":[{"parent":"59","children":[],"display":1,"menuName":"学院简介","id":"70","url":"index.htm"},{"parent":"59","children":[],"display":1,"menuName":"班子成员","id":"68","url":"index.htm"},{"parent":"59","children":[],"display":1,"menuName":"机构设置","id":"208","url":"index.htm"},{"parent":"59","children":[],"display":1,"menuName":"校园风光","id":"19","url":"index.htm"}],"display":1,"menuName":"学院概况","id":"59","url":"index.htm"},{"children":[{"parent":"62","children":[],"display":1,"menuName":"电力工程学院","id":"84","url":"index.htm"},{"parent":"62","children":[],"display":1,"menuName":"供用电工程学院","id":"83","url":"index.htm"},{"parent":"62","children":[],"display":1,"menuName":"动力工程学院","id":"209","url":"index.htm"},{"parent":"62","children":[],"display":1,"menuName":"智慧新能源学院","id":"210","url":"index.htm"},{"parent":"62","children":[],"display":1,"menuName":"马克思主义学院","id":"211","url":"index.htm"}],"display":1,"menuName":"院系设置","id":"62","url":"index.htm"},{"children":[{"parent":"171","children":[],"display":1,"menuName":"招生网","id":"212","url":"index.htm"},{"parent":"171","children":[],"display":1,"menuName":"就业网","id":"213","url":"index.htm"}],"display":1,"menuName":"招生就业","id":"171","url":"index.htm"},{"children":[{"parent":"173","children":[],"display":1,"menuName":"人才招聘","id":"214","url":"index.htm"},{"parent":"173","children":[],"display":1,"menuName":"人才队伍","id":"215","url":"index.htm"}],"display":1,"menuName":"师资队伍","id":"173","url":"index.htm"},{"children":[{"parent":"172","children":[],"display":1,"menuName":"教育教学网","id":"216","url":"index.htm"}],"display":1,"menuName":"教育教学","id":"172","url":"index.htm"},{"children":[{"parent":"174","children":[],"display":1,"menuName":"培训服务网","id":"217","url":"index.htm"}],"display":1,"menuName":"培训服务","id":"174","url":"index.htm"},{"children":[{"parent":"175","children":[],"display":1,"menuName":"信息公开网","id":"218","url":"index.htm"}],"display":1,"menuName":"公开事项","id":"175","url":"index.htm"}] 
			,categorys: {"68":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-27 09:39:22","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"59","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"59","categoryPath":"/59/68","categorySort":3,"categoryTitle":"班子成员","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":0,"displayInMenu":1,"id":"68","mdiyModelId":"0","oneCheckManagerId":"69,70","processSet":2,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2023-08-22 16:31:53","writeManagerId":"69,70"}},"170":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryPath":"/170","categorySort":1,"categoryTitle":"首页","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2020-10-29 16:47:31","del":0,"displayInApp":0,"displayInMenu":1,"id":"170","oneCheckManagerId":"104","processSet":1,"sqlWhereList":[],"staticState":0,"updateBy":57,"updateDate":"2021-12-16 16:17:24"}},"171":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"57","categoryPath":"/171","categorySort":4,"categoryTitle":"招生就业","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2020-10-30 15:18:07","del":0,"displayInApp":0,"displayInMenu":1,"id":"171","oneCheckManagerId":"103","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"104","updateBy":57,"updateDate":"2022-01-04 15:49:00","writeManagerId":"103"}},"172":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/172","categorySort":6,"categoryTitle":"教育教学","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2020-10-30 15:19:25","del":0,"displayInApp":0,"displayInMenu":1,"id":"172","oneCheckManagerId":"101","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"102","updateBy":57,"updateDate":"2022-01-04 16:15:10","writeManagerId":"101"}},"150":{"articles":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"何如","contentCategoryId":"150","contentDatetime":"2024-10-12","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"招生就业处","contentState":4,"contentTitle":"学院成功举办首届大学生生涯体验周活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":103,"createDate":"2024-10-12 14:50:12","del":0,"id":"4058","orgid":200,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-12 15:08:23"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"秦尔静","contentCategoryId":"150","contentDatetime":"2024-09-30","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"党委宣传部","contentState":4,"contentTitle":"紧绷“安全弦” 严把“节前关”   筑牢校园安全防线","contentTitle1":"——学院开展安全隐患排查整治专项行动","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-09-30 08:18:12","del":0,"id":"3979","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-30 14:40:52"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"邹清源","contentCategoryId":"150","contentDatetime":"2024-09-30","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"【双高建设】学院召开9月份意识形态工作例会","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-10-08 11:18:12","del":0,"id":"3989","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:30:44"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"王建宇","contentCategoryId":"150","contentDatetime":"2024-09-27","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"马克思主义学院","contentState":4,"contentTitle":"【双高建设】学院组织开展学习贯彻党的二十届三中全会精神集中培训","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":81,"createDate":"2024-09-27 17:15:01","del":0,"id":"3975","orgid":189,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:30:20"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"秦尔静","contentCategoryId":"150","contentDatetime":"2024-09-26","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"党委宣传部","contentState":4,"contentTitle":"学院举行2024级新生军训成果展示暨开学典礼","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-09-26 11:03:59","del":0,"id":"3938","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-26 11:06:28"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"余爱","contentCategoryId":"150","contentDatetime":"2024-09-25","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"学院开展2024级新生军训拉练","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-25 16:50:01","del":0,"id":"3929","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-26 16:18:10"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"李嘉文","contentCategoryId":"150","contentDatetime":"2024-09-23","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"电力工程学院","contentState":4,"contentTitle":"【双高建设】学院师生获一带一路暨金砖国家技能发展与技术创新大赛一等奖","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-09-26 11:08:43","del":0,"id":"3940","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:30:04"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"温健","contentCategoryId":"150","contentDatetime":"2024-09-19","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":13,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"马克思主义学院","contentState":4,"contentTitle":"【双高建设】学院党委书记周志为新生上好开学第一课","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":81,"createDate":"2024-09-19 12:45:50","del":0,"id":"3861","orgid":189,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:31:24"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"徐乐","contentCategoryId":"150","contentDatetime":"2024-09-19","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"【双高建设】学院党委理论学习中心组开展9月集体学习暨巡察整改专题民主生活会会前集中学习研讨","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-09-19 16:04:07","del":0,"id":"3863","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:31:11"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"余爱","contentCategoryId":"150","contentDatetime":"2024-09-18","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"学院举行“月满中秋  情满校园”迎中秋主题活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-18 17:09:37","del":0,"id":"3858","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-19 15:46:50"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"余爱","contentCategoryId":"150","contentDatetime":"2024-09-11","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"学院举行“迷彩青春‧筑梦强国”2024级新生军训开营仪式","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-11 10:30:19","del":0,"id":"3826","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-11 14:24:08"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"王飞","contentCategoryId":"150","contentDatetime":"2024-09-11","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"图情信息中心","contentState":4,"contentTitle":"【双高建设】学院举行2024年“国家网络安全宣传周”活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":97,"createDate":"2024-09-11 16:14:12","del":0,"id":"3827","orgid":197,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 15:23:41"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"肖伶俐","contentCategoryId":"150","contentDatetime":"2024-09-10","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"安全监察部","contentState":4,"contentTitle":"【双高建设】安全监察部:开展安全教育开学第一课","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":81,"createDate":"2024-09-10 11:13:25","del":0,"id":"3824","orgid":189,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:32:08"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"张功盛","contentCategoryId":"150","contentDatetime":"2024-09-10","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"院长李洪明检查迎新工作并看望新生和家长","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-10 12:57:14","del":0,"id":"3825","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-10 15:16:26"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"邹庆宇  张燕梅","contentCategoryId":"150","contentDatetime":"2024-09-09","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"马克思主义学院","contentState":4,"contentTitle":"【双高建设】扬帆能源新蓝海,共绘能源安全新画卷","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":81,"createDate":"2024-09-09 16:08:25","del":0,"id":"3819","orgid":189,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:32:32"}],"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/150","categorySort":1,"categoryTitle":"学院要闻","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2020-08-19 17:09:03","del":0,"displayInApp":1,"displayInMenu":0,"id":"150","oneCheckManagerId":"104,102,100,98,96,94,92,90,88,86,84,82,80,78,76,74,72,70,68","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"57","updateBy":57,"updateDate":"2022-03-30 11:55:44","writeManagerId":"103,101,99,97,95,93,91,89,87,85,83,81,79,77,75,73,71,69,67"}},"173":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/173","categorySort":5,"categoryTitle":"师资队伍","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2020-10-30 15:19:57","del":0,"displayInApp":0,"displayInMenu":1,"id":"173","oneCheckManagerId":"103,89,67,69,101","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"104,102,90,70,68","updateBy":57,"updateDate":"2021-12-24 12:43:29","writeManagerId":"101,89,67,103,69"}},"174":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/174","categorySort":7,"categoryTitle":"培训服务","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2020-10-30 15:20:15","del":0,"displayInApp":0,"displayInMenu":1,"id":"174","oneCheckManagerId":"89","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"90","updateBy":57,"updateDate":"2022-01-04 16:14:50","writeManagerId":"89"}},"175":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"57","categoryPath":"/175","categorySort":8,"categoryTitle":"公开事项","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2020-10-30 15:20:36","del":0,"displayInApp":0,"displayInMenu":1,"id":"175","oneCheckManagerId":"67","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"68","updateBy":57,"updateDate":"2022-03-02 14:58:58","writeManagerId":"67"}},"210":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"62","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"62","categoryPath":"/62/210","categorySort":4,"categoryTitle":"智慧新能源学院","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 16:56:20","del":0,"displayInApp":0,"displayInMenu":1,"id":"210","oneCheckManagerId":"","processSet":1,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2022-12-14 15:51:15","writeManagerId":""}},"375":{"articles":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"韩幸康","contentCategoryId":"375","contentDatetime":"2024-09-20","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[{\"url\":\"blob:http:///5e1144f4-d493-4320-b00f-bcdce817a94f\",\"name\":\"古韵.png\",\"path\":\"/userfiles/upload/1/cms/content/1727080088501.png\",\"uid\":1727080153381,\"status\":\"success\"}]","contentSort":0,"contentSource":"党委宣传部","contentState":4,"contentTitle":"国风古韵庆中秋","contentType":"h","contentUrl":"","createBy":57,"createDate":"2024-09-23 16:28:35","del":0,"id":"3889","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"韩幸康","contentCategoryId":"375","contentDatetime":"2024-09-18","contentDetails":"","contentDisplay":"0","contentHit":5,"contentImg":"[{\"url\":\"blob:http:///c539bb0f-0c7f-4705-9409-ba25793a424f\",\"name\":\"缘聚_副本.png\",\"path\":\"/userfiles/upload/1/cms/content/1727079817428.png\",\"uid\":1727079882318,\"status\":\"success\"}]","contentSort":0,"contentSource":"党委宣传部","contentState":4,"contentTitle":"缘聚军训  情系中秋","contentType":"h","contentUrl":"","createBy":57,"createDate":"2024-09-23 16:24:41","del":0,"id":"3888","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"韩幸康","contentCategoryId":"375","contentDatetime":"2024-09-11","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":4,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1727079578981.png\",\"name\":\"开营_副本.png\",\"path\":\"/userfiles/upload/1/cms/content/1727079578981.png\",\"uid\":1727079643874,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"党委宣传部","contentState":4,"contentTitle":"2024级新生军训开营仪式","contentTitle1":"","contentTitle2":"","contentType":"h","contentUrl":"http://www.jxec.edu.cn/site/main//index1.html","contentUrlName":"","createBy":57,"createDate":"2024-09-23 16:19:51","del":0,"id":"3887","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-23 16:21:12"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"375","contentDatetime":"2024-05-08","contentDetails":"","contentDisplay":"0","contentHit":14,"contentImg":"[{\"url\":\"blob:http:///a5263a33-2fb2-4ef6-a24b-8120f9fef500\",\"name\":\"2O4A0549.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1715134930326.jpg\",\"uid\":1715135116234,\"status\":\"success\"}]","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"我们的校园","contentType":"h","contentUrl":"","createBy":57,"createDate":"2024-05-08 10:22:14","del":0,"id":"3472","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"375","contentDatetime":"2024-03-08","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":13,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1710290249672.png\",\"name\":\"图片1.png\",\"path\":\"/userfiles/upload/1/cms/content/1710290249672.png\",\"uid\":1710290396857,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"学院消防应急疏散演练","contentTitle1":"","contentTitle2":"","contentType":"h","contentUrl":"http://www.jxec.edu.cn/site/main//index1.html","contentUrlName":"","createBy":57,"createDate":"2024-03-13 08:37:32","del":0,"id":"3262","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-03-13 08:49:41"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"375","contentDatetime":"2024-01-26","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[{\"url\":\"blob:http:///b19ac447-502a-44ee-a403-77fb51813130\",\"name\":\"article2938233_0.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1706787738925.jpg\",\"uid\":1706787867211,\"status\":\"success\"}]","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"学院召开三届四次职代会暨2024年工作会议","contentType":"h","contentUrl":"","createBy":57,"createDate":"2024-02-01 19:42:21","del":0,"id":"3050","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"375","contentDatetime":"2023-12-28","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":5,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1706787078529.jpg\",\"name\":\"省赛.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1706787078529.jpg\",\"uid\":1706787206808,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"1","contentState":4,"contentTitle":"江西省职业院校技能大赛两赛项在学院顺利开幕","contentTitle1":"","contentTitle2":"","contentType":"h","contentUrl":"http://www.jxec.edu.cn/site/main//index1.html","contentUrlName":"","createBy":57,"createDate":"2024-02-01 19:31:24","del":0,"id":"3044","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-02-01 19:33:37"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"375","contentDatetime":"2023-12-28","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":5,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1706787260758.jpg\",\"name\":\"国赛.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1706787260758.jpg\",\"uid\":1706787389033,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"1","contentState":4,"contentTitle":"2023全国行业职业技能竞赛第二届全国电子企业职业技能竞赛全国总决赛","contentTitle1":"","contentTitle2":"","contentType":"h","contentUrl":"http://www.jxec.edu.cn/site/main//index1.html","contentUrlName":"","createBy":57,"createDate":"2024-02-01 19:35:27","del":0,"id":"3046","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-02-01 19:35:40"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"375","contentDatetime":"2023-12-23","contentDetails":"","contentDisplay":"0","contentHit":13,"contentImg":"[{\"url\":\"blob:http:///dbd76a9a-0ae3-4600-9ab2-ad8a3341cda3\",\"name\":\"article2902182_0.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1706787574229.jpg\",\"uid\":1706787702509,\"status\":\"success\"}]","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"成“就”梦想  “职”通未来","contentType":"h","contentUrl":"","createBy":57,"createDate":"2024-02-01 19:39:38","del":0,"id":"3048","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"贡悦","contentCategoryId":"375","contentDatetime":"2023-01-06","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":65,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1672993926326.png\",\"name\":\"梦想从这里启航.png\",\"path\":\"/userfiles/upload/1/cms/content/1672993926326.png\",\"uid\":1672994029418,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"梦想从这里启航","contentTitle1":"","contentTitle2":"","contentType":"h","contentUrl":"http://www.jxec.edu.cn/site/main//index1.html","contentUrlName":"","createBy":57,"createDate":"2023-01-06 16:32:47","del":0,"id":"2169","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2023-01-09 09:23:47"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"375","contentDatetime":"2022-05-20","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":61,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1653015743103.jpg\",\"name\":\"弘扬劳模精神.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1653015743103.jpg\",\"uid\":1653015875696,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"弘扬劳模精神  凝聚奋斗动力","contentTitle1":"","contentTitle2":"","contentType":"h","contentUrl":"http://www.jxdlzy.com/site/main/index1.html","contentUrlName":"","createBy":57,"createDate":"2022-05-20 11:02:25","del":0,"id":"1625","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2022-05-20 11:25:03"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"贡悦","contentCategoryId":"375","contentDatetime":"2022-03-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":193,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1646182968048.png\",\"name\":\"1dd9284ccc61fa4797ef273b872c70c_副本.png\",\"path\":\"/userfiles/upload/1/cms/content/1646182968048.png\",\"uid\":1646183038471,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"党委党建部","contentState":4,"contentTitle":"30秒带你看电院","contentTitle1":"","contentTitle2":"","contentType":"h","contentUrl":"http://218.65.110.15/site/main/index1.html","contentUrlName":"","createBy":57,"createDate":"2022-03-02 08:58:07","del":0,"id":"1256","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2022-07-01 15:24:37"}],"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/375","categorySort":5,"categoryTitle":"视频看台","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-05-18 11:20:26","del":0,"displayInApp":1,"displayInMenu":0,"id":"375","oneCheckManagerId":"","processSet":1,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2021-12-21 17:07:10","writeManagerId":""}},"211":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"62","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryParentId":"62","categoryPath":"/62/211","categorySort":5,"categoryTitle":"马克思主义学院","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 16:56:36","del":0,"displayInApp":0,"displayInMenu":1,"id":"211","processSet":1,"sqlWhereList":[],"staticState":0,"updateBy":0}},"376":{"articles":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"22","contentCategoryId":"376","contentDatetime":"2024-08-30","contentDescription":"x","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[{\"url\":\"blob:http:///618f88a5-47bc-4c4d-a160-dbb81b14a289\",\"name\":\"技报家国.png\",\"path\":\"/userfiles/upload/1/cms/content/1724989365089.png\",\"uid\":1724989416878,\"status\":\"success\"}]","contentKeyword":"x","contentSort":0,"contentSource":"22","contentState":4,"contentTitle":"技报家国","contentTitle1":"","contentTitle2":"","contentType":"f","contentUrl":"","contentUrlName":"","createBy":66,"del":0,"id":"222","orgid":1,"sqlWhereList":[],"staticState":1,"topState":1,"updateBy":57,"updateDate":"2024-08-30 11:42:47"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"5","contentCategoryId":"376","contentDatetime":"2024-08-30","contentDescription":"海南黄花梨圆包脚罗汉床、小叶紫檀云龙纹镶理石圆桌、富贵满堂多宝阁……昨日(12月13日)上午,第三届中国(江门)传统家具精品鉴赏会暨2014中国(江门)红木家具....","contentDetails":"","contentDisplay":"0","contentHit":7,"contentImg":"[{\"url\":\"blob:http:///01b53850-c9e6-4cd3-a59a-bde9b73e537e\",\"name\":\"教育家精神.png\",\"path\":\"/userfiles/upload/1/cms/content/1724988036142.png\",\"uid\":1724988087943,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"333","contentState":4,"contentTitle":"教育家精神","contentTitle1":"","contentTitle2":"","contentType":"f","contentUrl":"","contentUrlName":"","createBy":64,"createDate":"2021-05-18 10:57:19","del":0,"id":"2","orgid":1,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-08-30 11:20:47"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"44","contentCategoryId":"376","contentDatetime":"2024-08-30","contentDescription":"海南黄花梨圆包脚罗汉床、小叶紫檀云龙纹镶理石圆桌、富贵满堂多宝阁……昨日(12月13日)上午,第三届中国(江门)传统家具精品鉴赏会暨2014中国(江门)红木家具....","contentDetails":"","contentDisplay":"0","contentHit":6,"contentImg":"[{\"url\":\"blob:http:///d9fd43af-c148-441d-995a-29294a0aad98\",\"name\":\"三中全会精神.png\",\"path\":\"/userfiles/upload/1/cms/content/1724988236103.png\",\"uid\":1724988287907,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"44","contentState":4,"contentTitle":"三中全会精神","contentTitle1":"","contentTitle2":"","contentType":"f","contentUrl":"","contentUrlName":"","createBy":64,"del":0,"id":"195","orgid":1,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-08-30 11:24:14"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"11","contentCategoryId":"376","contentDatetime":"2023-01-05","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":2,"contentImg":"[{\"url\":\"blob:http:///fce53b93-fc7b-4a16-b86c-2987c088e873\",\"name\":\"微信图片_20230105155848.png\",\"path\":\"/userfiles/upload/1/cms/content/1672905952233.png\",\"uid\":1672906054357,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"11","contentState":4,"contentTitle":"学习党的二十大精神","contentTitle1":"","contentTitle2":"","contentType":"f","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2022-10-18 09:41:27","del":0,"id":"1970","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2023-01-05 16:05:55"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"33","contentCategoryId":"376","contentDatetime":"2023-01-05","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[{\"url\":\"blob:http:///38e14af2-e894-4b9d-a200-f4dd1641c482\",\"name\":\"微信图片_20230105153913.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1672905965051.jpg\",\"uid\":1672906067181,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"33","contentState":4,"contentTitle":"坚定不移 奋勇前进","contentTitle1":"","contentTitle2":"","contentType":"f","contentUrl":"","contentUrlName":"","createBy":66,"del":0,"id":"219","orgid":1,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2023-01-05 16:06:07"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"6","contentCategoryId":"376","contentDatetime":"2020-11-18","contentDescription":"可提供一站式全面服务:品牌的定位——企业文化梳理——企业/品牌形象设计——品牌传播——环境空间设计——宣传物品的落地","contentDetails":"","contentDisplay":"0","contentHit":7,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648027614658.png\",\"name\":\"5afd3f241c87bcd429c2c9f2a03e312.png\",\"path\":\"/userfiles/upload/1/cms/content/1648027614658.png\",\"uid\":1648027702739,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"444","contentState":4,"contentTitle":"校卫队","contentTitle1":"","contentTitle2":"","contentType":"f","contentUrl":"","contentUrlName":"","createBy":65,"createDate":"2021-05-18 10:56:59","del":0,"id":"1","orgid":1,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2022-10-18 09:38:04"}],"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"该栏目是用于显示主站首页大图(轮播图片)","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/376","categorySort":6,"categoryTitle":"首页大图","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-05-18 11:33:27","del":0,"displayInApp":1,"displayInMenu":0,"id":"376","oneCheckManagerId":"","processSet":1,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2021-12-21 17:07:15","writeManagerId":""}},"212":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"171","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"171","categoryPath":"/171/212","categorySort":1,"categoryTitle":"招生网","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 17:01:06","del":0,"displayInApp":0,"displayInMenu":1,"id":"212","oneCheckManagerId":"103","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"104","updateBy":57,"updateDate":"2022-11-10 16:14:20","writeManagerId":"103"}},"333":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"329","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryParentId":"329","categoryPath":"/329/333","categorySort":3,"categoryTitle":"教务系统","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-04-02 17:12:53","del":0,"displayInApp":0,"displayInMenu":0,"id":"333","processSet":1,"sqlWhereList":[],"staticState":0,"updateBy":57,"updateDate":"2021-04-02 17:16:06"}},"213":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"171","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"171","categoryPath":"/171/213","categorySort":2,"categoryTitle":"就业网","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 17:01:26","del":0,"displayInApp":0,"displayInMenu":1,"id":"213","oneCheckManagerId":"103","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"104","updateBy":57,"updateDate":"2022-11-10 16:14:36","writeManagerId":"103"}},"214":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"173","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"173","categoryPath":"/173/214","categorySort":1,"categoryTitle":"人才招聘","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 17:06:18","del":0,"displayInApp":0,"displayInMenu":1,"id":"214","oneCheckManagerId":"70","processSet":2,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2023-01-11 10:15:28","writeManagerId":"69"}},"115":{"articles":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"黄瑞","contentCategoryId":"115","contentDatetime":"2024-10-12","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"电力工程学院","contentState":4,"contentTitle":"电力工程学院:召开2025届 毕业班就业教育暨就业动员大会","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":87,"createDate":"2024-10-12 10:38:12","del":0,"id":"4013","orgid":192,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-12 11:41:06"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"唐永峰","contentCategoryId":"115","contentDatetime":"2024-09-30","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"学生工作处(团委):七十五载逢盛世,同心共筑谱华章","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-30 16:22:16","del":0,"id":"3984","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-08 09:41:46"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"周喆","contentCategoryId":"115","contentDatetime":"2024-09-30","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":7,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"供用电工程学院","contentState":4,"contentTitle":"【双高建设】供用电工程学院:2024年全国高等职业院校学生电能计量装置安装与调试技能竞赛获佳绩","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":99,"createDate":"2024-09-30 16:46:28","del":0,"id":"3985","orgid":198,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:27:57"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"王轩坤","contentCategoryId":"115","contentDatetime":"2024-09-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":7,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"【双高建设】学生工作处:组织开展心理健康教育专题培训","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-29 16:58:49","del":0,"id":"3978","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:28:20"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"邹鸿","contentCategoryId":"115","contentDatetime":"2024-09-27","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"供用电工程学院","contentState":4,"contentTitle":"供用电工程学院:2025届毕业生就业动员大会圆满召开","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":99,"createDate":"2024-09-27 16:40:48","del":0,"id":"3973","orgid":198,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-30 08:22:15"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"万彩红","contentCategoryId":"115","contentDatetime":"2024-09-26","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"图书馆","contentState":4,"contentTitle":"【双高建设】图书馆:举办精品图书展活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":97,"createDate":"2024-09-26 14:50:01","del":0,"id":"3943","orgid":197,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-10-10 14:28:38"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"殷娅娴","contentCategoryId":"115","contentDatetime":"2024-09-25","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":5,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"马克思主义学院","contentState":4,"contentTitle":"马克思主义学院召开党的二十届三中全会精神融入思政课教学集体备课会","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":81,"createDate":"2024-09-25 09:13:26","del":0,"id":"3921","orgid":189,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-26 11:12:19"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"邓辉","contentCategoryId":"115","contentDatetime":"2024-09-25","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":9,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"电力工程学院","contentState":4,"contentTitle":"电力工程学院:组织开展大学生职业规划大赛","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":87,"createDate":"2024-09-25 11:04:49","del":0,"id":"3925","orgid":192,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-26 11:11:09"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"张经","contentCategoryId":"115","contentDatetime":"2024-09-19","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":9,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"电力工程学院","contentState":4,"contentTitle":"电力工程学院举办新生专业介绍活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":87,"createDate":"2024-09-26 17:20:20","del":0,"id":"3960","orgid":192,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-27 10:07:08"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"周诗琪","contentCategoryId":"115","contentDatetime":"2024-09-19","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":6,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"电力工程学院","contentState":4,"contentTitle":"电力工程学院:慧眼识诈 平安相伴","contentTitle1":"——电力工程学院开展平安志愿服务活","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":87,"createDate":"2024-09-26 17:30:34","del":0,"id":"3961","orgid":192,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-27 10:09:52"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"唐永峰","contentCategoryId":"115","contentDatetime":"2024-09-18","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处(团委)","contentState":4,"contentTitle":"学生工作处(团委):欢乐度中秋,情浓溢中秋","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-18 12:45:02","del":0,"id":"3852","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-19 15:49:16"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"郭嘉敏","contentCategoryId":"115","contentDatetime":"2024-09-13","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"供用电工程学院","contentState":4,"contentTitle":"供用电工程学院:举办新生专业介绍活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":99,"createDate":"2024-09-13 15:55:36","del":0,"id":"3841","orgid":198,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-18 09:35:50"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"陈俊超","contentCategoryId":"115","contentDatetime":"2024-09-12","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"供用电工程学院","contentState":4,"contentTitle":"供用电工程学院:开展网络安全主题会议暨秋季作业“反三违、除五害”宣讲活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":99,"createDate":"2024-09-12 11:28:20","del":0,"id":"3830","orgid":198,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-12 15:33:53"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"邹鸿","contentCategoryId":"115","contentDatetime":"2024-09-09","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"供用电工程学院","contentState":4,"contentTitle":"供用电工程学院:“电光火石,新梦起航”九月迎新活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":99,"createDate":"2024-09-09 16:11:29","del":0,"id":"3822","orgid":198,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-10 15:19:21"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"王轩坤","contentCategoryId":"115","contentDatetime":"2024-09-04","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"学生工作处:召开2024年秋季学期心理健康工作会议","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":79,"createDate":"2024-09-04 11:36:17","del":0,"id":"3814","orgid":188,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-04 11:41:44"}],"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-04-11 21:29:24","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/115","categorySort":2,"categoryTitle":"校园动态","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":1,"displayInMenu":0,"id":"115","mdiyModelId":"0","oneCheckManagerId":"104,102,100,98,96,94,92,90,88,86,84,82,80,78,76,74,72,70,68","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"57","updateBy":57,"updateDate":"2022-03-02 15:01:55","writeManagerId":"103,101,99,97,95,93,91,89,85,87,83,81,79,77,75,73,71,69,67"}},"215":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"173","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"173","categoryPath":"/173/215","categorySort":2,"categoryTitle":"人才队伍","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 17:06:29","del":0,"displayInApp":0,"displayInMenu":1,"id":"215","oneCheckManagerId":"70","processSet":2,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2023-01-11 10:15:49","writeManagerId":"69"}},"216":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"172","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"172","categoryPath":"/172/216","categorySort":1,"categoryTitle":"教育教学网","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 17:07:02","del":0,"displayInApp":0,"displayInMenu":1,"id":"216","oneCheckManagerId":"101","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"102","updateBy":57,"updateDate":"2022-11-10 16:15:27","writeManagerId":"101"}},"217":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"174","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"174","categoryPath":"/174/217","categorySort":1,"categoryTitle":"培训服务网","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 17:07:21","del":0,"displayInApp":0,"displayInMenu":1,"id":"217","oneCheckManagerId":"89","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"90","updateBy":57,"updateDate":"2022-11-10 16:15:58","writeManagerId":"89"}},"218":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"175","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"175","categoryPath":"/175/218","categorySort":0,"categoryTitle":"信息公开网","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 17:07:51","del":0,"displayInApp":0,"displayInMenu":1,"id":"218","oneCheckManagerId":"67","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"68","updateBy":57,"updateDate":"2023-08-01 15:31:23","writeManagerId":"67"}},"70":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-27 09:40:22","categoryDescrip":"新闻中心","categoryDiyUrl":"","categoryFlag":"","categoryId":"59","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"59","categoryPath":"/59/70","categorySort":1,"categoryTitle":"学院简介","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":0,"displayInMenu":1,"id":"70","mdiyModelId":"0","oneCheckManagerId":"67,68","processSet":2,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2023-04-14 10:11:53","writeManagerId":"67,68"}},"53":{"articles":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"人民网","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"blob:http:///0a5d453d-c9f6-4c99-9c2b-b2002a054d4f\",\"name\":\"贯彻学习新时代思想.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1682651843763.jpg\",\"uid\":1682652023381,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"学习贯彻习近平新时代中国特色社会主义思想","contentTitle1":"","contentTitle2":"","contentUrl":"http://ztjy.people.cn/GB/index.html","contentUrlName":"","createBy":57,"createDate":"2021-12-29 16:54:08","del":0,"id":"712","orgid":2,"sqlWhereList":[],"staticState":1,"topState":1,"updateBy":57,"updateDate":"2023-04-28 11:17:27"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"共产党员网","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"blob:http:///dcc8b733-257a-412a-9a8f-92d008d90764\",\"name\":\"深入学习宣贯党的二十大_副本.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1666669638523.jpg\",\"uid\":1666669686462,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"共产党员网","contentTitle1":"","contentTitle2":"","contentUrl":"http://www.12371.cn","contentUrlName":"","createBy":57,"createDate":"2021-12-29 16:58:27","del":0,"id":"713","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2022-10-25 11:47:22"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"党史学习","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1640768358566.jpg\",\"name\":\"党史学习教育_副本.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1640768358566.jpg\",\"uid\":1640768397622,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"党史学习教育","contentTitle1":"","contentTitle2":"","contentUrl":"https://www.12371.cn/dsxx/","contentUrlName":"","createBy":57,"createDate":"2021-12-29 16:59:23","del":0,"id":"714","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2022-03-21 16:04:33"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"主题教育官网","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1724986814269.png\",\"name\":\"主题教育官网.png\",\"path\":\"/userfiles/upload/1/cms/content/1724986814269.png\",\"uid\":1724986866079,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"主题教育网","contentTitle1":"","contentTitle2":"","contentUrl":"http://ztjy.people.cn/GB/index.html","contentUrlName":"","createBy":57,"createDate":"2021-12-29 17:00:05","del":0,"id":"715","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-08-30 11:00:59"}],"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-16 17:16:11","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryPath":"/53","categorySort":3,"categoryTitle":"专题网站","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":1,"displayInMenu":0,"id":"53","mdiyModelId":"0","processSet":1,"sqlWhereList":[],"staticState":0,"updateBy":57,"updateDate":"2021-05-18 11:16:53"}},"59":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-26 13:18:53","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/59","categorySort":2,"categoryTitle":"学院概况","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":0,"displayInMenu":1,"id":"59","mdiyModelId":"0","oneCheckManagerId":"70,68","processSet":2,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2022-10-27 16:29:40","writeManagerId":"67,69"}},"19":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2015-09-01 15:31:30","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"59","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryParentId":"59","categoryPath":"/59/19","categorySort":9,"categoryTitle":"校园风光","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":0,"displayInMenu":1,"id":"19","mdiyModelId":"0","processSet":1,"sqlWhereList":[],"staticState":0,"updateBy":57,"updateDate":"2021-05-14 15:59:22"}},"208":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"59","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"59","categoryPath":"/59/208","categorySort":4,"categoryTitle":"机构设置","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 16:50:34","del":0,"displayInApp":0,"displayInMenu":1,"id":"208","oneCheckManagerId":"69,70","processSet":2,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2023-04-14 10:12:34","writeManagerId":"69,70"}},"83":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-28 16:51:31","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"62","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"62","categoryPath":"/62/83","categorySort":2,"categoryTitle":"供用电工程学院","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":0,"displayInMenu":1,"id":"83","mdiyModelId":"0","oneCheckManagerId":"","processSet":1,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2022-12-14 15:50:52","writeManagerId":""}},"209":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"62","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"62","categoryPath":"/62/209","categorySort":3,"categoryTitle":"动力工程学院","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2021-02-22 16:55:54","del":0,"displayInApp":0,"displayInMenu":1,"id":"209","oneCheckManagerId":"","processSet":1,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2022-12-14 15:51:05","writeManagerId":""}},"84":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-28 16:54:29","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"62","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryParentId":"62","categoryPath":"/62/84","categorySort":1,"categoryTitle":"电力工程学院","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":0,"displayInMenu":1,"id":"84","mdiyModelId":"0","oneCheckManagerId":"","processSet":1,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2022-12-14 15:49:41","writeManagerId":""}},"62":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-26 13:27:39","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/62","categorySort":3,"categoryTitle":"院系设置","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":0,"displayInMenu":1,"id":"62","mdiyModelId":"0","oneCheckManagerId":"70","processSet":2,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"","updateBy":57,"updateDate":"2022-10-27 16:29:29","writeManagerId":"69"}},"409":{"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/409","categorySort":7,"categoryTitle":"安全校园","categoryType":"1","categoryUrl":"index.htm","createBy":57,"createDate":"2022-03-30 11:51:21","del":0,"displayInApp":0,"displayInMenu":0,"id":"409","oneCheckManagerId":"104,102,100,98,96,94,92,90,88,86,84,82,80,78,76,74,72,70,68","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"57","updateBy":57,"updateDate":"2022-10-13 14:24:38","writeManagerId":"103,101,99,97,95,93,91,89,87,85,83,81,79,77,75,73,71,69,67"}},"87":{"articles":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"秦尔静","contentCategoryId":"87","contentDatetime":"2024-10-09","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":6,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"江西省教育厅","contentState":4,"contentTitle":"江西省教育厅:江西电力职院:紧绷“安全弦” 严把“节前关” 筑牢校园安全防线","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-10-11 16:07:21","del":0,"id":"4003","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"87","contentDatetime":"2024-10-08","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":8,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"学生工作处","contentState":4,"contentTitle":"赣青团学:“七十五载逢盛世 挺膺担当正当时”庆祝新中国成立75周年宣传教育活动优秀案例视频展播(第二","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-10-08 09:30:52","del":0,"id":"3988","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"李嘉文","contentCategoryId":"87","contentDatetime":"2024-09-30","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":10,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"电力工程学院","contentState":4,"contentTitle":"江西省教育厅:江西电力职院师生荣获一带一路暨金砖国家技能发展与技术创新大赛一等奖","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-10-08 09:28:42","del":0,"id":"3987","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"秦尔静","contentCategoryId":"87","contentDatetime":"2024-09-30","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":4,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"消费日报","contentState":4,"contentTitle":"消费日报:江西电力职院:紧绷“安全弦” 严把“节前关” 筑牢校园安全防线","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-10-11 16:05:52","del":0,"id":"4002","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"钱智妮","contentCategoryId":"87","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":14,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"新华网","contentState":4,"contentTitle":"新华网:生源质量大幅提升 江西这所电力院校“电力”十足","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-09-04 15:04:21","del":0,"id":"3816","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-04 15:06:41"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"秦尔静","contentCategoryId":"87","contentDatetime":"2024-08-27","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":13,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"江西省教育厅","contentState":4,"contentTitle":"江西省教育厅:江西电力职业技术学院举办党的二十届三中全会精神宣讲报告","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-08-27 09:57:13","del":0,"id":"3759","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-08-27 09:59:06"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"张燕梅 秦尔静","contentCategoryId":"87","contentDatetime":"2024-08-08","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"中国日报","contentState":4,"contentTitle":"中国日报:江西电力职业技术学院开展井冈星火,“电”亮梦想暑期大思政实践活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-08-09 14:42:03","del":0,"id":"3741","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-08-09 14:42:12"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"何欣","contentCategoryId":"87","contentDatetime":"2024-07-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"中国新闻网","contentState":4,"contentTitle":"中国新闻网:江西电力职业技术学院:革命老区看变化 新“硒”业态展未来","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-07-31 09:36:02","del":0,"id":"3717","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"陈伦超","contentCategoryId":"87","contentDatetime":"2024-07-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"中国教育报网","contentState":4,"contentTitle":"中国教育报网:暑期大思政实践活动|江西电力职业技术学院开展“以青春之力,助力荷田振兴”暑期大思政实践","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-07-31 09:37:55","del":0,"id":"3718","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"何欣","contentCategoryId":"87","contentDatetime":"2024-07-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":9,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"江西新闻","contentState":4,"contentTitle":"江西新闻:江西电力职业技术学院开展“情暖童心”“文艺下乡”志愿服务活动","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-08-01 15:34:02","del":0,"id":"3723","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"何欣","contentCategoryId":"87","contentDatetime":"2024-07-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"新华网","contentState":4,"contentTitle":"新华网:江西电力职业技术学院:革命老区看变化 新“硒”业态展未来","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-08-01 15:35:51","del":0,"id":"3724","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"何欣","contentCategoryId":"87","contentDatetime":"2024-07-26","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"中国新闻网","contentState":4,"contentTitle":"中国新闻网:江西电力职业技术学院:梓山潭头寻足迹 长征渡口话未来","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-07-29 15:00:21","del":0,"id":"3710","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"何欣","contentCategoryId":"87","contentDatetime":"2024-07-26","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":11,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"江西省教育厅","contentState":4,"contentTitle":"江西省教育网:江西电力职业技术学院:梓山潭头寻足迹,长征渡口话未来","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-07-29 15:01:50","del":0,"id":"3711","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"秦尔静 胡超","contentCategoryId":"87","contentDatetime":"2024-06-19","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":13,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"中国新闻网","contentState":4,"contentTitle":"中国新闻网:江西电力职业技术学院:党建引领点亮希望之路","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-06-19 16:17:56","del":0,"id":"3602","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"贡悦","contentCategoryId":"87","contentDatetime":"2024-06-18","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":12,"contentImg":"[]","contentKeyword":"","contentSort":0,"contentSource":"新华社客户端","contentState":4,"contentTitle":"新华社客户端:江西电力职业技术学院:以党建引领 打造高质量就业的“金字招牌”","contentTitle1":"","contentTitle2":"","contentUrl":"","contentUrlName":"","createBy":57,"createDate":"2024-06-19 16:15:49","del":0,"id":"3601","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":0}],"entity":{"appId":1,"appname":"江西电力职业技术学院","categoryContent":"","categoryDatetime":"2016-03-30 10:27:42","categoryDescrip":"","categoryDiyUrl":"","categoryFlag":"","categoryId":"","categoryImg":"[]","categoryKeyword":"","categoryListUrl":"index.htm","categoryManagerId":"","categoryPath":"/87","categorySort":4,"categoryTitle":"媒体聚焦","categoryType":"1","categoryUrl":"index.htm","createBy":0,"del":0,"dictId":0,"displayInApp":1,"displayInMenu":0,"id":"87","mdiyModelId":"0","oneCheckManagerId":"104,102,100,98,94,92,90,96,88,86,84,82,80,76,78,74,72,70,68","processSet":3,"sqlWhereList":[],"staticState":0,"twoCheckManagerId":"57","updateBy":57,"updateDate":"2021-12-24 12:46:01","writeManagerId":"103,101,99,97,95,93,91,89,87,85,83,81,79,77,75,73,71,69,67"}}} 
			,app:{"appCopyright":"Copyright © 2014-2018 Www.Jxdlzy.Com. All Rights Reserved","appDescription":"江西电力职业技术学院","appHostUrl":"http://www.jxec.edu.cn/site/main","appId":1,"appKeyword":"江西电力职业技术学院","appLogo":"/userfiles/upload/appLogo/1682411925711.png","appLogo1":"","appLogo2":"","appManagerId":0,"appMobileStyle":"1","appName":"江西电力职业技术学院","appState":1,"appStyle":"default","appUrl":"http://www.jxec.edu.cn/site/main","createBy":0,"del":0,"displayInMenu":0,"ip":"127.0.0.1","linkName1":"中华人民共和国教育部","linkName2":"江西教育网","linkName3":"江西文明网","linkName4":"南昌文明网","linkUrl1":"http://www.moe.gov.cn/","linkUrl2":"http://jyt.jiangxi.gov.cn","linkUrl3":"http://jxwmw.cn/","linkUrl4":"http://nc.wenming.cn","pcDiyUrl":"http://www.jxec.edu.cn/","pcDiyUrl1":"http://218.65.96.13:9000/dzxx.html","pcDiyUrl2":"","pcImg":"","sqlWhereList":[],"staticState":0,"updateBy":0} 
			,focusData:{"entitys":[{"categoryId":"375","id":"3889","imgUrl":"[{\"url\":\"blob:http:///5e1144f4-d493-4320-b00f-bcdce817a94f\",\"name\":\"古韵.png\",\"path\":\"/userfiles/upload/1/cms/content/1727080088501.png\",\"uid\":1727080153381,\"status\":\"success\"}]","order":0},{"categoryId":"375","id":"3888","imgUrl":"[{\"url\":\"blob:http:///c539bb0f-0c7f-4705-9409-ba25793a424f\",\"name\":\"缘聚_副本.png\",\"path\":\"/userfiles/upload/1/cms/content/1727079817428.png\",\"uid\":1727079882318,\"status\":\"success\"}]","order":0}]} 
			,campusView:{"entitys":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"<p>&nbsp;</p><p>&nbsp;</p>","contentDisplay":"0","contentHit":0,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1646184836286.png\",\"name\":\"1dd9284ccc61fa4797ef273b872c70c_副本.png\",\"path\":\"/userfiles/upload/1/cms/content/1646184836286.png\",\"uid\":1646184906698,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"11","contentState":4,"contentTitle":"1","contentTitle1":"","contentTitle2":"","contentType":"c","contentUrlName":"www.baidu.com","createBy":62,"del":0,"id":"24","orgid":1,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:18:31"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"1","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629550167.JPG\",\"name\":\"A7R00635.JPG\",\"path\":\"/userfiles/upload/1/cms/content/1648629550167.JPG\",\"uid\":1648629643329,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"11","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 10:59:07","del":0,"id":"365","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:21:49"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"3","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629564780.JPG\",\"name\":\"A7R01083.JPG\",\"path\":\"/userfiles/upload/1/cms/content/1648629564780.JPG\",\"uid\":1648629657879,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"12","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 10:59:34","del":0,"id":"367","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:22:08"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"4","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629583813.JPG\",\"name\":\"DJI_0142.JPG\",\"path\":\"/userfiles/upload/1/cms/content/1648629583813.JPG\",\"uid\":1648629676831,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"13","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 10:59:47","del":0,"id":"368","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:22:20"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"5","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1604372400604.jpg\",\"name\":\"1595570947502.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1604372400604.jpg\",\"uid\":1604372400449,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"14","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 11:00:01","del":0,"id":"369","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:23:20"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"6","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629596440.jpg\",\"name\":\"IMG_4234.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1648629596440.jpg\",\"uid\":1648629689496,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"15","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 11:00:12","del":0,"id":"370","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:23:34"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"7","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629608193.jpg\",\"name\":\"蓝色天空下,绿色的变电站,安静而又宏伟.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1648629608193.jpg\",\"uid\":1648629701324,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"16","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 11:00:24","del":0,"id":"371","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:23:45"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"9","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629701400.JPG\",\"name\":\"A7C02478.JPG\",\"path\":\"/userfiles/upload/1/cms/content/1648629701400.JPG\",\"uid\":1648629794380,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"17","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 11:00:46","del":0,"id":"373","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:23:58"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"9","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629728614.jpg\",\"name\":\"学生食堂1.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1648629728614.jpg\",\"uid\":1648629821758,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"18","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-03 11:00:59","del":0,"id":"374","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:24:10"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629423686.jpg\",\"name\":\"2O4A0540.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1648629423686.jpg\",\"uid\":1648629516800,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"2","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:54:43","del":0,"id":"381","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:18:51"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1646184992943.jpg\",\"name\":\"4adbdf6178de04c73a6be9ebaebf4b4.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1646184992943.jpg\",\"uid\":1646185063368,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"3","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:56:08","del":0,"id":"382","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:19:21"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629445670.jpg\",\"name\":\"2O4A0549.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1648629445670.jpg\",\"uid\":1648629538763,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"4","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:57:24","del":0,"id":"383","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:19:32"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1646185396021.jpg\",\"name\":\"26db4a1f3ba2d55b09519801f9760e5.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1646185396021.jpg\",\"uid\":1646185466436,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"5","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:57:51","del":0,"id":"384","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:19:44"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentHit":1,"contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1646185440509.jpg\",\"name\":\"469df5679133f98c3de803e9478150e.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1646185440509.jpg\",\"uid\":1646185510934,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"6","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:58:17","del":0,"id":"385","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:20:12"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1646185481597.png\",\"name\":\"a3e4c7b2dba0341dc544c2b4d9bd522.png\",\"path\":\"/userfiles/upload/1/cms/content/1646185481597.png\",\"uid\":1646185551994,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"7","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:58:43","del":0,"id":"386","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:20:26"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629475797.jpg\",\"name\":\"2O4A0562.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1648629475797.jpg\",\"uid\":1648629568877,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"8","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:59:14","del":0,"id":"387","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:20:42"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648629486921.jpg\",\"name\":\"45度抬头仰望,不羡夕阳,你是我们眼中最美的风景.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1648629486921.jpg\",\"uid\":1648629580004,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"9","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 10:59:43","del":0,"id":"388","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:20:54"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1646185626003.png\",\"name\":\"428b514ac10567ca94965c904045bd6.png\",\"path\":\"/userfiles/upload/1/cms/content/1646185626003.png\",\"uid\":1646185696417,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"10","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 11:00:09","del":0,"id":"389","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:21:21"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"佚名","contentCategoryId":"19","contentDatetime":"2024-09-02","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1605150041397.JPG\",\"name\":\"2O4A0550.JPG\",\"path\":\"/userfiles/upload/1/cms/content/1605150041397.JPG\",\"uid\":1605150041151,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"0","contentState":4,"contentTitle":"220kV实训变电站1","contentTitle1":"","contentTitle2":"","contentType":"","contentUrlName":"","createBy":57,"createDate":"2020-11-12 11:00:43","del":0,"id":"390","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-09-02 11:21:35"}]} 
			,specialTopic:{"entitys":[{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"人民网","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"blob:http:///0a5d453d-c9f6-4c99-9c2b-b2002a054d4f\",\"name\":\"贯彻学习新时代思想.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1682651843763.jpg\",\"uid\":1682652023381,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"学习贯彻习近平新时代中国特色社会主义思想","contentTitle1":"","contentTitle2":"","contentUrl":"http://ztjy.people.cn/GB/index.html","contentUrlName":"","createBy":57,"createDate":"2021-12-29 16:54:08","del":0,"id":"712","orgid":2,"sqlWhereList":[],"staticState":1,"topState":1,"updateBy":57,"updateDate":"2023-04-28 11:17:27"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"共产党员网","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"blob:http:///dcc8b733-257a-412a-9a8f-92d008d90764\",\"name\":\"深入学习宣贯党的二十大_副本.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1666669638523.jpg\",\"uid\":1666669686462,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"共产党员网","contentTitle1":"","contentTitle2":"","contentUrl":"http://www.12371.cn","contentUrlName":"","createBy":57,"createDate":"2021-12-29 16:58:27","del":0,"id":"713","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2022-10-25 11:47:22"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"党史学习","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1640768358566.jpg\",\"name\":\"党史学习教育_副本.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1640768358566.jpg\",\"uid\":1640768397622,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"党史学习教育","contentTitle1":"","contentTitle2":"","contentUrl":"https://www.12371.cn/dsxx/","contentUrlName":"","createBy":57,"createDate":"2021-12-29 16:59:23","del":0,"id":"714","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2022-03-21 16:04:33"},{"appId":1,"appname":"江西电力职业技术学院","contentAuthor":"主题教育官网","contentCategoryId":"53","contentDatetime":"2021-12-29","contentDescription":"","contentDetails":"","contentDisplay":"0","contentImg":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1724986814269.png\",\"name\":\"主题教育官网.png\",\"path\":\"/userfiles/upload/1/cms/content/1724986814269.png\",\"uid\":1724986866079,\"status\":\"success\"}]","contentKeyword":"","contentSort":0,"contentSource":"网页","contentState":4,"contentTitle":"主题教育网","contentTitle1":"","contentTitle2":"","contentUrl":"http://ztjy.people.cn/GB/index.html","contentUrlName":"","createBy":57,"createDate":"2021-12-29 17:00:05","del":0,"id":"715","orgid":2,"sqlWhereList":[],"staticState":1,"topState":0,"updateBy":57,"updateDate":"2024-08-30 11:00:59"}]} 
			,flowWindow:{} 
			,banner:{"entitys":[{"categoryId":"376","contentUrl":"","id":"1970","imgUrl":"[{\"url\":\"blob:http:///fce53b93-fc7b-4a16-b86c-2987c088e873\",\"name\":\"微信图片_20230105155848.png\",\"path\":\"/userfiles/upload/1/cms/content/1672905952233.png\",\"uid\":1672906054357,\"status\":\"success\"}]","order":0},{"categoryId":"376","contentUrl":"","id":"222","imgUrl":"[{\"url\":\"blob:http:///618f88a5-47bc-4c4d-a160-dbb81b14a289\",\"name\":\"技报家国.png\",\"path\":\"/userfiles/upload/1/cms/content/1724989365089.png\",\"uid\":1724989416878,\"status\":\"success\"}]","order":0},{"categoryId":"376","contentUrl":"","id":"219","imgUrl":"[{\"url\":\"blob:http:///38e14af2-e894-4b9d-a200-f4dd1641c482\",\"name\":\"微信图片_20230105153913.jpg\",\"path\":\"/userfiles/upload/1/cms/content/1672905965051.jpg\",\"uid\":1672906067181,\"status\":\"success\"}]","order":0},{"categoryId":"376","contentUrl":"","id":"195","imgUrl":"[{\"url\":\"blob:http:///d9fd43af-c148-441d-995a-29294a0aad98\",\"name\":\"三中全会精神.png\",\"path\":\"/userfiles/upload/1/cms/content/1724988236103.png\",\"uid\":1724988287907,\"status\":\"success\"}]","order":0},{"categoryId":"376","contentUrl":"","id":"2","imgUrl":"[{\"url\":\"blob:http:///01b53850-c9e6-4cd3-a59a-bde9b73e537e\",\"name\":\"教育家精神.png\",\"path\":\"/userfiles/upload/1/cms/content/1724988036142.png\",\"uid\":1724988087943,\"status\":\"success\"}]","order":0},{"categoryId":"376","contentUrl":"","id":"1","imgUrl":"[{\"url\":\"/jxdlzy/userfiles/upload/1/cms/content/1648027614658.png\",\"name\":\"5afd3f241c87bcd429c2c9f2a03e312.png\",\"path\":\"/userfiles/upload/1/cms/content/1648027614658.png\",\"uid\":1648027702739,\"status\":\"success\"}]","order":0}]} 
			,rootContext:'/jxdlzy'
			,staticRoute:'staticsite'
			,dynamicRoute:'site'
			,activeName: 'first'
		}
	,computed:{
		tableData:function(){
			return [];
		}
	,imgList:function(){
			if(this.app.appState==0){//开启黑白
				//document.getElementById("htmlId").setAttribute("style","filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(1);");
				document.getElementById("htmlId").setAttribute("style","-webkit-filter: grayscale(100%);-moz-filter: grayscale(100%);-ms-filter: grayscale(100%);-o-filter: grayscale(100%);filter: grayscale(100%);filter:gray;filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);filter: grayscale(100%);");
			}else{//关闭黑白效果
				document.getElementById("htmlId").removeAttribute("style");
			}
			try{
				return this.focusData.entitys.map((item)=>{
					return {
						imgUrl:JSON.parse(item.imgUrl)[0].path
						,url:/*this.getRootRoute(item)+'/'+*/this.app.appUrl+'/'+item.categoryId+'/'+item.id+'/index.html'
					}
				})
			}catch(e){
				console.error(e);
				return {};
			}
		}
	,ztimglist:function(){
			try{
				return this.specialTopic.entitys.map((item)=>{
					return {
						imgUrl:JSON.parse(item.contentImg)[0].path
						,url:item.contentUrl
						,contentTitle:item.contentTitle
					}
				})
			}catch(e){
				console.error(e);
				return {};
			}
		}
	,imglist2:function(){
			try{
				return this.campusView.entitys.map((item)=>{
					return {
						imgUrl:JSON.parse(item.contentImg)[0].path
						,url:item.contentUrl
						,title:item.contentTitle
					}
				})
			}catch(e){
				console.error(e);
				return {};
			}
		}
	,carousedata:function(){
			try{
				return this.banner.entitys.map(item=>{
					return {
						imgUrl:JSON.parse(item.imgUrl)[0].path
						,url:item.contentUrl
						//,url:/*this.getRootRoute(item)+'/'+*/this.app.appUrl+'/'+item.categoryId+'/'+item.id+'/index.html'
					}
				})
			}catch(e){
				console.error(e);
				return {};
			}
		}
	},methods:{
		handleSelect : function(e){
			alert(e);
		}
	,changePage:function(e){

		}
	,getRootRoute:function(item){
			return this.rootContext+"/"+this.getRoute(item.staticState);
		}
	,getRoute:function(state){
			return state==1?this.staticRoute:this.dynamicRoute;
		},
		handleClick(tab, event) {
			console.log(tab, event);
		}
    ,select:function(index){
		console.log("categorys::{}",this.categorys);
		sessionStorage.setItem('imglist2',JSON.stringify(this.imglist2));
		var imglist2 = sessionStorage.getItem('imglist2');
		console.log("imglist2::{}",imglist2.length);
		console.log("app::{}",this.app);
		var index='';
		var fruits = ["校园风光", "校园美景", "学院美景", "学园美景"];
		var menutmp = this.menuData;
		console.log("menutmp::************{}",menutmp);
		console.log("menutmplength::************{}",menutmp.length);
		if(menutmp){
			for(var i=1;i<menutmp.length;i++){
				var item = menutmp[i];
				console.log("item::",item);
			    if(fruits.indexOf(item.menuName)!=-1){
				  console.log("ruits.indexOf(item.menuName)::************{}",ruits.indexOf(item.menuName));
				  console.log("item.id::************{}",item.id);
				  index=item.id;
				  break;
                }
				if(item){
					for(var j=1;j<item.children.length;j++){
						var children = item.children[j];
						console.log("children::",children);
					    if(fruits.indexOf(children.menuName)!=-1){
							console.log("children.menuName::************{}",children.menuName);
							console.log("children.id::************{}",children.id);
							index=children.id;
							break;
						}
					}
				}
			}
		}
 		console.log("index::************{}",index);
 		window.open(this.app.appUrl+"/"+index+"/index.html");
     },ztwz:function(){
			console.log("categorys::{}",this.categorys);
			sessionStorage.setItem('ztimglist',JSON.stringify(this.ztimglist));
			var ztimglist = sessionStorage.getItem('ztimglist');
			console.log("ztimglist::{}",ztimglist.length);
			console.log("app::{}",this.app);
			window.open(this.app.appUrl+"/53/index.html");
		}
	},created(){//页面加载事件
		sessionStorage.setItem('imglist2',JSON.stringify(this.imglist2));
		if(this.app.appLogo!=''&&this.app.appLogo!=null){
			start();
		}
		if(this.app.appLogo1!=''&&this.app.appLogo1!=null){
			start1();
		}
		if(this.app.appLogo2!=''&&this.app.appLogo2!=null){
			start2();
		}
	}
	})
	$(document).ready(function(){
		$('.nav-wrapper .nav-item').mousemove(function() {
			$(this).addClass('active').siblings().removeClass('active');
			$(this).children('ul').css({
				'display':'block'
			})
		});
		$('.nav-wrapper .nav-item').mouseout(function(){
			$(this).removeClass('active');
			$(this).children('ul').css({
				'display':'none'
			})
		});
		$('.titNews span').on('click',function () {
			$(this).addClass('hov').siblings('span').removeClass('hov');
		});
	});
</script>
<script>
    window.onload=function(){
		// 轮播相关开始
		var timer = null;
		var index = 0;
		var picLen = $('#lunbo-hook .lun-item').size();
		var $indis = $('#indi-hook').find('.item');

		function move() {
			timer = setInterval(function() {
				$('#lunbo-hook .lun-item').eq(index).fadeIn(500).siblings('.lun-item').fadeOut(500);
				index++;
				if (index == picLen) {
					index = 0;
				}
				$indis.removeClass('current').eq(index - 1).addClass('current');
			}, 3000);
		}

		// 手动点选轮播
		$indis.click(function() {
			var clickIndex = $(this).index();
			index = clickIndex;
			$('#lunbo-hook .lun-item').fadeOut(100).eq(index).fadeIn(100);
			$(this).addClass('current').siblings().removeClass('current');
		});

		// 悬停停止轮播
		$('.lun-wrapper').hover(
				function() {
					clearInterval(timer)
				},
				function() {
					move();
				}
		)

		move();

		// 校园美景
		var area =document.getElementById('scrollBox');
		var con1 = document.getElementById('con1');
		var con2 = document.getElementById('con2');
		con2.innerHTML=con1.innerHTML;
		area.scrollLeft=0;
		function scrollUp(){
			if(area.scrollLeft>=con2.offsetWidth){
				area.scrollLeft=0;
			}else{
				area.scrollLeft+=2;
			}
		}
		var time = 100;
		var mytimer=setInterval(scrollUp,time);
		area.onmouseover=function(){
			clearInterval(mytimer);
		}
		area.onmouseout=function(){
			mytimer=setInterval(scrollUp,time);
		}
	}

	$(document).ready(function(){
		/*$("img#wx").hover(function(){
			$("img.wx").css("display","block");
		},function(){
			$("img.wx").css("display","none");
		});
		$("img#wb").hover(function(){
			$("img.wb").css("display","block");
		},function(){
			$("img.wb").css("display","none");
		});*/
	});
</script>
</html>

网页分析工具

为您提供网页信息检测查询,可以快速检测网页的META标签,分析标题、关键词、描述等是否符合搜索引擎收录规范 。

您的足迹:

常用入口: ip查询gzip检测网页分析自动排版