Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dakong-digital-management
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
dakong-digital-management
Commits
a50e99d1
Commit
a50e99d1
authored
Aug 20, 2024
by
耿迪迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目资料
parent
b5353705
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
1271 additions
and
2 deletions
+1271
-2
TProductProjectController.java
...ong/web/controller/project/TProductProjectController.java
+103
-0
application.yml
digital-management-admin/src/main/resources/application.yml
+2
-2
TProductProject.java
...ava/com/zehong/system/domain/project/TProductProject.java
+194
-0
TProductProjectMapper.java
...m/zehong/system/mapper/project/TProductProjectMapper.java
+61
-0
TProductProjectServiceImpl.java
...stem/service/impl/project/TProductProjectServiceImpl.java
+95
-0
ITProductProjectService.java
...ehong/system/service/project/ITProductProjectService.java
+61
-0
TProductProjectMapper.xml
...c/main/resources/mapper/project/TProductProjectMapper.xml
+104
-0
info.js
digital-management-web/src/api/project/info.js
+53
-0
zehong.scss
digital-management-web/src/assets/styles/zehong.scss
+5
-0
DetailInfo.vue
...ment-web/src/views/project/info/components/DetailInfo.vue
+99
-0
index.vue
digital-management-web/src/views/project/info/index.vue
+494
-0
No files found.
digital-management-admin/src/main/java/com/zehong/web/controller/project/TProductProjectController.java
0 → 100644
View file @
a50e99d1
package
com
.
zehong
.
web
.
controller
.
project
;
import
java.util.List
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.zehong.common.annotation.Log
;
import
com.zehong.common.core.controller.BaseController
;
import
com.zehong.common.core.domain.AjaxResult
;
import
com.zehong.common.enums.BusinessType
;
import
com.zehong.system.domain.project.TProductProject
;
import
com.zehong.system.service.project.ITProductProjectService
;
import
com.zehong.common.utils.poi.ExcelUtil
;
import
com.zehong.common.core.page.TableDataInfo
;
/**
* 项目资料Controller
*
* @author zehong
* @date 2024-08-19
*/
@RestController
@RequestMapping
(
"/project/info"
)
public
class
TProductProjectController
extends
BaseController
{
@Autowired
private
ITProductProjectService
tProductProjectService
;
/**
* 查询项目资料列表
*/
//@PreAuthorize("@ss.hasPermi('system:project:list')")
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
TProductProject
tProductProject
)
{
startPage
();
List
<
TProductProject
>
list
=
tProductProjectService
.
selectTProductProjectList
(
tProductProject
);
return
getDataTable
(
list
);
}
/**
* 导出项目资料列表
*/
//@PreAuthorize("@ss.hasPermi('system:project:export')")
@Log
(
title
=
"项目资料"
,
businessType
=
BusinessType
.
EXPORT
)
@GetMapping
(
"/export"
)
public
AjaxResult
export
(
TProductProject
tProductProject
)
{
List
<
TProductProject
>
list
=
tProductProjectService
.
selectTProductProjectList
(
tProductProject
);
ExcelUtil
<
TProductProject
>
util
=
new
ExcelUtil
<
TProductProject
>(
TProductProject
.
class
);
return
util
.
exportExcel
(
list
,
"项目资料数据"
);
}
/**
* 获取项目资料详细信息
*/
//@PreAuthorize("@ss.hasPermi('system:project:query')")
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
return
AjaxResult
.
success
(
tProductProjectService
.
selectTProductProjectById
(
id
));
}
/**
* 新增项目资料
*/
//@PreAuthorize("@ss.hasPermi('system:project:add')")
@Log
(
title
=
"项目资料"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
public
AjaxResult
add
(
@RequestBody
TProductProject
tProductProject
)
{
return
toAjax
(
tProductProjectService
.
insertTProductProject
(
tProductProject
));
}
/**
* 修改项目资料
*/
//@PreAuthorize("@ss.hasPermi('system:project:edit')")
@Log
(
title
=
"项目资料"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
public
AjaxResult
edit
(
@RequestBody
TProductProject
tProductProject
)
{
return
toAjax
(
tProductProjectService
.
updateTProductProject
(
tProductProject
));
}
/**
* 删除项目资料
*/
//@PreAuthorize("@ss.hasPermi('system:project:remove')")
@Log
(
title
=
"项目资料"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
{
return
toAjax
(
tProductProjectService
.
deleteTProductProjectByIds
(
ids
));
}
}
digital-management-admin/src/main/resources/application.yml
View file @
a50e99d1
...
@@ -31,9 +31,9 @@ spring:
...
@@ -31,9 +31,9 @@ spring:
servlet
:
servlet
:
multipart
:
multipart
:
# 单个文件大小
# 单个文件大小
max-file-size
:
1
0MB
max-file-size
:
5
0MB
# 设置总上传的文件大小
# 设置总上传的文件大小
max-request-size
:
2
0MB
max-request-size
:
5
0MB
# 服务模块
# 服务模块
devtools
:
devtools
:
restart
:
restart
:
...
...
digital-management-system/src/main/java/com/zehong/system/domain/project/TProductProject.java
0 → 100644
View file @
a50e99d1
package
com
.
zehong
.
system
.
domain
.
project
;
import
java.util.Date
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
com.zehong.common.annotation.Excel
;
import
com.zehong.common.core.domain.BaseEntity
;
/**
* 项目资料对象 t_product_project
*
* @author zehong
* @date 2024-08-19
*/
public
class
TProductProject
extends
BaseEntity
{
private
static
final
long
serialVersionUID
=
1L
;
/** $column.columnComment */
private
Long
id
;
/** 项目名称 */
@Excel
(
name
=
"项目名称"
)
private
String
title
;
/** 项目编号 */
@Excel
(
name
=
"项目编号"
)
private
String
number
;
/** 项目分类 */
@Excel
(
name
=
"项目分类"
,
dictType
=
"t_project_type"
)
private
String
cateId
;
/** 项目描述 */
private
String
content
;
/** 开始时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"开始时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
starttime
;
/** 结束时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"结束时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
endtime
;
/** 项目附件 */
@Excel
(
name
=
"项目附近"
)
private
String
fileUrl
;
/** 负责人 */
@Excel
(
name
=
"负责人"
)
private
String
username
;
/** 联系电话 */
@Excel
(
name
=
"联系电话"
)
private
String
tel
;
/** 项目状态 */
@Excel
(
name
=
"项目状态"
,
dictType
=
"t_project_status"
)
private
String
status
;
/** $column.columnComment */
private
Long
createId
;
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setTitle
(
String
title
)
{
this
.
title
=
title
;
}
public
String
getTitle
()
{
return
title
;
}
public
void
setNumber
(
String
number
)
{
this
.
number
=
number
;
}
public
String
getNumber
()
{
return
number
;
}
public
void
setCateId
(
String
cateId
)
{
this
.
cateId
=
cateId
;
}
public
String
getCateId
()
{
return
cateId
;
}
public
void
setContent
(
String
content
)
{
this
.
content
=
content
;
}
public
String
getContent
()
{
return
content
;
}
public
void
setStarttime
(
Date
starttime
)
{
this
.
starttime
=
starttime
;
}
public
Date
getStarttime
()
{
return
starttime
;
}
public
void
setEndtime
(
Date
endtime
)
{
this
.
endtime
=
endtime
;
}
public
Date
getEndtime
()
{
return
endtime
;
}
public
void
setFileUrl
(
String
fileUrl
)
{
this
.
fileUrl
=
fileUrl
;
}
public
String
getFileUrl
()
{
return
fileUrl
;
}
public
void
setUsername
(
String
username
)
{
this
.
username
=
username
;
}
public
String
getUsername
()
{
return
username
;
}
public
void
setTel
(
String
tel
)
{
this
.
tel
=
tel
;
}
public
String
getTel
()
{
return
tel
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
;
}
public
String
getStatus
()
{
return
status
;
}
public
void
setCreateId
(
Long
createId
)
{
this
.
createId
=
createId
;
}
public
Long
getCreateId
()
{
return
createId
;
}
@Override
public
String
toString
()
{
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
.
append
(
"id"
,
getId
())
.
append
(
"title"
,
getTitle
())
.
append
(
"number"
,
getNumber
())
.
append
(
"cateId"
,
getCateId
())
.
append
(
"content"
,
getContent
())
.
append
(
"starttime"
,
getStarttime
())
.
append
(
"endtime"
,
getEndtime
())
.
append
(
"fileUrl"
,
getFileUrl
())
.
append
(
"username"
,
getUsername
())
.
append
(
"tel"
,
getTel
())
.
append
(
"status"
,
getStatus
())
.
append
(
"createTime"
,
getCreateTime
())
.
append
(
"createId"
,
getCreateId
())
.
toString
();
}
}
digital-management-system/src/main/java/com/zehong/system/mapper/project/TProductProjectMapper.java
0 → 100644
View file @
a50e99d1
package
com
.
zehong
.
system
.
mapper
.
project
;
import
java.util.List
;
import
com.zehong.system.domain.project.TProductProject
;
/**
* 项目资料Mapper接口
*
* @author zehong
* @date 2024-08-19
*/
public
interface
TProductProjectMapper
{
/**
* 查询项目资料
*
* @param id 项目资料ID
* @return 项目资料
*/
public
TProductProject
selectTProductProjectById
(
Long
id
);
/**
* 查询项目资料列表
*
* @param tProductProject 项目资料
* @return 项目资料集合
*/
public
List
<
TProductProject
>
selectTProductProjectList
(
TProductProject
tProductProject
);
/**
* 新增项目资料
*
* @param tProductProject 项目资料
* @return 结果
*/
public
int
insertTProductProject
(
TProductProject
tProductProject
);
/**
* 修改项目资料
*
* @param tProductProject 项目资料
* @return 结果
*/
public
int
updateTProductProject
(
TProductProject
tProductProject
);
/**
* 删除项目资料
*
* @param id 项目资料ID
* @return 结果
*/
public
int
deleteTProductProjectById
(
Long
id
);
/**
* 批量删除项目资料
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public
int
deleteTProductProjectByIds
(
Long
[]
ids
);
}
digital-management-system/src/main/java/com/zehong/system/service/impl/project/TProductProjectServiceImpl.java
0 → 100644
View file @
a50e99d1
package
com
.
zehong
.
system
.
service
.
impl
.
project
;
import
java.util.List
;
import
com.zehong.common.utils.DateUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
com.zehong.system.mapper.project.TProductProjectMapper
;
import
com.zehong.system.domain.project.TProductProject
;
import
com.zehong.system.service.project.ITProductProjectService
;
/**
* 项目资料Service业务层处理
*
* @author zehong
* @date 2024-08-19
*/
@Service
public
class
TProductProjectServiceImpl
implements
ITProductProjectService
{
@Autowired
private
TProductProjectMapper
tProductProjectMapper
;
/**
* 查询项目资料
*
* @param id 项目资料ID
* @return 项目资料
*/
@Override
public
TProductProject
selectTProductProjectById
(
Long
id
)
{
return
tProductProjectMapper
.
selectTProductProjectById
(
id
);
}
/**
* 查询项目资料列表
*
* @param tProductProject 项目资料
* @return 项目资料
*/
@Override
public
List
<
TProductProject
>
selectTProductProjectList
(
TProductProject
tProductProject
)
{
return
tProductProjectMapper
.
selectTProductProjectList
(
tProductProject
);
}
/**
* 新增项目资料
*
* @param tProductProject 项目资料
* @return 结果
*/
@Override
public
int
insertTProductProject
(
TProductProject
tProductProject
)
{
tProductProject
.
setCreateTime
(
DateUtils
.
getNowDate
());
return
tProductProjectMapper
.
insertTProductProject
(
tProductProject
);
}
/**
* 修改项目资料
*
* @param tProductProject 项目资料
* @return 结果
*/
@Override
public
int
updateTProductProject
(
TProductProject
tProductProject
)
{
return
tProductProjectMapper
.
updateTProductProject
(
tProductProject
);
}
/**
* 批量删除项目资料
*
* @param ids 需要删除的项目资料ID
* @return 结果
*/
@Override
public
int
deleteTProductProjectByIds
(
Long
[]
ids
)
{
return
tProductProjectMapper
.
deleteTProductProjectByIds
(
ids
);
}
/**
* 删除项目资料信息
*
* @param id 项目资料ID
* @return 结果
*/
@Override
public
int
deleteTProductProjectById
(
Long
id
)
{
return
tProductProjectMapper
.
deleteTProductProjectById
(
id
);
}
}
digital-management-system/src/main/java/com/zehong/system/service/project/ITProductProjectService.java
0 → 100644
View file @
a50e99d1
package
com
.
zehong
.
system
.
service
.
project
;
import
java.util.List
;
import
com.zehong.system.domain.project.TProductProject
;
/**
* 项目资料Service接口
*
* @author zehong
* @date 2024-08-19
*/
public
interface
ITProductProjectService
{
/**
* 查询项目资料
*
* @param id 项目资料ID
* @return 项目资料
*/
public
TProductProject
selectTProductProjectById
(
Long
id
);
/**
* 查询项目资料列表
*
* @param tProductProject 项目资料
* @return 项目资料集合
*/
public
List
<
TProductProject
>
selectTProductProjectList
(
TProductProject
tProductProject
);
/**
* 新增项目资料
*
* @param tProductProject 项目资料
* @return 结果
*/
public
int
insertTProductProject
(
TProductProject
tProductProject
);
/**
* 修改项目资料
*
* @param tProductProject 项目资料
* @return 结果
*/
public
int
updateTProductProject
(
TProductProject
tProductProject
);
/**
* 批量删除项目资料
*
* @param ids 需要删除的项目资料ID
* @return 结果
*/
public
int
deleteTProductProjectByIds
(
Long
[]
ids
);
/**
* 删除项目资料信息
*
* @param id 项目资料ID
* @return 结果
*/
public
int
deleteTProductProjectById
(
Long
id
);
}
digital-management-system/src/main/resources/mapper/project/TProductProjectMapper.xml
0 → 100644
View file @
a50e99d1
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.zehong.system.mapper.project.TProductProjectMapper"
>
<resultMap
type=
"TProductProject"
id=
"TProductProjectResult"
>
<result
property=
"id"
column=
"id"
/>
<result
property=
"title"
column=
"title"
/>
<result
property=
"number"
column=
"number"
/>
<result
property=
"cateId"
column=
"cate_id"
/>
<result
property=
"content"
column=
"content"
/>
<result
property=
"starttime"
column=
"starttime"
/>
<result
property=
"endtime"
column=
"endtime"
/>
<result
property=
"fileUrl"
column=
"file_url"
/>
<result
property=
"username"
column=
"username"
/>
<result
property=
"tel"
column=
"tel"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"createTime"
column=
"create_time"
/>
<result
property=
"createId"
column=
"create_id"
/>
</resultMap>
<sql
id=
"selectTProductProjectVo"
>
select id, title, number, cate_id, content, starttime, endtime, file_url, username, tel, status, create_time, create_id from t_product_project
</sql>
<select
id=
"selectTProductProjectList"
parameterType=
"TProductProject"
resultMap=
"TProductProjectResult"
>
<include
refid=
"selectTProductProjectVo"
/>
<where>
<if
test=
"title != null and title != ''"
>
and title like concat('%', #{title}, '%')
</if>
<if
test=
"number != null and number != ''"
>
and `number` like concat('%', #{number}, '%')
</if>
<if
test=
"cateId != null and cateId != ''"
>
and cate_id = #{cateId}
</if>
<if
test=
"status != null and status != ''"
>
and status = #{status}
</if>
</where>
order by create_time desc
</select>
<select
id=
"selectTProductProjectById"
parameterType=
"Long"
resultMap=
"TProductProjectResult"
>
<include
refid=
"selectTProductProjectVo"
/>
where id = #{id}
</select>
<insert
id=
"insertTProductProject"
parameterType=
"TProductProject"
useGeneratedKeys=
"true"
keyProperty=
"id"
>
insert into t_product_project
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"title != null"
>
title,
</if>
<if
test=
"number != null"
>
`number`,
</if>
<if
test=
"cateId != null"
>
cate_id,
</if>
<if
test=
"content != null"
>
content,
</if>
<if
test=
"starttime != null"
>
starttime,
</if>
<if
test=
"endtime != null"
>
endtime,
</if>
<if
test=
"fileUrl != null"
>
file_url,
</if>
<if
test=
"username != null"
>
username,
</if>
<if
test=
"tel != null"
>
tel,
</if>
<if
test=
"status != null"
>
status,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"createId != null"
>
create_id,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"title != null"
>
#{title},
</if>
<if
test=
"number != null"
>
#{number},
</if>
<if
test=
"cateId != null"
>
#{cateId},
</if>
<if
test=
"content != null"
>
#{content},
</if>
<if
test=
"starttime != null"
>
#{starttime},
</if>
<if
test=
"endtime != null"
>
#{endtime},
</if>
<if
test=
"fileUrl != null"
>
#{fileUrl},
</if>
<if
test=
"username != null"
>
#{username},
</if>
<if
test=
"tel != null"
>
#{tel},
</if>
<if
test=
"status != null"
>
#{status},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
<if
test=
"createId != null"
>
#{createId},
</if>
</trim>
</insert>
<update
id=
"updateTProductProject"
parameterType=
"TProductProject"
>
update t_product_project
<trim
prefix=
"SET"
suffixOverrides=
","
>
<if
test=
"title != null"
>
title = #{title},
</if>
<if
test=
"number != null"
>
`number` = #{number},
</if>
<if
test=
"cateId != null"
>
cate_id = #{cateId},
</if>
<if
test=
"content != null"
>
content = #{content},
</if>
<if
test=
"starttime != null"
>
starttime = #{starttime},
</if>
<if
test=
"endtime != null"
>
endtime = #{endtime},
</if>
<if
test=
"fileUrl != null"
>
file_url = #{fileUrl},
</if>
<if
test=
"username != null"
>
username = #{username},
</if>
<if
test=
"tel != null"
>
tel = #{tel},
</if>
<if
test=
"status != null"
>
status = #{status},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime},
</if>
<if
test=
"createId != null"
>
create_id = #{createId},
</if>
</trim>
where id = #{id}
</update>
<delete
id=
"deleteTProductProjectById"
parameterType=
"Long"
>
delete from t_product_project where id = #{id}
</delete>
<delete
id=
"deleteTProductProjectByIds"
parameterType=
"String"
>
delete from t_product_project where id in
<foreach
item=
"id"
collection=
"array"
open=
"("
separator=
","
close=
")"
>
#{id}
</foreach>
</delete>
</mapper>
\ No newline at end of file
digital-management-web/src/api/project/info.js
0 → 100644
View file @
a50e99d1
import
request
from
'@/utils/request'
// 查询项目资料列表
export
function
listProject
(
query
)
{
return
request
({
url
:
'/project/info/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询项目资料详细
export
function
getProject
(
id
)
{
return
request
({
url
:
'/project/info/'
+
id
,
method
:
'get'
})
}
// 新增项目资料
export
function
addProject
(
data
)
{
return
request
({
url
:
'/project/info'
,
method
:
'post'
,
data
:
data
})
}
// 修改项目资料
export
function
updateProject
(
data
)
{
return
request
({
url
:
'/project/info'
,
method
:
'put'
,
data
:
data
})
}
// 删除项目资料
export
function
delProject
(
id
)
{
return
request
({
url
:
'/project/info/'
+
id
,
method
:
'delete'
})
}
// 导出项目资料
export
function
exportProject
(
query
)
{
return
request
({
url
:
'/project/info/export'
,
method
:
'get'
,
params
:
query
})
}
digital-management-web/src/assets/styles/zehong.scss
View file @
a50e99d1
...
@@ -437,3 +437,8 @@
...
@@ -437,3 +437,8 @@
border-color
:
#C4C4C4
;
border-color
:
#C4C4C4
;
}
}
}
}
.el-row-table
{
display
:flex
;
flex-wrap
:
wrap
;
}
digital-management-web/src/views/project/info/components/DetailInfo.vue
0 → 100644
View file @
a50e99d1
<
template
>
<el-dialog
title=
"详情"
:visible
.
sync=
"detailOpen"
width=
"800px"
append-to-body
destroy-on-close
:close-on-click-modal=
"false"
>
<el-form
label-width=
"90px"
>
<el-row
class=
"el-row-table"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"项目名称"
>
<span
v-if=
"detailInfo.title"
>
{{
detailInfo
.
title
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"项目编号"
>
<span
v-if=
"detailInfo.number"
>
{{
detailInfo
.
number
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"项目分类"
>
<span
v-if=
"detailInfo.cateId"
>
{{
$parent
.
cateIdFormat
(
detailInfo
)
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"项目描述"
>
<span
v-if=
"detailInfo.content"
>
{{
detailInfo
.
content
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"开始时间"
>
<span
v-if=
"detailInfo.starttime"
>
{{
detailInfo
.
starttime
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"结束时间"
>
<span
v-if=
"detailInfo.endtime"
>
{{
detailInfo
.
endtime
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"项目附件"
>
<span
v-if=
"detailInfo.fileUrl!=null && detailInfo.fileUrl != ''"
>
<a
style=
"color: #1c84c6"
:href=
"detailInfo.fileUrl"
target=
"_blank"
>
查看/下载
</a>
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"负责人"
>
<span
v-if=
"detailInfo.username"
>
{{
detailInfo
.
username
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"联系电话"
>
<span
v-if=
"detailInfo.tel"
>
{{
detailInfo
.
tel
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-dialog>
</
template
>
<
script
>
import
{
getProject
}
from
"@/api/project/info"
;
export
default
{
name
:
"detail-info"
,
data
(){
return
{
detailOpen
:
false
,
detailInfo
:
{}
}
},
methods
:{
getDetailInfo
(
id
){
getProject
(
id
).
then
(
res
=>
{
if
(
res
.
code
==
200
){
this
.
detailInfo
=
res
.
data
;
this
.
detailOpen
=
true
;
}
})
}
}
}
</
script
>
<
style
scoped
>
</
style
>
digital-management-web/src/views/project/info/index.vue
0 → 100644
View file @
a50e99d1
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment