%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <% Dim jl1 Dim jl1_numRows Set jl1 = Server.CreateObject("ADODB.Recordset") jl1.ActiveConnection = MM_rs1_STRING jl1.Source = "SELECT * FROM biao ORDER BY dtsj DESC" jl1.CursorType = 0 jl1.CursorLocation = 2 jl1.LockType = 1 jl1.Open() jl1_numRows = 0 %> <% Dim jl2 Dim jl2_numRows Set jl2 = Server.CreateObject("ADODB.Recordset") jl2.ActiveConnection = MM_rs2_STRING jl2.Source = "SELECT * FROM tongz ORDER BY tzsj DESC" jl2.CursorType = 0 jl2.CursorLocation = 2 jl2.LockType = 1 jl2.Open() jl2_numRows = 0 %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = 8 Repeat1__index = 0 jl1_numRows = jl1_numRows + Repeat1__numRows %> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = 8 Repeat2__index = 0 jl2_numRows = jl2_numRows + Repeat2__numRows %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim jl1_total Dim jl1_first Dim jl1_last ' set the record count jl1_total = jl1.RecordCount ' set the number of rows displayed on this page If (jl1_numRows < 0) Then jl1_numRows = jl1_total Elseif (jl1_numRows = 0) Then jl1_numRows = 1 End If ' set the first and last displayed record jl1_first = 1 jl1_last = jl1_first + jl1_numRows - 1 ' if we have the correct record count, check the other stats If (jl1_total <> -1) Then If (jl1_first > jl1_total) Then jl1_first = jl1_total End If If (jl1_last > jl1_total) Then jl1_last = jl1_total End If If (jl1_numRows > jl1_total) Then jl1_numRows = jl1_total End If End If %> <% Dim MM_paramName %> <% ' *** Move To Record and Go To Record: declare variables Dim MM_rs Dim MM_rsCount Dim MM_size Dim MM_uniqueCol Dim MM_offset Dim MM_atTotal Dim MM_paramIsDefined Dim MM_param Dim MM_index Set MM_rs = jl1 MM_rsCount = jl1_total MM_size = jl1_numRows MM_uniqueCol = "" MM_paramName = "" MM_offset = 0 MM_atTotal = false MM_paramIsDefined = false If (MM_paramName <> "") Then MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "") End If %> <% ' *** Move To Record: handle 'index' or 'offset' parameter if (Not MM_paramIsDefined And MM_rsCount <> 0) then ' use index parameter if defined, otherwise use offset parameter MM_param = Request.QueryString("index") If (MM_param = "") Then MM_param = Request.QueryString("offset") End If If (MM_param <> "") Then MM_offset = Int(MM_param) End If ' if we have a record count, check if we are past the end of the recordset If (MM_rsCount <> -1) Then If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' move the cursor to the selected record MM_index = 0 While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1)) MM_rs.MoveNext MM_index = MM_index + 1 Wend If (MM_rs.EOF) Then MM_offset = MM_index ' set MM_offset to the last possible record End If End If %> <% ' *** Move To Record: if we dont know the record count, check the display range If (MM_rsCount = -1) Then ' walk to the end of the display range for this page MM_index = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size)) MM_rs.MoveNext MM_index = MM_index + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = MM_index If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount End If End If ' if we walked off the end, set the offset based on page size If (MM_rs.EOF And Not MM_paramIsDefined) Then If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then If ((MM_rsCount Mod MM_size) > 0) Then MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' reset the cursor to the beginning If (MM_rs.CursorType > 0) Then MM_rs.MoveFirst Else MM_rs.Requery End If ' move the cursor to the selected record MM_index = 0 While (Not MM_rs.EOF And MM_index < MM_offset) MM_rs.MoveNext MM_index = MM_index + 1 Wend End If %> <% ' *** Move To Record: update recordset stats ' set the first and last displayed record jl1_first = MM_offset + 1 jl1_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (jl1_first > MM_rsCount) Then jl1_first = MM_rsCount End If If (jl1_last > MM_rsCount) Then jl1_last = MM_rsCount End If End If ' set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount) %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters Dim MM_keepNone Dim MM_keepURL Dim MM_keepForm Dim MM_keepBoth Dim MM_removeList Dim MM_item Dim MM_nextItem ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" End If MM_keepURL="" MM_keepForm="" MM_keepBoth="" MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each MM_item In Request.QueryString MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item)) End If Next ' add the Form variables to the MM_keepForm string For Each MM_item In Request.Form MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item)) End If Next ' create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL & MM_keepForm If (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1) End If If (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) End If If (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) End If ' a utility function used for adding additional parameters to these strings Function MM_joinChar(firstItem) If (firstItem <> "") Then MM_joinChar = "&" Else MM_joinChar = "" End If End Function %> <% ' *** Move To Record: set the strings for the first, last, next, and previous links Dim MM_keepMove Dim MM_moveParam Dim MM_moveFirst Dim MM_moveLast Dim MM_moveNext Dim MM_movePrev Dim MM_urlStr Dim MM_paramList Dim MM_paramIndex Dim MM_nextParam MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 1) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then MM_paramList = Split(MM_keepMove, "&") MM_keepMove = "" For MM_paramIndex = 0 To UBound(MM_paramList) MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1) If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex) End If Next If (MM_keepMove <> "") Then MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1) End If End If End If ' set the strings for the move to links If (MM_keepMove <> "") Then MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&" End If MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = MM_urlStr & "0" MM_moveLast = MM_urlStr & "-1" MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size) If (MM_offset - MM_size < 0) Then MM_movePrev = MM_urlStr & "0" Else MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size) End If %>
![]() |
经济学院专业介绍 咨询电话: 0535-6693110
|
一、院系简介 鲁东大学经济学院是在原政法学院经贸专业的基础上于 2006年2月组建。学院办学的指导思想是以教学为中心,以教育质量为生命线,以培养高素质的经济与贸易专业化人才为目标,为学生将来适应市场经济需要,成为知名的经济学家、企业家、理财家和金融家奠定基础和搭建平台。同时结合我国现代化建设的实践和区域经济社会发展的要求,开展全方位的科学研究,为经济科学的繁荣,为我国的经济发展和社会进步做出贡献。 经济学院设有全日制经济学和国际经济与贸易两个本科专业,一个国际经济与贸易中外合作专科专业,拥有函授国际经济与贸易、经济管理、会计学三个本专科专业。目前,全日制本科在校生1045人,留学生36人,选送赴韩国圆光大学留学的本科生多人。 经济学院现有专职教师26人,其中教授3人,副教授9人;具有硕士、博士学位的教师占教师总数的76.9%,是一支职称、学历、年龄结构合理,业务能力强,教学科研水平高、敬业爱岗的教师队伍。多年来,经济学院全体教师以深化教学改革为动力,努力提高教育教学质量,成绩斐然。在已经毕业的两届国际经济与贸易专业的毕业生中,大学英语四六级过级率连续两年全校第一,学生一次性就业率达到90%。经济学院的毕业生正成为社会欢迎和急需的实用型人才。 经济学院办学条件完善,设施精良。现拥有先进的国际经济与贸易实务模拟实验室、电子阅览室、多媒体教室和多处校外实习基地,为学生全面发展提供了优良的学习和生活环境。为进一步适应经济社会发展的需要和不断深化的教育教学改革,体现“加强基础、拓宽面向、培养能力、提高素质、重视创新、突出特色”的人才培养要求,我院从 2006级开始实施新的人才培养方案,采取“按院系招生、分阶段培养”的教学模式,搭建了基础教育课程、专业教育课程、实践能力与素质提高课程三个教学平台。学生在前两年时间完成基础教育课程的教学,然后在院内自主选择专业,后两年实行通识教育和宽口径学科基础上的专业教育,以最大限度的满足学生的全面发展和市场经济以及社会发展的需要。 经济学院的发展目标是:把经济学院建成有特色、高水平、应用型、国际化的名牌学院。围绕这一目标,学院确立了突出特色、提高质量、提升水平、打造品牌的发展思路 ,重点加强学科建设和师资队伍建设,在人才培养、科学研究、社会服务等方面突显办学特色,形成竞争优势;加强与国内外知名经济学院的交流与合作,实行开放式办学,努力提高教育教学质量、人才培养质量和学术水平。我们相信,经过全院教师的共同努力,一个崭新的、充满生机与活力的经济学院会成为鲁东大学的一个品牌学院。 二、专业简介 1、 国际经济与贸易专业 培养目标:本专业培养的学生应比较系统地掌握马克思主义经济学的基本原理和国际经济、国际贸易的基本理论,掌握国际贸易的基本知识与基本技能,了解当代国际经济贸易的发展现状,熟悉通行的国际贸易规则和惯例以及中国对外贸易的政策法规,了解主要国家与地区的社会经济状况,能在涉外经济贸易部门、外资企业及政府机构从事实际业务、管理、调研和宣传策划工作的高级专门人才。 主要课程: 微观经济学、宏观经济学、国际商法、会计学、金融学、统计学、国际贸易、国际贸易实务、国际金融、国际经济学、国际结算、世界经济概论、国际投资、国际经济合作等。 2、 经济学专业 培养目标:本专业培养具备比较扎实的马克思主义经济学理论基础,熟悉现代西方经济学理论,比较熟练地掌握现代经济分析方法,知识面宽广,具有向经济学相关领域扩展渗透的能力,能在综合经济管理部门、政策研究部门、金融机构和企业从事经济分析、预测、规划与经济管理工作的高级专门人才。 主要课程: 政治经济学、经济学名著选读、西方经济学、会计学、金融学、财政学、计量经济学、国际贸易、统计学、经济学说史、市场营销学、产业经济学、区域经济学、发展经济学等。 |