📄 g_mainplan.asp
字号:
<!--#include file="../include/Pubconn.asp"-->
<!--#include file="../include/PubFun.asp"-->
<!--#include file="../include/PublicWeek.asp"-->
<% username=Getuser()%>
<%
'*****************************
'
'Author:Ruphi Update Time:2001-08-30
'功能:显示登录者今天十天内的计划内容
'说明:对于已审核过的计划或被执行过的计划是不能进行删除与编辑操作。
'
'*****************************
'
%>
<%
set RSzx=server.createobject("adodb.recordset")
str="select * from G_TblClosePlan where ( cdate(closedate) between (date()) and (date()+10) ) and StuffNum='"&Session("UserID")&"' and DepartID='"&Session("DepartID")&"' order by id desc"
RSzx.open str,pubconn,1
'response.write str
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>客户跟进计划主界面</title><link href="cread.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#FFFFFF" >
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="100%"><b><font size="3"><img border="0" src="../pic/it_22.gif">
</font><font size="2">客户跟进计划</font></b><hr width="40%" size="1" align="left">
</td>
</tr>
</table>
<script language="vbscript">
sub GoPage()
a="G_mainplan.asp?page="+document.myform.page1.value
window.location=a
end sub
</script>
<%
if RSzx.eof then %>
<font size="2">您今后10天内无计划。
<br>
</font>
<input type="button" value="新增" name="B1" onclick="location.href='G_plan.asp'" class="hand" style="background-color: #D1D1D1; border-style: solid; border-width: 1">
<input type="button" value="明细查询" name="B1" onclick="location.href='G_plandetail.asp'" class="hand" style="background-color: #D1D1D1; border-style: solid; border-width: 1">
<input type="button" value="统计查询" name="B1" onclick="location.href='G_plantj.asp'" class="hand" style="background-color: #D1D1D1; border-style: solid; border-width: 1">
<input type="button" value="审核" name="B1" onclick="location.href='G_plansh.asp'" class="hand" style="background-color: #D1D1D1; border-style: solid; border-width: 1">
<% Response.End
%>
<%else
if request.querystring("page")<>"" then
page=cint(request.querystring("page"))
else
page=1
end if
RSzx.pagesize=10
if page>=RSzx.pagecount then
page=RSzx.pagecount
else
if page<1 then
page=1
end if
end if
RSzx.absolutepage=page
%>
<br>
<font size="2">您今后10天内的计划安排如下:</font>
<form action="G_plandel.asp" method="post" name="myform">
<table border="1" cellspacing="0" width="100%" height="30">
<tr>
<td width="24" height="24" align="center" bgcolor="#DDD2C4">
</td>
<td width="67" height="24" align="center" bgcolor="#DDD2C4">
<font size="2">计划跟进日期
</font>
</td>
<td width="40" height="24" align="center" bgcolor="#DDD2C4">
<font size="2">星期
</font>
</td>
<td width="73" height="24" align="center" bgcolor="#DDD2C4">
<font size="2">跟进时间
</font>
</td>
<td width="80" height="24" align="center" bgcolor="#DDD2C4">
<font size="2">跟进客户
</font>
</td>
<td width="60" height="24" align="center" bgcolor="#DDD2C4">
<font size="2">跟进对象
</font>
</td>
<td width="59" height="24" align="center" bgcolor="#DDD2C4">
<font size="2">职务
</font>
</td>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -