20250329
This commit is contained in:
parent
ef7a6c7e40
commit
6d70d94a03
Binary file not shown.
Before Width: | Height: | Size: 39 KiB |
|
@ -200,7 +200,7 @@
|
||||||
var userId = '<%=UserId%>';
|
var userId = '<%=UserId%>';
|
||||||
// 进入页面加载全部
|
// 进入页面加载全部
|
||||||
window.onload = function () {
|
window.onload = function () {
|
||||||
getToDo(1)
|
getToDo(1),
|
||||||
getProject(1)
|
getProject(1)
|
||||||
}
|
}
|
||||||
//我的项目
|
//我的项目
|
||||||
|
|
|
@ -170,7 +170,7 @@ namespace FineUIPro.Web
|
||||||
{
|
{
|
||||||
string strSql = @"select ProjectId,ProjectCode,(ProjectCode+' '+ProjectName) as ProjectName,ProjectState,
|
string strSql = @"select ProjectId,ProjectCode,(ProjectCode+' '+ProjectName) as ProjectName,ProjectState,
|
||||||
(case when AttachFile.AttachUrl is not null
|
(case when AttachFile.AttachUrl is not null
|
||||||
then '../../'+RIGHT(AttachFile.AttachUrl, CHARINDEX(',', REVERSE(AttachFile.AttachUrl)) - 1)
|
then '../../' + SUBSTRING(AttachFile.AttachUrl, 1 , CHARINDEX(',',AttachFile.AttachUrl)-1)
|
||||||
else '../../res/images/16.png' end )
|
else '../../res/images/16.png' end )
|
||||||
as AttachUrl
|
as AttachUrl
|
||||||
from Base_Project
|
from Base_Project
|
||||||
|
@ -209,7 +209,7 @@ namespace FineUIPro.Web
|
||||||
{
|
{
|
||||||
string strSql = @"select ProjectId,ProjectCode,(ProjectCode+' '+ProjectName) as ProjectName,ProjectState,
|
string strSql = @"select ProjectId,ProjectCode,(ProjectCode+' '+ProjectName) as ProjectName,ProjectState,
|
||||||
(case when AttachFile.AttachUrl is not null
|
(case when AttachFile.AttachUrl is not null
|
||||||
then '../../'+RIGHT(AttachFile.AttachUrl, CHARINDEX(',', REVERSE(AttachFile.AttachUrl)) - 1)
|
then '../../'+ SUBSTRING(AttachFile.AttachUrl, 1 , CHARINDEX(',',AttachFile.AttachUrl)-1)
|
||||||
else '../../res/images/16.png' end )
|
else '../../res/images/16.png' end )
|
||||||
as AttachUrl
|
as AttachUrl
|
||||||
from Base_Project
|
from Base_Project
|
||||||
|
@ -236,7 +236,7 @@ namespace FineUIPro.Web
|
||||||
{
|
{
|
||||||
string strSql = @"select distinct p.ProjectId,p.ProjectCode,(p.ProjectCode+' '+p.ProjectName) as ProjectName,p.ProjectState
|
string strSql = @"select distinct p.ProjectId,p.ProjectCode,(p.ProjectCode+' '+p.ProjectName) as ProjectName,p.ProjectState
|
||||||
(case when AttachFile.AttachUrl is not null
|
(case when AttachFile.AttachUrl is not null
|
||||||
then '../../'+RIGHT(AttachFile.AttachUrl, CHARINDEX(',', REVERSE(AttachFile.AttachUrl)) - 1)
|
then '../../'+SUBSTRING(AttachFile.AttachUrl, 1 , CHARINDEX(',',AttachFile.AttachUrl)-1)
|
||||||
else '../../res/images/16.png' end )as AttachUrl
|
else '../../res/images/16.png' end )as AttachUrl
|
||||||
from Base_Project p
|
from Base_Project p
|
||||||
left join Project_ProjectUser as pu on pu.ProjectId = p.ProjectId
|
left join Project_ProjectUser as pu on pu.ProjectId = p.ProjectId
|
||||||
|
@ -268,7 +268,7 @@ namespace FineUIPro.Web
|
||||||
{
|
{
|
||||||
string strSql = @"select ProjectId,ProjectCode,(ProjectCode+' '+ProjectName) as ProjectName,ProjectState,
|
string strSql = @"select ProjectId,ProjectCode,(ProjectCode+' '+ProjectName) as ProjectName,ProjectState,
|
||||||
(case when AttachFile.AttachUrl is not null
|
(case when AttachFile.AttachUrl is not null
|
||||||
then '../../'+RIGHT(AttachFile.AttachUrl, CHARINDEX(',', REVERSE(AttachFile.AttachUrl)) - 1)
|
then '../../'+SUBSTRING(AttachFile.AttachUrl, 1 , CHARINDEX(',',AttachFile.AttachUrl)-1)
|
||||||
else '../../res/images/16.png' end )
|
else '../../res/images/16.png' end )
|
||||||
as AttachUrl
|
as AttachUrl
|
||||||
from Base_Project
|
from Base_Project
|
||||||
|
@ -295,7 +295,7 @@ namespace FineUIPro.Web
|
||||||
{
|
{
|
||||||
string strSql = @"select distinct p.ProjectId,p.ProjectCode,(p.ProjectCode+' '+p.ProjectName) as ProjectName,p.ProjectState,
|
string strSql = @"select distinct p.ProjectId,p.ProjectCode,(p.ProjectCode+' '+p.ProjectName) as ProjectName,p.ProjectState,
|
||||||
(case when AttachFile.AttachUrl is not null
|
(case when AttachFile.AttachUrl is not null
|
||||||
then '../../'+RIGHT(AttachFile.AttachUrl, CHARINDEX(',', REVERSE(AttachFile.AttachUrl)) - 1)
|
then '../../'+SUBSTRING(AttachFile.AttachUrl, 1 , CHARINDEX(',',AttachFile.AttachUrl)-1)
|
||||||
else '../../res/images/16.png' end ) as AttachUrl
|
else '../../res/images/16.png' end ) as AttachUrl
|
||||||
from Base_Project p
|
from Base_Project p
|
||||||
left join Project_ProjectUser as pu on pu.ProjectId = p.ProjectId
|
left join Project_ProjectUser as pu on pu.ProjectId = p.ProjectId
|
||||||
|
|
Loading…
Reference in New Issue