Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zh-baseversion-project
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
王浩
zh-baseversion-project
Commits
7d6b0f5d
Commit
7d6b0f5d
authored
Jul 15, 2024
by
wanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 第三方施工-项目档案-调整成 企业 录入数据,上传给 政府,政府查看后,再上传给 省平台。
parent
bd5a1722
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
206 additions
and
14 deletions
+206
-14
TConGasProInforController.java
.../web/controller/thirdbuild/TConGasProInforController.java
+11
-0
TConGasProInfor.java
...c/main/java/com/zehong/system/domain/TConGasProInfor.java
+52
-0
TConGasProInforMapper.java
.../java/com/zehong/system/mapper/TConGasProInforMapper.java
+8
-0
ITConGasProInforService.java
...va/com/zehong/system/service/ITConGasProInforService.java
+7
-0
TConGasProInforServiceImpl.java
...ehong/system/service/impl/TConGasProInforServiceImpl.java
+24
-6
TConGasProInforMapper.xml
...rc/main/resources/mapper/system/TConGasProInforMapper.xml
+28
-3
project.js
zh-baseversion-web/src/api/thirdbuild/project.js
+9
-0
index.vue
zh-baseversion-web/src/views/thirdbuild/project/index.vue
+67
-5
No files found.
zh-baseversion-admin/src/main/java/com/zehong/web/controller/thirdbuild/TConGasProInforController.java
View file @
7d6b0f5d
...
@@ -114,4 +114,15 @@ public class TConGasProInforController extends BaseController
...
@@ -114,4 +114,15 @@ public class TConGasProInforController extends BaseController
return
AjaxResult
.
error
(
"上传第三方施工接口异常"
);
return
AjaxResult
.
error
(
"上传第三方施工接口异常"
);
}
}
}
}
/**
* 企业端上传第三方施工
* @param fConGasProInforId 第三方施工id
* @return
*/
@GetMapping
(
"/entReportConGasProInfo"
)
public
AjaxResult
entReportConGasProInfo
(
Long
fConGasProInforId
){
return
toAjax
(
tConGasProInforService
.
entReportConGasProInfo
(
fConGasProInforId
));
}
}
}
zh-baseversion-system/src/main/java/com/zehong/system/domain/TConGasProInfor.java
View file @
7d6b0f5d
package
com
.
zehong
.
system
.
domain
;
package
com
.
zehong
.
system
.
domain
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
com.zehong.common.annotation.Excel
;
import
com.zehong.common.annotation.Excel
;
import
com.zehong.common.core.domain.BaseEntity
;
import
com.zehong.common.core.domain.BaseEntity
;
import
java.util.Date
;
/**
/**
* 第三方施工-涉气第三方施工项目档案对象 t_con_gas_pro_infor
* 第三方施工-涉气第三方施工项目档案对象 t_con_gas_pro_infor
*
*
...
@@ -183,6 +186,23 @@ public class TConGasProInfor extends BaseEntity
...
@@ -183,6 +186,23 @@ public class TConGasProInfor extends BaseEntity
@Excel
(
name
=
"最后修改时间"
)
@Excel
(
name
=
"最后修改时间"
)
private
String
fUpdateTime
;
private
String
fUpdateTime
;
/**
* 企业端上传时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
entUploadTime
;
/**
* 企业端上传状态 0-未上传,1-已上传*/
private
String
entUploadState
;
/**
* 政府端上传时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
govUploadTime
;
/**
* 企业端上传状态 0-未上传,1-已上传*/
private
String
govUploadState
;
public
void
setfConGasProInforId
(
Long
fConGasProInforId
)
public
void
setfConGasProInforId
(
Long
fConGasProInforId
)
{
{
this
.
fConGasProInforId
=
fConGasProInforId
;
this
.
fConGasProInforId
=
fConGasProInforId
;
...
@@ -544,6 +564,38 @@ public class TConGasProInfor extends BaseEntity
...
@@ -544,6 +564,38 @@ public class TConGasProInfor extends BaseEntity
return
fUpdateTime
;
return
fUpdateTime
;
}
}
public
Date
getEntUploadTime
()
{
return
entUploadTime
;
}
public
void
setEntUploadTime
(
Date
entUploadTime
)
{
this
.
entUploadTime
=
entUploadTime
;
}
public
String
getEntUploadState
()
{
return
entUploadState
;
}
public
void
setEntUploadState
(
String
entUploadState
)
{
this
.
entUploadState
=
entUploadState
;
}
public
Date
getGovUploadTime
()
{
return
govUploadTime
;
}
public
void
setGovUploadTime
(
Date
govUploadTime
)
{
this
.
govUploadTime
=
govUploadTime
;
}
public
String
getGovUploadState
()
{
return
govUploadState
;
}
public
void
setGovUploadState
(
String
govUploadState
)
{
this
.
govUploadState
=
govUploadState
;
}
@Override
@Override
public
String
toString
()
{
public
String
toString
()
{
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
...
...
zh-baseversion-system/src/main/java/com/zehong/system/mapper/TConGasProInforMapper.java
View file @
7d6b0f5d
package
com
.
zehong
.
system
.
mapper
;
package
com
.
zehong
.
system
.
mapper
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
com.zehong.system.domain.TConGasProInfor
;
import
com.zehong.system.domain.TConGasProInfor
;
import
org.apache.ibatis.annotations.Param
;
/**
/**
* 第三方施工-涉气第三方施工项目档案Mapper接口
* 第三方施工-涉气第三方施工项目档案Mapper接口
...
@@ -43,6 +45,12 @@ public interface TConGasProInforMapper
...
@@ -43,6 +45,12 @@ public interface TConGasProInforMapper
*/
*/
public
int
updateTConGasProInfor
(
TConGasProInfor
tConGasProInfor
);
public
int
updateTConGasProInfor
(
TConGasProInfor
tConGasProInfor
);
/**
*
* 根据id修改 企业端上传状态*/
public
int
updateEntUploadStateById
(
@Param
(
"state"
)
String
state
,
@Param
(
"entUploadTime"
)
Date
entUploadTime
,
@Param
(
"fConGasProInforId"
)
Long
fConGasProInforId
);
/**
/**
* 删除第三方施工-涉气第三方施工项目档案
* 删除第三方施工-涉气第三方施工项目档案
*
*
...
...
zh-baseversion-system/src/main/java/com/zehong/system/service/ITConGasProInforService.java
View file @
7d6b0f5d
...
@@ -65,4 +65,11 @@ public interface ITConGasProInforService
...
@@ -65,4 +65,11 @@ public interface ITConGasProInforService
* @return
* @return
*/
*/
int
reportConGasProInfo
(
Long
fConGasProInforId
)
throws
Exception
;
int
reportConGasProInfo
(
Long
fConGasProInforId
)
throws
Exception
;
/**
* 企业端上传数据
* @param fConGasProInforId id
* @return
*/
int
entReportConGasProInfo
(
Long
fConGasProInforId
);
}
}
zh-baseversion-system/src/main/java/com/zehong/system/service/impl/TConGasProInforServiceImpl.java
View file @
7d6b0f5d
package
com
.
zehong
.
system
.
service
.
impl
;
package
com
.
zehong
.
system
.
service
.
impl
;
import
com.alibaba.fastjson.JSONObject
;
import
com.alibaba.fastjson.JSONObject
;
import
com.zehong.common.core.domain.entity.SysRole
;
import
com.zehong.common.core.domain.model.LoginUser
;
import
com.zehong.common.exception.CustomException
;
import
com.zehong.common.exception.CustomException
;
import
com.zehong.common.utils.DateUtils
;
import
com.zehong.common.utils.*
;
import
com.zehong.common.utils.GovernmentDataCopyUtil
;
import
com.zehong.common.utils.GovernmentDataUtil
;
import
com.zehong.common.utils.StringUtils
;
import
com.zehong.system.domain.SysSetting
;
import
com.zehong.system.domain.SysSetting
;
import
com.zehong.system.domain.TConGasProInfor
;
import
com.zehong.system.domain.TConGasProInfor
;
import
com.zehong.system.domain.vo.TConGasProInforVo
;
import
com.zehong.system.domain.vo.TConGasProInforVo
;
...
@@ -37,7 +36,7 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
...
@@ -37,7 +36,7 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
{
{
private
static
final
Logger
log
=
LoggerFactory
.
getLogger
(
TConGasProInforServiceImpl
.
class
);
private
static
final
Logger
log
=
LoggerFactory
.
getLogger
(
TConGasProInforServiceImpl
.
class
);
@
Autowired
@
Resource
private
TConGasProInforMapper
tConGasProInforMapper
;
private
TConGasProInforMapper
tConGasProInforMapper
;
@Resource
@Resource
...
@@ -70,6 +69,11 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
...
@@ -70,6 +69,11 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
@Override
@Override
public
List
<
TConGasProInfor
>
selectTConGasProInforList
(
TConGasProInfor
tConGasProInfor
)
public
List
<
TConGasProInfor
>
selectTConGasProInforList
(
TConGasProInfor
tConGasProInfor
)
{
{
SysRole
sysRole
=
SecurityUtils
.
getLoginUser
().
getUser
().
getRoles
().
get
(
0
);
if
(
sysRole
.
getRoleId
()
!=
1
&&
sysRole
.
getRoleId
()
!=
5
)
{
tConGasProInfor
.
setEntUploadState
(
"1"
);
}
return
tConGasProInforMapper
.
selectTConGasProInforList
(
tConGasProInfor
);
return
tConGasProInforMapper
.
selectTConGasProInforList
(
tConGasProInfor
);
}
}
...
@@ -128,7 +132,7 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
...
@@ -128,7 +132,7 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
}
}
/**
/**
* 上传第三方施工
*
政府端
上传第三方施工
* @param fConGasProInforId 第三方施工id
* @param fConGasProInforId 第三方施工id
* @return
* @return
*/
*/
...
@@ -143,6 +147,20 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
...
@@ -143,6 +147,20 @@ public class TConGasProInforServiceImpl implements ITConGasProInforService
JSONObject
reportResult
=
governmentDataUtil
.
setInfo
(
"construction/gas/project/information"
,
"WRITE"
,
data
);
JSONObject
reportResult
=
governmentDataUtil
.
setInfo
(
"construction/gas/project/information"
,
"WRITE"
,
data
);
log
.
info
(
"上传第三方施工结果==================="
+
reportResult
.
toJSONString
());
log
.
info
(
"上传第三方施工结果==================="
+
reportResult
.
toJSONString
());
if
(!
"0"
.
equals
(
reportResult
.
getString
(
"resultCode"
)))
throw
new
CustomException
(
"上传第三方施工接口失败"
);
if
(!
"0"
.
equals
(
reportResult
.
getString
(
"resultCode"
)))
throw
new
CustomException
(
"上传第三方施工接口失败"
);
conGasProInfor
.
setGovUploadState
(
"1"
);
conGasProInfor
.
setGovUploadTime
(
new
Date
());
tConGasProInforMapper
.
updateTConGasProInfor
(
conGasProInfor
);
return
1
;
}
/**
* 企业端上传数据
* @param fConGasProInforId id
* @return
*/
@Override
public
int
entReportConGasProInfo
(
Long
fConGasProInforId
)
{
tConGasProInforMapper
.
updateEntUploadStateById
(
"1"
,
new
Date
(),
fConGasProInforId
);
return
1
;
return
1
;
}
}
}
}
zh-baseversion-system/src/main/resources/mapper/system/TConGasProInforMapper.xml
View file @
7d6b0f5d
...
@@ -45,10 +45,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -45,10 +45,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"fGasCompanyStationPhone"
column=
"f_gas_company_station_phone"
/>
<result
property=
"fGasCompanyStationPhone"
column=
"f_gas_company_station_phone"
/>
<result
property=
"fRemark"
column=
"f_remark"
/>
<result
property=
"fRemark"
column=
"f_remark"
/>
<result
property=
"fUpdateTime"
column=
"f_update_time"
/>
<result
property=
"fUpdateTime"
column=
"f_update_time"
/>
<result
property=
"entUploadTime"
column=
"f_ent_upload_time"
/>
<result
property=
"entUploadState"
column=
"f_ent_upload_state"
/>
<result
property=
"govUploadTime"
column=
"f_gov_upload_time"
/>
<result
property=
"govUploadState"
column=
"f_gov_upload_state"
/>
</resultMap>
</resultMap>
<sql
id=
"selectTConGasProInforVo"
>
<sql
id=
"selectTConGasProInforVo"
>
select f_con_gas_pro_infor_id, f_project_code, f_project_no, f_project_name, f_construction_start, f_construction_end, f_address, f_district_id, f_construction_longitude, f_construction_latitude, f_construction_point_type, f_village_id, f_pipe_press, f_report_flag, f_construction_status, f_build_department, f_project_leader, f_project_leader_phone, f_industry, f_department_name, f_construct_department, f_build_project_leader_name, f_build_project_leader_phone, f_technical_leader_name, f_technical_leader_phone, f_supervision_unit_name, f_chief_engineer_name, f_chief_engineer_phone, f_company_info_id, f_patrol_safety_officer_no, f_partrol_safety_officer_name, f_patrol_safety_officer_phone, f_resident_safety_officer_no, f_resident_safety_officer_name, f_resident_safety_officer_phone, f_gas_company_station_no, f_gas_company_station_name, f_gas_company_station_phone, f_remark, f_update_time from t_con_gas_pro_infor
select f_con_gas_pro_infor_id, f_project_code, f_project_no, f_project_name, f_construction_start, f_construction_end, f_address, f_district_id, f_construction_longitude, f_construction_latitude, f_construction_point_type, f_village_id, f_pipe_press, f_report_flag, f_construction_status, f_build_department, f_project_leader, f_project_leader_phone, f_industry, f_department_name, f_construct_department, f_build_project_leader_name, f_build_project_leader_phone, f_technical_leader_name, f_technical_leader_phone, f_supervision_unit_name, f_chief_engineer_name, f_chief_engineer_phone, f_company_info_id, f_patrol_safety_officer_no, f_partrol_safety_officer_name, f_patrol_safety_officer_phone, f_resident_safety_officer_no, f_resident_safety_officer_name, f_resident_safety_officer_phone, f_gas_company_station_no, f_gas_company_station_name, f_gas_company_station_phone, f_remark, f_update_time
,f_ent_upload_time,f_ent_upload_state,f_gov_upload_time,f_gov_upload_state
from t_con_gas_pro_infor
</sql>
</sql>
<select
id=
"selectTConGasProInforList"
parameterType=
"TConGasProInfor"
resultMap=
"TConGasProInforResult"
>
<select
id=
"selectTConGasProInforList"
parameterType=
"TConGasProInfor"
resultMap=
"TConGasProInforResult"
>
...
@@ -58,6 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -58,6 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fProjectNo != null "
>
and f_project_no = #{fProjectNo}
</if>
<if
test=
"fProjectNo != null "
>
and f_project_no = #{fProjectNo}
</if>
<if
test=
"fProjectName != null and fProjectName != ''"
>
and f_project_name like concat('%', #{fProjectName}, '%')
</if>
<if
test=
"fProjectName != null and fProjectName != ''"
>
and f_project_name like concat('%', #{fProjectName}, '%')
</if>
<if
test=
"fPipePress != null and fPipePress != ''"
>
and f_pipe_press = #{fPipePress}
</if>
<if
test=
"fPipePress != null and fPipePress != ''"
>
and f_pipe_press = #{fPipePress}
</if>
<if
test=
"entUploadState != null and entUploadState != ''"
>
and f_ent_upload_state = #{entUploadState}
</if>
</where>
</where>
order by f_update_time desc
order by f_update_time desc
</select>
</select>
...
@@ -109,6 +115,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -109,6 +115,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fGasCompanyStationPhone != null"
>
f_gas_company_station_phone,
</if>
<if
test=
"fGasCompanyStationPhone != null"
>
f_gas_company_station_phone,
</if>
<if
test=
"fRemark != null"
>
f_remark,
</if>
<if
test=
"fRemark != null"
>
f_remark,
</if>
<if
test=
"fUpdateTime != null and fUpdateTime != ''"
>
f_update_time,
</if>
<if
test=
"fUpdateTime != null and fUpdateTime != ''"
>
f_update_time,
</if>
<if
test=
"entUploadTime != null"
>
f_ent_upload_time,
</if>
<if
test=
"entUploadState != null and entUploadStatue != ''"
>
f_ent_upload_state,
</if>
<if
test=
"govUploadTime != null"
>
f_gov_upload_time,
</if>
<if
test=
"govUploadState != null and govUploadStatue != ''"
>
f_gov_upload_state,
</if>
</trim>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"fProjectCode != null and fProjectCode != ''"
>
#{fProjectCode},
</if>
<if
test=
"fProjectCode != null and fProjectCode != ''"
>
#{fProjectCode},
</if>
...
@@ -149,7 +160,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -149,7 +160,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fGasCompanyStationName != null"
>
#{fGasCompanyStationName},
</if>
<if
test=
"fGasCompanyStationName != null"
>
#{fGasCompanyStationName},
</if>
<if
test=
"fGasCompanyStationPhone != null"
>
#{fGasCompanyStationPhone},
</if>
<if
test=
"fGasCompanyStationPhone != null"
>
#{fGasCompanyStationPhone},
</if>
<if
test=
"fRemark != null"
>
#{fRemark},
</if>
<if
test=
"fRemark != null"
>
#{fRemark},
</if>
<if
test=
"fUpdateTime != null and fUpdateTime != ''"
>
#{fUpdateTime},
</if>
<if
test=
"fUpdateTime != null"
>
#{fUpdateTime},
</if>
<if
test=
"entUploadTime != null "
>
#{entUploadTime},
</if>
<if
test=
"entUploadState != null and entUploadState != ''"
>
#{entUploadState},
</if>
<if
test=
"govUploadTime != null "
>
#{govUploadTime},
</if>
<if
test=
"govUploadState != null and govUploadState != ''"
>
#{govUploadState},
</if>
</trim>
</trim>
</insert>
</insert>
...
@@ -194,11 +210,20 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -194,11 +210,20 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fGasCompanyStationName != null"
>
f_gas_company_station_name = #{fGasCompanyStationName},
</if>
<if
test=
"fGasCompanyStationName != null"
>
f_gas_company_station_name = #{fGasCompanyStationName},
</if>
<if
test=
"fGasCompanyStationPhone != null"
>
f_gas_company_station_phone = #{fGasCompanyStationPhone},
</if>
<if
test=
"fGasCompanyStationPhone != null"
>
f_gas_company_station_phone = #{fGasCompanyStationPhone},
</if>
<if
test=
"fRemark != null"
>
f_remark = #{fRemark},
</if>
<if
test=
"fRemark != null"
>
f_remark = #{fRemark},
</if>
<if
test=
"fUpdateTime != null and fUpdateTime != ''"
>
f_update_time = #{fUpdateTime},
</if>
<if
test=
"fUpdateTime != null"
>
f_update_time = #{fUpdateTime},
</if>
<if
test=
"entUploadTime != null"
>
f_ent_upload_time = #{entUploadTime},
</if>
<if
test=
"entUploadState != null and entUploadState != ''"
>
f_ent_upload_state = #{entUploadState},
</if>
<if
test=
"govUploadTime != null "
>
f_gov_upload_time = #{govUploadTime},
</if>
<if
test=
"govUploadState != null and govUploadState != ''"
>
f_gov_upload_state = #{govUploadState},
</if>
</trim>
</trim>
where f_con_gas_pro_infor_id = #{fConGasProInforId}
where f_con_gas_pro_infor_id = #{fConGasProInforId}
</update>
</update>
<update
id=
"updateEntUploadStateById"
>
update t_con_gas_pro_infor set f_ent_upload_state = #{state}, f_ent_upload_time = #{entUploadTime} where f_con_gas_pro_infor_id = #{fConGasProInforId}
</update>
<delete
id=
"deleteTConGasProInforById"
parameterType=
"Long"
>
<delete
id=
"deleteTConGasProInforById"
parameterType=
"Long"
>
delete from t_con_gas_pro_infor where f_con_gas_pro_infor_id = #{fConGasProInforId}
delete from t_con_gas_pro_infor where f_con_gas_pro_infor_id = #{fConGasProInforId}
</delete>
</delete>
...
...
zh-baseversion-web/src/api/thirdbuild/project.js
View file @
7d6b0f5d
...
@@ -60,6 +60,15 @@ export function reportConGasProInfo(query) {
...
@@ -60,6 +60,15 @@ export function reportConGasProInfo(query) {
})
})
}
}
export
function
entReportConGasProInfo
(
query
)
{
return
request
({
url
:
'/third/project/entReportConGasProInfo'
,
method
:
'get'
,
params
:
query
})
}
export
function
conGasProInfoList
(
query
)
{
export
function
conGasProInfoList
(
query
)
{
return
request
({
return
request
({
url
:
'/third/project/conGasProInfoList'
,
url
:
'/third/project/conGasProInfoList'
,
...
...
zh-baseversion-web/src/views/thirdbuild/project/index.vue
View file @
7d6b0f5d
...
@@ -45,6 +45,7 @@
...
@@ -45,6 +45,7 @@
icon=
"el-icon-plus"
icon=
"el-icon-plus"
size=
"mini"
size=
"mini"
@
click=
"handleAdd"
@
click=
"handleAdd"
v-if=
"user.roleId==1||user.roleId==5"
>
新增
</el-button>
>
新增
</el-button>
</el-col>
</el-col>
<el-col
:span=
"1.5"
>
<el-col
:span=
"1.5"
>
...
@@ -55,6 +56,7 @@
...
@@ -55,6 +56,7 @@
size=
"mini"
size=
"mini"
:disabled=
"single"
:disabled=
"single"
@
click=
"handleUpdate"
@
click=
"handleUpdate"
v-if=
"user.roleId==1||user.roleId==5"
>
修改
</el-button>
>
修改
</el-button>
</el-col>
</el-col>
<el-col
:span=
"1.5"
>
<el-col
:span=
"1.5"
>
...
@@ -65,6 +67,7 @@
...
@@ -65,6 +67,7 @@
size=
"mini"
size=
"mini"
:disabled=
"multiple"
:disabled=
"multiple"
@
click=
"handleDelete"
@
click=
"handleDelete"
v-if=
"user.roleId==1||user.roleId==5"
>
删除
</el-button>
>
删除
</el-button>
</el-col>
</el-col>
<el-col
:span=
"1.5"
>
<el-col
:span=
"1.5"
>
...
@@ -109,17 +112,20 @@
...
@@ -109,17 +112,20 @@
type=
"text"
type=
"text"
icon=
"el-icon-edit"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
@
click=
"handleUpdate(scope.row)"
v-if=
"user.roleId==1||user.roleId==5"
>
修改
</el-button>
>
修改
</el-button>
<el-button
<el-button
size=
"mini"
size=
"mini"
type=
"text"
type=
"text"
icon=
"el-icon-delete"
icon=
"el-icon-delete"
@
click=
"handleDelete(scope.row)"
@
click=
"handleDelete(scope.row)"
v-if=
"user.roleId==1||user.roleId==5"
>
删除
</el-button>
>
删除
</el-button>
<el-button
<el-button
size=
"mini"
size=
"mini"
type=
"text"
type=
"text"
@
click=
"handleReport(scope.row)"
@
click=
"handleReport(scope.row)"
v-if=
"judgeUploadIsShow((scope.row))"
>
上传
</el-button>
>
上传
</el-button>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -464,8 +470,9 @@
...
@@ -464,8 +470,9 @@
</template>
</template>
<
script
>
<
script
>
import
{
listInfor
,
getInfor
,
delInfor
,
addInfor
,
updateInfor
,
exportInfor
,
reportConGasProInfo
}
from
"@/api/thirdbuild/project"
;
import
{
listInfor
,
getInfor
,
delInfor
,
addInfor
,
updateInfor
,
exportInfor
,
reportConGasProInfo
,
entReportConGasProInfo
}
from
"@/api/thirdbuild/project"
;
import
GetPos
from
'@/components/GetPos'
;
import
GetPos
from
'@/components/GetPos'
;
import
{
getInfo
}
from
"@/api/login"
import
DetailInfo
from
"./components/DetailInfo"
;
import
DetailInfo
from
"./components/DetailInfo"
;
export
default
{
export
default
{
name
:
"Infor"
,
name
:
"Infor"
,
...
@@ -475,6 +482,7 @@ export default {
...
@@ -475,6 +482,7 @@ export default {
},
},
data
()
{
data
()
{
return
{
return
{
user
:{},
// 遮罩层
// 遮罩层
loading
:
true
,
loading
:
true
,
// 导出遮罩层
// 导出遮罩层
...
@@ -553,6 +561,7 @@ export default {
...
@@ -553,6 +561,7 @@ export default {
};
};
},
},
created
()
{
created
()
{
this
.
getuserInfo
();
this
.
getList
();
this
.
getList
();
this
.
getDicts
(
"t_pipe_press"
).
then
(
response
=>
{
this
.
getDicts
(
"t_pipe_press"
).
then
(
response
=>
{
this
.
fPipePressOptions
=
response
.
data
;
this
.
fPipePressOptions
=
response
.
data
;
...
@@ -656,6 +665,44 @@ export default {
...
@@ -656,6 +665,44 @@ export default {
this
.
title
=
"修改涉气第三方施工项目档案"
;
this
.
title
=
"修改涉气第三方施工项目档案"
;
});
});
},
},
//判断 上传是否需要显示,上传分为企业上传 和 政府端上传
judgeUploadIsShow
(
row
)
{
console
.
log
(
"judgeUploadIsShow"
+
row
)
//角色 1 超级管理员 5 企业
let
roleId
=
this
.
user
.
roleId
;
// 企业端 上传状态 0-未上传,1-已上传
let
entUploadState
=
row
.
entUploadState
;
// 政府端 上传状态 0-未上传,1-已上传
let
govUploadState
=
row
.
govUploadState
;
// 如果政府端都已经上传,那就不能显示了。
if
(
govUploadState
===
'1'
)
{
return
false
;
}
// 如果企业端上传了,则企业端就不能显示了,政府端能显示
if
(
entUploadState
===
'1'
&&
govUploadState
===
'0'
)
{
if
(
roleId
===
1
|
roleId
===
5
)
{
return
false
;
}
else
{
return
true
;
}
}
// 别的情况,都显示
return
true
;
},
getuserInfo
(){
getInfo
().
then
(
response
=>
{
console
.
log
(
response
);
this
.
user
=
response
.
user
.
roles
[
0
]
});
},
/** 提交按钮 */
/** 提交按钮 */
submitForm
()
{
submitForm
()
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
...
@@ -731,9 +778,23 @@ export default {
...
@@ -731,9 +778,23 @@ export default {
handleDetail
(
row
){
handleDetail
(
row
){
this
.
$refs
.
detail
.
getDetailInfo
(
row
.
fConGasProInforId
);
this
.
$refs
.
detail
.
getDetailInfo
(
row
.
fConGasProInforId
);
},
},
/**
删除
按钮操作 */
/**
上传
按钮操作 */
handleReport
(
row
)
{
handleReport
(
row
)
{
this
.
$confirm
(
'是否确认上传涉气第三方施工项目档案名称为"'
+
row
.
fProjectName
+
'"的数据项?'
,
"警告"
,
{
if
(
this
.
user
.
roleId
==
1
||
this
.
user
.
roleId
==
5
)
{
this
.
$confirm
(
'是否确认上传涉气第三方施工项目档案名称为"'
+
row
.
fProjectName
+
'"的数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
return
entReportConGasProInfo
({
fConGasProInforId
:
row
.
fConGasProInforId
});
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"上传成功"
);
}).
catch
(()
=>
{});
}
else
{
this
.
$confirm
(
'是否确认上传涉气第三方施工项目档案名称为"'
+
row
.
fProjectName
+
'"的数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
type
:
"warning"
...
@@ -741,8 +802,9 @@ export default {
...
@@ -741,8 +802,9 @@ export default {
return
reportConGasProInfo
({
fConGasProInforId
:
row
.
fConGasProInforId
});
return
reportConGasProInfo
({
fConGasProInforId
:
row
.
fConGasProInforId
});
}).
then
(()
=>
{
}).
then
(()
=>
{
this
.
getList
();
this
.
getList
();
this
.
msgSuccess
(
"上传成功"
);
this
.
msgSuccess
(
"上传成功"
);
}).
catch
(()
=>
{});
}).
catch
(()
=>
{});
}
},
},
}
}
};
};
...
...
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