<%@LANGUAGE="VBSCRIPT"%> <% Dim Recordset1__MMColParam Recordset1__MMColParam = "组织建设" If (Request("MM_EmptyValue") <> "") Then Recordset1__MMColParam = Request("MM_EmptyValue") End If %> <% Dim Recordset1 Dim Recordset1_numRows Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_connnews_STRING Recordset1.Source = "SELECT * FROM newsData WHERE news_type = '" + Replace(Recordset1__MMColParam, "'", "''") + "' ORDER BY news_time DESC" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2 Recordset1.LockType = 1 Recordset1.Open() Recordset1_numRows = 0 %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = 15 Repeat1__index = 0 Recordset1_numRows = Recordset1_numRows + Repeat1__numRows %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim Recordset1_total Dim Recordset1_first Dim Recordset1_last ' set the record count Recordset1_total = Recordset1.RecordCount ' set the number of rows displayed on this page If (Recordset1_numRows < 0) Then Recordset1_numRows = Recordset1_total Elseif (Recordset1_numRows = 0) Then Recordset1_numRows = 1 End If ' set the first and last displayed record Recordset1_first = 1 Recordset1_last = Recordset1_first + Recordset1_numRows - 1 ' if we have the correct record count, check the other stats If (Recordset1_total <> -1) Then If (Recordset1_first > Recordset1_total) Then Recordset1_first = Recordset1_total End If If (Recordset1_last > Recordset1_total) Then Recordset1_last = Recordset1_total End If If (Recordset1_numRows > Recordset1_total) Then Recordset1_numRows = Recordset1_total End If End If %> <% ' *** Recordset Stats: if we don't know the record count, manually count them If (Recordset1_total = -1) Then ' count the total records by iterating through the recordset Recordset1_total=0 While (Not Recordset1.EOF) Recordset1_total = Recordset1_total + 1 Recordset1.MoveNext Wend ' reset the cursor to the beginning If (Recordset1.CursorType > 0) Then Recordset1.MoveFirst Else Recordset1.Requery End If ' set the number of rows displayed on this page If (Recordset1_numRows < 0 Or Recordset1_numRows > Recordset1_total) Then Recordset1_numRows = Recordset1_total End If ' set the first and last displayed record Recordset1_first = 1 Recordset1_last = Recordset1_first + Recordset1_numRows - 1 If (Recordset1_first > Recordset1_total) Then Recordset1_first = Recordset1_total End If If (Recordset1_last > Recordset1_total) Then Recordset1_last = Recordset1_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 = Recordset1 MM_rsCount = Recordset1_total MM_size = Recordset1_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 Recordset1_first = MM_offset + 1 Recordset1_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (Recordset1_first > MM_rsCount) Then Recordset1_first = MM_rsCount End If If (Recordset1_last > MM_rsCount) Then Recordset1_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 %> 浙江旅游职业学院团委
设为首页 | 加入收藏 | 联系我们 
    首   页 |  团委概况 |  组织建设  |  规章制度  |  理论学习 |  团史知识 |  文件资料  |  历史回顾  |  管理登录  | 学院网站 |

 
 
 
 
当前位置:首页-->社团联合会


社团联合委员会
组织机构设置办法及工作职责


    浙江旅游职业学院学生社团联合会(以下简称“社联”)组织机构是为了领导和团结我院学生社团,积极组织高水平、高标准的学生社团活动,从而使我院社团真正能成为广大同学们的第二课堂和精神家园而设置的。
    社联实行委员会领导下的部长负责制,设主席一名,副主席一名,社联下设7个职能部门:秘书处、策划部、人力资源部、财务部、宣传部、外联部、信息部及4个直属机构:酒店管理学院分会、旅行社管理系分会、旅游规划系分会、外语系分会。

 【社团联合会主席】

1.在院团委指导、监督下全面主持社团联合会工作,负责社联日常各项决议;
2.负责组织召开社团联合会部门会议、各社团负责人会议等各类会议;
3.负责协调统筹社联与学院内部、下属各部门、各直属机构的关系,以及与兄弟院校的联系与活动开展。


【社团联合会副主席】

1.协助主席开展工作,处理日常事务;
2.负责分管社联各类活动的计划、开展情况与总结,指导、监督各社团各类活动的开展,协调活动所涉及的部门;
3.当主席外出时,由副主席代理主席主持所有日常事务。

 【社团联合会秘书处】

1、据社联有关决议、决定及主席指示起草和发布通知、通告及其他文件;
2、参与审核、张贴社联各职能部门的通知及其他告示;
3、负责社联档案资料的管理及各职能部门直属机构文档材料的年度归类、整理工作,监督、指导各社联分会的档案管理工作;
4、负责对社联常务委员集体办公、社联常务委员例会、紧急办公会议等会议的通知、等组织工作。会议期间,认真做好会议签到及会议记录; 
5、负责做好对社联办公室、会议室的管理工作,认真落实院社联工作职责、办公室值班制度及会议室使用制度。 

【社团联合会策划部】

1、根据主席团指示,认真做好对大型社团活动的组织计划,及时递交详细、完善的活动计划及活动总结;

2、负责管理及参与审核下属各直属机构社团的各类活动计划、总结; 

3、及时将有关文件向信息部汇报、递交; 

4、有义务向主席提交各类议案的修正案; 

5、负责社团考核评定。

 【社团联合会人力资源部】

1、负责监督、指导各社联分会建立社员花名册,及时掌握社员信息;

2、负责做好各社团社长和团支书培训工作及资格证考试和考核工作;

3、负责监督、指导各社联分会做好各社团注册工作,根据社团评优相关制度、办法,认真、务实地开展优秀干部评定工作;

4、社长换届时发送任命书,将各干部的辞呈提交主席; 

5、与监督委员会紧密联系,提出下一任监督委员会草案;

6、负责组织各部门干事的聘用工作。 

【社团联合会财务部】 

1、与制定并负责落实社联有关财务工作的制度、办法;

2、负责做好对各社团财务的监督,定期抽查社团财务报表,以及审核各项活动的金费预算;

3、负责清查及管理社联各项财物;

4、负责假日影院的各项工作。 

【社团联合会宣传部】 

1、与制定并贯彻执行社联宣传工作计划; 

2、审批社联下属各部门宣传通知、海报的张贴申请;

3、负责监督、指导下属五个社联分会的宣传方案;

4、及时制作社联各职能部门需要张贴的通知及其他告示,及时为社联各类大型活动设计制作各种宣传资料;

5、建立宣传文档并定期上交秘书处。 

【社团联合会外联部】

1、与制定并执行社联在对外联系交流方面的工作计划;

2、负责做好社联与其他院校社联的联系和对外接待工作; 

3、负责做好社联各部门合作,从多种渠道筹集社联大型活动经费筹集工作; 

4、整理各社团外联档案,参与接洽工作。

 【社团联合会信息部】

1、与制定并贯彻执行社联信息发布工作计划;

2、负责做好学院网站有关社联活动的信息发布及社联相关网页的内容增补工作;

3、于社联信息发布的一切相关工作;

4、负责编写社团日历;

5、负责与学院的主宣处联系,负责社团活动的电子宣传。 

社团联合会分会主席

1.根据主席团指示,全面负责管理分会各社团工作; 
2.监督、指导分会各社长、团支书开展社团工作;
3.负责组织召开分会社团负责人会议,及时传达社联指示精神及日常工作安排,并及时将社团建议、意见反馈给社联,做好“上传下达”的工作;
4.团结、联合分会各社团,积极策划、组织分会大型活动;
5.负责联系、帮助分会各社团开展活动,及时通报系(院)学生活动指导老师;
6.负责组织每学期社团汇报,配合院社团活动;
7.下属分会其他部门职责根据分会组建及参与的各项活动而定。



版权所有:中国共青团 浙江旅游职业学院 委员会
Copyright©2005 www.tczj.net All Right Reserved.
E-MAIL: tw@tczj.net 电话:0571-82838032

<% Recordset1.Close() Set Recordset1 = Nothing %>