Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gassafety-progress
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
耿迪迪
gassafety-progress
Commits
4b9c01b3
Commit
4b9c01b3
authored
Feb 14, 2022
by
wuqinghua
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
eea1a2a6
6ac8be6c
Show whitespace changes
Inline
Side-by-side
Showing
33 changed files
with
1370 additions
and
660 deletions
+1370
-660
TWorkOrderController.java
...web/controller/operationMonitor/TWorkOrderController.java
+33
-0
SysLoginController.java
.../com/zehong/web/controller/system/SysLoginController.java
+5
-0
SysUserController.java
...a/com/zehong/web/controller/system/SysUserController.java
+18
-8
TEnterpriseInfoController.java
...hong/web/controller/system/TEnterpriseInfoController.java
+12
-0
SysUser.java
...in/java/com/zehong/common/core/domain/entity/SysUser.java
+13
-1
TSafeEquipmentStandingBook.java
.../com/zehong/system/domain/TSafeEquipmentStandingBook.java
+2
-2
TTroubleStandingBook.java
...n/java/com/zehong/system/domain/TTroubleStandingBook.java
+15
-1
TTroubleStandingBookForm.java
...m/zehong/system/domain/form/TTroubleStandingBookForm.java
+8
-0
SysPostMapper.java
...src/main/java/com/zehong/system/mapper/SysPostMapper.java
+7
-0
SysUserMapper.java
...src/main/java/com/zehong/system/mapper/SysUserMapper.java
+10
-0
ISysPostService.java
.../main/java/com/zehong/system/service/ISysPostService.java
+7
-0
ISysUserService.java
.../main/java/com/zehong/system/service/ISysUserService.java
+10
-0
SysPostServiceImpl.java
...va/com/zehong/system/service/impl/SysPostServiceImpl.java
+10
-0
SysUserServiceImpl.java
...va/com/zehong/system/service/impl/SysUserServiceImpl.java
+14
-0
TWorkOrderServiceImpl.java
...com/zehong/system/service/impl/TWorkOrderServiceImpl.java
+3
-0
SysPostMapper.xml
...system/src/main/resources/mapper/system/SysPostMapper.xml
+8
-0
SysUserMapper.xml
...system/src/main/resources/mapper/system/SysUserMapper.xml
+26
-4
TTroubleStandingBookMapper.xml
...in/resources/mapper/system/TTroubleStandingBookMapper.xml
+7
-1
info.js
gassafetyprogress-web/src/api/regulation/info.js
+11
-0
post.js
gassafetyprogress-web/src/api/system/post.js
+10
-1
user.js
gassafetyprogress-web/src/api/system/user.js
+14
-0
index.vue
gassafetyprogress-web/src/components/MyFileUpload/index.vue
+2
-0
user.js
gassafetyprogress-web/src/store/modules/user.js
+11
-1
login.vue
gassafetyprogress-web/src/views/login.vue
+82
-36
WorkIssue.vue
...views/operationMonitor/workOrder/components/WorkIssue.vue
+39
-0
index.vue
...ogress-web/src/views/operationMonitor/workOrder/index.vue
+480
-84
index.vue
...typrogress-web/src/views/standingBook/equipment/index.vue
+95
-27
index.vue
...ress-web/src/views/standingBook/equipmentDetail/index.vue
+0
-103
index.vue
...afetyprogress-web/src/views/standingBook/hidden/index.vue
+197
-113
index.vue
...rogress-web/src/views/standingBook/hiddenDetail/index.vue
+0
-108
index.vue
...fetyprogress-web/src/views/standingBook/trouble/index.vue
+146
-41
index.vue
...ogress-web/src/views/standingBook/troubleDetail/index.vue
+0
-117
index.vue
gassafetyprogress-web/src/views/system/user/index.vue
+75
-12
No files found.
gassafetyprogress-admin/src/main/java/com/zehong/web/controller/operationMonitor/TWorkOrderController.java
View file @
4b9c01b3
package
com
.
zehong
.
web
.
controller
.
operationMonitor
;
package
com
.
zehong
.
web
.
controller
.
operationMonitor
;
import
java.util.List
;
import
java.util.List
;
import
com.zehong.common.core.domain.entity.SysUser
;
import
com.zehong.common.core.domain.model.LoginUser
;
import
com.zehong.common.utils.SecurityUtils
;
import
com.zehong.system.domain.SysPost
;
import
com.zehong.system.service.ISysPostService
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.GetMapping
;
...
@@ -33,6 +39,9 @@ public class TWorkOrderController extends BaseController
...
@@ -33,6 +39,9 @@ public class TWorkOrderController extends BaseController
@Autowired
@Autowired
private
ITWorkOrderService
tWorkOrderService
;
private
ITWorkOrderService
tWorkOrderService
;
@Autowired
private
ISysPostService
iSysPostService
;
/**
/**
* 查询燃气任务列表
* 查询燃气任务列表
*/
*/
...
@@ -41,6 +50,7 @@ public class TWorkOrderController extends BaseController
...
@@ -41,6 +50,7 @@ public class TWorkOrderController extends BaseController
public
TableDataInfo
list
(
TWorkOrder
tWorkOrder
)
public
TableDataInfo
list
(
TWorkOrder
tWorkOrder
)
{
{
startPage
();
startPage
();
judgeUserRole
(
tWorkOrder
);
List
<
TWorkOrder
>
list
=
tWorkOrderService
.
selectTWorkOrderList
(
tWorkOrder
);
List
<
TWorkOrder
>
list
=
tWorkOrderService
.
selectTWorkOrderList
(
tWorkOrder
);
return
getDataTable
(
list
);
return
getDataTable
(
list
);
}
}
...
@@ -53,11 +63,34 @@ public class TWorkOrderController extends BaseController
...
@@ -53,11 +63,34 @@ public class TWorkOrderController extends BaseController
@GetMapping
(
"/export"
)
@GetMapping
(
"/export"
)
public
AjaxResult
export
(
TWorkOrder
tWorkOrder
)
public
AjaxResult
export
(
TWorkOrder
tWorkOrder
)
{
{
judgeUserRole
(
tWorkOrder
);
List
<
TWorkOrder
>
list
=
tWorkOrderService
.
selectTWorkOrderList
(
tWorkOrder
);
List
<
TWorkOrder
>
list
=
tWorkOrderService
.
selectTWorkOrderList
(
tWorkOrder
);
ExcelUtil
<
TWorkOrder
>
util
=
new
ExcelUtil
<
TWorkOrder
>(
TWorkOrder
.
class
);
ExcelUtil
<
TWorkOrder
>
util
=
new
ExcelUtil
<
TWorkOrder
>(
TWorkOrder
.
class
);
return
util
.
exportExcel
(
list
,
"燃气任务数据"
);
return
util
.
exportExcel
(
list
,
"燃气任务数据"
);
}
}
/**
* 判断用户角色
* @param tWorkOrder
*/
private
void
judgeUserRole
(
TWorkOrder
tWorkOrder
){
SysUser
user
=
SecurityUtils
.
getLoginUser
().
getUser
();
//获取用户所属单位
long
enterpriseId
=
user
.
getDeptId
();
//判断是否为政府用户
if
(!
"-2"
.
equals
(
String
.
valueOf
(
enterpriseId
))){
tWorkOrder
.
setWorkAssignEnterproseId
(
enterpriseId
);
//判断是否为巡线员
List
<
Integer
>
postIds
=
iSysPostService
.
selectPostListByUserId
(
user
.
getUserId
());
for
(
Integer
postId
:
postIds
){
SysPost
postInfo
=
iSysPostService
.
selectPostById
(
postId
.
longValue
());
if
(
"se"
.
equals
(
postInfo
.
getPostCode
())){
tWorkOrder
.
setWorkAssignManId
(
user
.
getUserId
());
}
}
}
}
/**
/**
* 获取燃气任务详细信息
* 获取燃气任务详细信息
*/
*/
...
...
gassafetyprogress-admin/src/main/java/com/zehong/web/controller/system/SysLoginController.java
View file @
4b9c01b3
...
@@ -4,6 +4,7 @@ import java.util.List;
...
@@ -4,6 +4,7 @@ import java.util.List;
import
java.util.Set
;
import
java.util.Set
;
import
com.zehong.framework.systemsetting.SystemSetting
;
import
com.zehong.framework.systemsetting.SystemSetting
;
import
com.zehong.system.service.ISysPostService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
...
@@ -44,6 +45,9 @@ public class SysLoginController
...
@@ -44,6 +45,9 @@ public class SysLoginController
@Autowired
@Autowired
private
SystemSetting
systemSetting
;
private
SystemSetting
systemSetting
;
@Autowired
private
ISysPostService
iSysPostService
;
/**
/**
* 登录方法
* 登录方法
*
*
...
@@ -80,6 +84,7 @@ public class SysLoginController
...
@@ -80,6 +84,7 @@ public class SysLoginController
ajax
.
put
(
"roles"
,
roles
);
ajax
.
put
(
"roles"
,
roles
);
ajax
.
put
(
"permissions"
,
permissions
);
ajax
.
put
(
"permissions"
,
permissions
);
ajax
.
put
(
"systemSetting"
,
systemSetting
.
getSystemWebSetting
());
ajax
.
put
(
"systemSetting"
,
systemSetting
.
getSystemWebSetting
());
ajax
.
put
(
"posts"
,
iSysPostService
.
getPostListByUserId
(
user
.
getUserId
()));
return
ajax
;
return
ajax
;
}
}
...
...
gassafetyprogress-admin/src/main/java/com/zehong/web/controller/system/SysUserController.java
View file @
4b9c01b3
package
com
.
zehong
.
web
.
controller
.
system
;
package
com
.
zehong
.
web
.
controller
.
system
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
import
com.zehong.framework.systemsetting.SystemSetting
;
import
com.zehong.framework.systemsetting.SystemSetting
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.multipart.MultipartFile
;
import
org.springframework.web.multipart.MultipartFile
;
import
com.zehong.common.annotation.Log
;
import
com.zehong.common.annotation.Log
;
import
com.zehong.common.constant.UserConstants
;
import
com.zehong.common.constant.UserConstants
;
...
@@ -207,4 +202,19 @@ public class SysUserController extends BaseController
...
@@ -207,4 +202,19 @@ public class SysUserController extends BaseController
user
.
setUpdateBy
(
SecurityUtils
.
getUsername
());
user
.
setUpdateBy
(
SecurityUtils
.
getUsername
());
return
toAjax
(
userService
.
updateUserStatus
(
user
));
return
toAjax
(
userService
.
updateUserStatus
(
user
));
}
}
/**
* 根据企业获取巡线员
*
* @param enterpriseId 企业id
* @param postCode 岗位编码
* @return 巡线员信息
*/
@GetMapping
(
"/getInspectionUsers"
)
public
AjaxResult
getInspectionUsers
(
@RequestParam
(
value
=
"enterpriseId"
)
String
enterpriseId
,
@RequestParam
(
value
=
"postCode"
)
String
postCode
){
Map
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"enterpriseId"
,
enterpriseId
);
map
.
put
(
"postCode"
,
postCode
);
return
AjaxResult
.
success
(
userService
.
getInspectionUsers
(
map
));
};
}
}
gassafetyprogress-admin/src/main/java/com/zehong/web/controller/system/TEnterpriseInfoController.java
View file @
4b9c01b3
...
@@ -45,6 +45,18 @@ public class TEnterpriseInfoController extends BaseController
...
@@ -45,6 +45,18 @@ public class TEnterpriseInfoController extends BaseController
return
getDataTable
(
list
);
return
getDataTable
(
list
);
}
}
/**
*查询所有企业信息
* @param tEnterpriseInfo
* @return
*/
@GetMapping
(
"/enterpriseLists"
)
public
TableDataInfo
enterpriseLists
(
TEnterpriseInfo
tEnterpriseInfo
)
{
List
<
TEnterpriseInfo
>
list
=
tEnterpriseInfoService
.
selectTEnterpriseInfoList
(
tEnterpriseInfo
);
return
getDataTable
(
list
);
}
/**
/**
* 导出企业信息列表
* 导出企业信息列表
*/
*/
...
...
gassafetyprogress-common/src/main/java/com/zehong/common/core/domain/entity/SysUser.java
View file @
4b9c01b3
...
@@ -83,6 +83,10 @@ public class SysUser extends BaseEntity
...
@@ -83,6 +83,10 @@ public class SysUser extends BaseEntity
})
})
private
SysDept
dept
;
private
SysDept
dept
;
/** 所属单位 */
@Excel
(
name
=
"所属单位"
,
targetAttr
=
"enterpriseName"
,
type
=
Type
.
EXPORT
)
private
String
enterpriseName
;
/** 角色对象 */
/** 角色对象 */
private
List
<
SysRole
>
roles
;
private
List
<
SysRole
>
roles
;
...
@@ -300,6 +304,14 @@ public class SysUser extends BaseEntity
...
@@ -300,6 +304,14 @@ public class SysUser extends BaseEntity
this
.
postIds
=
postIds
;
this
.
postIds
=
postIds
;
}
}
public
String
getEnterpriseName
()
{
return
enterpriseName
;
}
public
void
setEnterpriseName
(
String
enterpriseName
)
{
this
.
enterpriseName
=
enterpriseName
;
}
@Override
@Override
public
String
toString
()
{
public
String
toString
()
{
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/domain/TSafeEquipmentStandingBook.java
View file @
4b9c01b3
...
@@ -41,8 +41,8 @@ public class TSafeEquipmentStandingBook extends BaseEntity
...
@@ -41,8 +41,8 @@ public class TSafeEquipmentStandingBook extends BaseEntity
private
String
linkMobile
;
private
String
linkMobile
;
/** 安装时间 */
/** 安装时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd
HH:mm:ss
"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"安装时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd
HH:mm:ss
"
)
@Excel
(
name
=
"安装时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
installTime
;
private
Date
installTime
;
/** 品牌名称 */
/** 品牌名称 */
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/domain/TTroubleStandingBook.java
View file @
4b9c01b3
...
@@ -59,6 +59,11 @@ public class TTroubleStandingBook extends BaseEntity
...
@@ -59,6 +59,11 @@ public class TTroubleStandingBook extends BaseEntity
@Excel
(
name
=
"是否处理:1.已处理 2.未处理"
)
@Excel
(
name
=
"是否处理:1.已处理 2.未处理"
)
private
String
isDeal
;
private
String
isDeal
;
/** 事故发生时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"事故发生时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
happenDate
;
/** 处理完成时间 */
/** 处理完成时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"处理完成时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"处理完成时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
...
@@ -170,6 +175,15 @@ public class TTroubleStandingBook extends BaseEntity
...
@@ -170,6 +175,15 @@ public class TTroubleStandingBook extends BaseEntity
{
{
return
isDeal
;
return
isDeal
;
}
}
public
Date
getHappenDate
()
{
return
happenDate
;
}
public
void
setHappenDate
(
Date
happenDate
)
{
this
.
happenDate
=
happenDate
;
}
public
void
setDealDate
(
Date
dealDate
)
public
void
setDealDate
(
Date
dealDate
)
{
{
this
.
dealDate
=
dealDate
;
this
.
dealDate
=
dealDate
;
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/domain/form/TTroubleStandingBookForm.java
View file @
4b9c01b3
...
@@ -28,6 +28,14 @@ public class TTroubleStandingBookForm
...
@@ -28,6 +28,14 @@ public class TTroubleStandingBookForm
/** 是否处理:1.已处理 2.未处理 */
/** 是否处理:1.已处理 2.未处理 */
private
String
isDeal
;
private
String
isDeal
;
/** 事故发生起始时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
happenDateStart
;
/** 事故发生截止时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
happenDateEnd
;
/** 处理完成起始时间 */
/** 处理完成起始时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
dealDateStart
;
private
Date
dealDateStart
;
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/mapper/SysPostMapper.java
View file @
4b9c01b3
...
@@ -41,6 +41,13 @@ public interface SysPostMapper
...
@@ -41,6 +41,13 @@ public interface SysPostMapper
*/
*/
public
List
<
Integer
>
selectPostListByUserId
(
Long
userId
);
public
List
<
Integer
>
selectPostListByUserId
(
Long
userId
);
/**
* 根据用户ID查询岗位信息
* @param userId 用户id
* @return
*/
List
<
SysPost
>
getPostListByUserId
(
Long
userId
);
/**
/**
* 查询用户所属岗位组
* 查询用户所属岗位组
*
*
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/mapper/SysUserMapper.java
View file @
4b9c01b3
package
com
.
zehong
.
system
.
mapper
;
package
com
.
zehong
.
system
.
mapper
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
import
com.zehong.common.core.domain.entity.SysUser
;
import
com.zehong.common.core.domain.entity.SysUser
;
...
@@ -108,4 +110,12 @@ public interface SysUserMapper
...
@@ -108,4 +110,12 @@ public interface SysUserMapper
* @return 结果
* @return 结果
*/
*/
public
SysUser
checkEmailUnique
(
String
email
);
public
SysUser
checkEmailUnique
(
String
email
);
/**
* 根据企业获取巡线员
*
* @param map
* @return 巡线员信息
*/
List
<
SysUser
>
getInspectionUsers
(
Map
<
String
,
String
>
map
);
}
}
gassafetyprogress-system/src/main/java/com/zehong/system/service/ISysPostService.java
View file @
4b9c01b3
...
@@ -41,6 +41,13 @@ public interface ISysPostService
...
@@ -41,6 +41,13 @@ public interface ISysPostService
*/
*/
public
List
<
Integer
>
selectPostListByUserId
(
Long
userId
);
public
List
<
Integer
>
selectPostListByUserId
(
Long
userId
);
/**
* 根据用户ID查询岗位信息
* @param userId 用户id
* @return
*/
List
<
SysPost
>
getPostListByUserId
(
Long
userId
);
/**
/**
* 校验岗位名称
* 校验岗位名称
*
*
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/service/ISysUserService.java
View file @
4b9c01b3
package
com
.
zehong
.
system
.
service
;
package
com
.
zehong
.
system
.
service
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
com.zehong.common.core.domain.entity.SysUser
;
import
com.zehong.common.core.domain.entity.SysUser
;
/**
/**
...
@@ -164,4 +166,12 @@ public interface ISysUserService
...
@@ -164,4 +166,12 @@ public interface ISysUserService
* @return 结果
* @return 结果
*/
*/
public
String
importUser
(
List
<
SysUser
>
userList
,
Boolean
isUpdateSupport
,
String
operName
);
public
String
importUser
(
List
<
SysUser
>
userList
,
Boolean
isUpdateSupport
,
String
operName
);
/**
* 根据企业获取巡线员
*
* @param map
* @return 巡线员信息
*/
List
<
SysUser
>
getInspectionUsers
(
Map
<
String
,
String
>
map
);
}
}
gassafetyprogress-system/src/main/java/com/zehong/system/service/impl/SysPostServiceImpl.java
View file @
4b9c01b3
...
@@ -72,6 +72,16 @@ public class SysPostServiceImpl implements ISysPostService
...
@@ -72,6 +72,16 @@ public class SysPostServiceImpl implements ISysPostService
return
postMapper
.
selectPostListByUserId
(
userId
);
return
postMapper
.
selectPostListByUserId
(
userId
);
}
}
/**
* 根据用户ID查询岗位信息
* @param userId 用户id
* @return
*/
@Override
public
List
<
SysPost
>
getPostListByUserId
(
Long
userId
){
return
postMapper
.
getPostListByUserId
(
userId
);
}
/**
/**
* 校验岗位名称是否唯一
* 校验岗位名称是否唯一
*
*
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/service/impl/SysUserServiceImpl.java
View file @
4b9c01b3
...
@@ -2,6 +2,8 @@ package com.zehong.system.service.impl;
...
@@ -2,6 +2,8 @@ package com.zehong.system.service.impl;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
org.slf4j.Logger
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
@@ -460,4 +462,16 @@ public class SysUserServiceImpl implements ISysUserService
...
@@ -460,4 +462,16 @@ public class SysUserServiceImpl implements ISysUserService
}
}
return
successMsg
.
toString
();
return
successMsg
.
toString
();
}
}
/**
* 根据企业获取巡线员
*
* @param map
* @return 巡线员信息
*/
@Override
public
List
<
SysUser
>
getInspectionUsers
(
Map
<
String
,
String
>
map
){
return
userMapper
.
getInspectionUsers
(
map
);
}
}
}
gassafetyprogress-system/src/main/java/com/zehong/system/service/impl/TWorkOrderServiceImpl.java
View file @
4b9c01b3
...
@@ -2,6 +2,7 @@ package com.zehong.system.service.impl;
...
@@ -2,6 +2,7 @@ package com.zehong.system.service.impl;
import
java.util.List
;
import
java.util.List
;
import
com.zehong.common.utils.DateUtils
;
import
com.zehong.common.utils.DateUtils
;
import
com.zehong.common.utils.SecurityUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
com.zehong.system.mapper.TWorkOrderMapper
;
import
com.zehong.system.mapper.TWorkOrderMapper
;
...
@@ -54,6 +55,7 @@ public class TWorkOrderServiceImpl implements ITWorkOrderService
...
@@ -54,6 +55,7 @@ public class TWorkOrderServiceImpl implements ITWorkOrderService
public
int
insertTWorkOrder
(
TWorkOrder
tWorkOrder
)
public
int
insertTWorkOrder
(
TWorkOrder
tWorkOrder
)
{
{
tWorkOrder
.
setCreateTime
(
DateUtils
.
getNowDate
());
tWorkOrder
.
setCreateTime
(
DateUtils
.
getNowDate
());
tWorkOrder
.
setCreateBy
(
SecurityUtils
.
getUsername
());
return
tWorkOrderMapper
.
insertTWorkOrder
(
tWorkOrder
);
return
tWorkOrderMapper
.
insertTWorkOrder
(
tWorkOrder
);
}
}
...
@@ -67,6 +69,7 @@ public class TWorkOrderServiceImpl implements ITWorkOrderService
...
@@ -67,6 +69,7 @@ public class TWorkOrderServiceImpl implements ITWorkOrderService
public
int
updateTWorkOrder
(
TWorkOrder
tWorkOrder
)
public
int
updateTWorkOrder
(
TWorkOrder
tWorkOrder
)
{
{
tWorkOrder
.
setUpdateTime
(
DateUtils
.
getNowDate
());
tWorkOrder
.
setUpdateTime
(
DateUtils
.
getNowDate
());
tWorkOrder
.
setUpdateBy
(
SecurityUtils
.
getUsername
());
return
tWorkOrderMapper
.
updateTWorkOrder
(
tWorkOrder
);
return
tWorkOrderMapper
.
updateTWorkOrder
(
tWorkOrder
);
}
}
...
...
gassafetyprogress-system/src/main/resources/mapper/system/SysPostMapper.xml
View file @
4b9c01b3
...
@@ -54,6 +54,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -54,6 +54,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where u.user_id = #{userId}
where u.user_id = #{userId}
</select>
</select>
<select
id=
"getPostListByUserId"
parameterType=
"Long"
resultMap=
"SysPostResult"
>
select p.*
from sys_post p
left join sys_user_post up on up.post_id = p.post_id
left join sys_user u on u.user_id = up.user_id
where u.user_id = #{userId}
</select>
<select
id=
"selectPostsByUserName"
parameterType=
"String"
resultMap=
"SysPostResult"
>
<select
id=
"selectPostsByUserName"
parameterType=
"String"
resultMap=
"SysPostResult"
>
select p.post_id, p.post_name, p.post_code
select p.post_id, p.post_name, p.post_code
from sys_post p
from sys_post p
...
...
gassafetyprogress-system/src/main/resources/mapper/system/SysUserMapper.xml
View file @
4b9c01b3
...
@@ -23,6 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -23,6 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"updateBy"
column=
"update_by"
/>
<result
property=
"updateBy"
column=
"update_by"
/>
<result
property=
"updateTime"
column=
"update_time"
/>
<result
property=
"updateTime"
column=
"update_time"
/>
<result
property=
"remark"
column=
"remark"
/>
<result
property=
"remark"
column=
"remark"
/>
<result
property=
"enterpriseName"
column=
"enterprise_name"
/>
<association
property=
"dept"
column=
"dept_id"
javaType=
"SysDept"
resultMap=
"deptResult"
/>
<association
property=
"dept"
column=
"dept_id"
javaType=
"SysDept"
resultMap=
"deptResult"
/>
<collection
property=
"roles"
javaType=
"java.util.List"
resultMap=
"RoleResult"
/>
<collection
property=
"roles"
javaType=
"java.util.List"
resultMap=
"RoleResult"
/>
</resultMap>
</resultMap>
...
@@ -56,8 +57,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -56,8 +57,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql>
</sql>
<select
id=
"selectUserList"
parameterType=
"SysUser"
resultMap=
"SysUserResult"
>
<select
id=
"selectUserList"
parameterType=
"SysUser"
resultMap=
"SysUserResult"
>
select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from sys_user u
select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, (CASE WHEN u.dept_id = '-2' THEN '政府部门'
left join sys_dept d on u.dept_id = d.dept_id
ELSE enter.enterprise_name END)AS enterprise_name from sys_user u
LEFT JOIN t_enterprise_info enter ON u.dept_id = enter.enterprise_id
where u.del_flag = '0'
where u.del_flag = '0'
<if
test=
"userName != null and userName != ''"
>
<if
test=
"userName != null and userName != ''"
>
AND u.user_name like concat('%', #{userName}, '%')
AND u.user_name like concat('%', #{userName}, '%')
...
@@ -74,9 +76,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -74,9 +76,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"params.endTime != null and params.endTime != ''"
>
<!-- 结束时间检索 -->
<if
test=
"params.endTime != null and params.endTime != ''"
>
<!-- 结束时间检索 -->
AND date_format(u.create_time,'%y%m%d')
<
= date_format(#{params.endTime},'%y%m%d')
AND date_format(u.create_time,'%y%m%d')
<
= date_format(#{params.endTime},'%y%m%d')
</if>
</if>
<if
test=
"deptId != null and deptId != 0"
>
<
!--<
if test="deptId != null and deptId != 0">
AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE find_in_set(#{deptId}, ancestors) ))
AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE find_in_set(#{deptId}, ancestors) ))
</if>
</if>
-->
<!-- 数据范围过滤 -->
<!-- 数据范围过滤 -->
${params.dataScope}
${params.dataScope}
</select>
</select>
...
@@ -179,4 +181,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -179,4 +181,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach>
</foreach>
</delete>
</delete>
<select
id=
"getInspectionUsers"
parameterType=
"java.util.Map"
resultMap=
"SysUserResult"
>
SELECT
u.user_id,
u.dept_id,
u.user_name
FROM
sys_user u
LEFT JOIN sys_user_post up ON u.user_id = up.user_id
LEFT JOIN sys_post p ON up.post_id = p.post_id
<where>
<if
test=
"enterpriseId != null and enterpriseId != 0"
>
AND u.dept_id = #{enterpriseId}
</if>
<if
test=
"postCode !=null and postCode != ''"
>
AND p.post_code = #{postCode}
</if>
</where>
</select>
</mapper>
</mapper>
\ No newline at end of file
gassafetyprogress-system/src/main/resources/mapper/system/TTroubleStandingBookMapper.xml
View file @
4b9c01b3
...
@@ -16,6 +16,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -16,6 +16,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"responsibleUnit"
column=
"responsible_unit"
/>
<result
property=
"responsibleUnit"
column=
"responsible_unit"
/>
<result
property=
"responsiblePeople"
column=
"responsible_people"
/>
<result
property=
"responsiblePeople"
column=
"responsible_people"
/>
<result
property=
"isDeal"
column=
"is_deal"
/>
<result
property=
"isDeal"
column=
"is_deal"
/>
<result
property=
"happenDate"
column=
"happen_date"
/>
<result
property=
"dealDate"
column=
"deal_date"
/>
<result
property=
"dealDate"
column=
"deal_date"
/>
<result
property=
"createBy"
column=
"create_by"
/>
<result
property=
"createBy"
column=
"create_by"
/>
<result
property=
"createTime"
column=
"create_time"
/>
<result
property=
"createTime"
column=
"create_time"
/>
...
@@ -26,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -26,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap>
</resultMap>
<sql
id=
"selectTTroubleStandingBookVo"
>
<sql
id=
"selectTTroubleStandingBookVo"
>
select trouble_id, trouble_name, trouble_location, longitude, latitude, trouble_type, brief_process, trouble_reason, responsible_unit, responsible_people, is_deal, deal_date, create_by, create_time, update_by, update_time, is_del, remarks from t_trouble_standing_book
select trouble_id, trouble_name, trouble_location, longitude, latitude, trouble_type, brief_process, trouble_reason, responsible_unit, responsible_people, is_deal,
happen_date,
deal_date, create_by, create_time, update_by, update_time, is_del, remarks from t_trouble_standing_book
</sql>
</sql>
<select
id=
"selectTTroubleStandingBookList"
parameterType=
"TTroubleStandingBookForm"
resultMap=
"TTroubleStandingBookResult"
>
<select
id=
"selectTTroubleStandingBookList"
parameterType=
"TTroubleStandingBookForm"
resultMap=
"TTroubleStandingBookResult"
>
...
@@ -35,6 +36,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -35,6 +36,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"troubleName != null and troubleName != ''"
>
and trouble_name like concat('%', #{troubleName}, '%')
</if>
<if
test=
"troubleName != null and troubleName != ''"
>
and trouble_name like concat('%', #{troubleName}, '%')
</if>
<if
test=
"troubleType != null and troubleType != ''"
>
and trouble_type = #{troubleType}
</if>
<if
test=
"troubleType != null and troubleType != ''"
>
and trouble_type = #{troubleType}
</if>
<if
test=
"isDeal != null and isDeal != ''"
>
and is_deal = #{isDeal}
</if>
<if
test=
"isDeal != null and isDeal != ''"
>
and is_deal = #{isDeal}
</if>
<if
test=
"happenDateStart != null "
>
and happen_date
>
= #{happenDateStart}
</if>
<if
test=
"happenDateEnd != null "
>
and happen_date
<
= #{happenDateEnd}
</if>
<if
test=
"dealDateStart != null "
>
and deal_date
>
= #{dealDateStart}
</if>
<if
test=
"dealDateStart != null "
>
and deal_date
>
= #{dealDateStart}
</if>
<if
test=
"dealDateEnd != null "
>
and deal_date
<
= #{dealDateEnd}
</if>
<if
test=
"dealDateEnd != null "
>
and deal_date
<
= #{dealDateEnd}
</if>
</where>
</where>
...
@@ -58,6 +61,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -58,6 +61,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"responsibleUnit != null"
>
responsible_unit,
</if>
<if
test=
"responsibleUnit != null"
>
responsible_unit,
</if>
<if
test=
"responsiblePeople != null"
>
responsible_people,
</if>
<if
test=
"responsiblePeople != null"
>
responsible_people,
</if>
<if
test=
"isDeal != null"
>
is_deal,
</if>
<if
test=
"isDeal != null"
>
is_deal,
</if>
<if
test=
"happenDate != null"
>
happen_date,
</if>
<if
test=
"dealDate != null"
>
deal_date,
</if>
<if
test=
"dealDate != null"
>
deal_date,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
...
@@ -77,6 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -77,6 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"responsibleUnit != null"
>
#{responsibleUnit},
</if>
<if
test=
"responsibleUnit != null"
>
#{responsibleUnit},
</if>
<if
test=
"responsiblePeople != null"
>
#{responsiblePeople},
</if>
<if
test=
"responsiblePeople != null"
>
#{responsiblePeople},
</if>
<if
test=
"isDeal != null"
>
#{isDeal},
</if>
<if
test=
"isDeal != null"
>
#{isDeal},
</if>
<if
test=
"happenDate != null"
>
#{happenDate},
</if>
<if
test=
"dealDate != null"
>
#{dealDate},
</if>
<if
test=
"dealDate != null"
>
#{dealDate},
</if>
<if
test=
"createBy != null"
>
#{createBy},
</if>
<if
test=
"createBy != null"
>
#{createBy},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
...
@@ -100,6 +105,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -100,6 +105,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"responsibleUnit != null"
>
responsible_unit = #{responsibleUnit},
</if>
<if
test=
"responsibleUnit != null"
>
responsible_unit = #{responsibleUnit},
</if>
<if
test=
"responsiblePeople != null"
>
responsible_people = #{responsiblePeople},
</if>
<if
test=
"responsiblePeople != null"
>
responsible_people = #{responsiblePeople},
</if>
<if
test=
"isDeal != null"
>
is_deal = #{isDeal},
</if>
<if
test=
"isDeal != null"
>
is_deal = #{isDeal},
</if>
<if
test=
"happenDate != null"
>
happen_date = #{happenDate},
</if>
<if
test=
"dealDate != null"
>
deal_date = #{dealDate},
</if>
<if
test=
"dealDate != null"
>
deal_date = #{dealDate},
</if>
<if
test=
"createBy != null"
>
create_by = #{createBy},
</if>
<if
test=
"createBy != null"
>
create_by = #{createBy},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime},
</if>
...
...
gassafetyprogress-web/src/api/regulation/info.js
View file @
4b9c01b3
...
@@ -9,6 +9,17 @@ export function listInfo(query) {
...
@@ -9,6 +9,17 @@ export function listInfo(query) {
})
})
}
}
// 查询企业所有信息
export
function
enterpriseLists
(
query
)
{
return
request
({
url
:
'/regulation/info/enterpriseLists'
,
method
:
'get'
,
params
:
query
})
}
// 查询企业信息详细
// 查询企业信息详细
export
function
getInfo
(
enterpriseId
)
{
export
function
getInfo
(
enterpriseId
)
{
return
request
({
return
request
({
...
...
gassafetyprogress-web/src/api/system/post.js
View file @
4b9c01b3
...
@@ -51,3 +51,12 @@ export function exportPost(query) {
...
@@ -51,3 +51,12 @@ export function exportPost(query) {
params
:
query
params
:
query
})
})
}
}
//查询所有岗位
export
function
optionselect
(
query
)
{
return
request
({
url
:
'/system/post/optionselect'
,
method
:
'get'
,
params
:
query
})
}
gassafetyprogress-web/src/api/system/user.js
View file @
4b9c01b3
...
@@ -125,3 +125,17 @@ export function importTemplate() {
...
@@ -125,3 +125,17 @@ export function importTemplate() {
method
:
'get'
method
:
'get'
})
})
}
}
//获取用户巡检员
export
function
getInspectionUsers
(
enterpriseId
,
postCode
)
{
const
data
=
{
enterpriseId
,
postCode
}
return
request
({
url
:
'/system/user/getInspectionUsers'
,
method
:
'get'
,
params
:
data
})
}
gassafetyprogress-web/src/components/MyFileUpload/index.vue
View file @
4b9c01b3
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
class=
"upload-file-uploader"
class=
"upload-file-uploader"
:class=
"
{ hide: fileArr.length>0 ||addShow }"
:class=
"
{ hide: fileArr.length>0 ||addShow }"
ref="upload"
ref="upload"
:disabled="readOnly"
>
>
<!-- 上传按钮 -->
<!-- 上传按钮 -->
<!--
<el-button
size=
"mini"
icon=
""
type=
"primary"
></el-button>
-->
<!--
<el-button
size=
"mini"
icon=
""
type=
"primary"
></el-button>
-->
...
@@ -95,6 +96,7 @@ export default {
...
@@ -95,6 +96,7 @@ export default {
type
:
Boolean
,
type
:
Boolean
,
default
:
true
,
default
:
true
,
},
},
readOnly
:
false
},
},
data
()
{
data
()
{
return
{
return
{
...
...
gassafetyprogress-web/src/store/modules/user.js
View file @
4b9c01b3
...
@@ -9,6 +9,8 @@ const user = {
...
@@ -9,6 +9,8 @@ const user = {
roles
:
[],
roles
:
[],
permissions
:
[],
permissions
:
[],
systemSetting
:{},
systemSetting
:{},
posts
:
[],
enterpriseId
:
''
},
},
mutations
:
{
mutations
:
{
...
@@ -29,6 +31,12 @@ const user = {
...
@@ -29,6 +31,12 @@ const user = {
},
},
SET_SYSTEMSETTING
:
(
state
,
systemSetting
)
=>
{
SET_SYSTEMSETTING
:
(
state
,
systemSetting
)
=>
{
state
.
systemSetting
=
systemSetting
state
.
systemSetting
=
systemSetting
},
SET_POSTS
:
(
state
,
posts
)
=>
{
state
.
posts
=
posts
},
SET_ENTERPRISEID
:
(
state
,
enterpriseId
)
=>
{
state
.
enterpriseId
=
enterpriseId
}
}
},
},
...
@@ -67,6 +75,8 @@ const user = {
...
@@ -67,6 +75,8 @@ const user = {
commit
(
'SET_AVATAR'
,
avatar
)
commit
(
'SET_AVATAR'
,
avatar
)
// 默认配置
// 默认配置
commit
(
'SET_SYSTEMSETTING'
,
res
.
systemSetting
)
commit
(
'SET_SYSTEMSETTING'
,
res
.
systemSetting
)
commit
(
'SET_POSTS'
,
res
.
posts
)
commit
(
'SET_ENTERPRISEID'
,
user
.
deptId
)
console
.
log
(
res
.
systemSetting
)
console
.
log
(
res
.
systemSetting
)
resolve
(
res
)
resolve
(
res
)
}).
catch
(
error
=>
{
}).
catch
(
error
=>
{
...
...
gassafetyprogress-web/src/views/login.vue
View file @
4b9c01b3
<
template
>
<
template
>
<div
class=
"login"
>
<div
class=
"login"
>
<el-form
ref=
"loginForm"
:model=
"loginForm"
:rules=
"loginRules"
class=
"login-form"
>
<el-form
ref=
"loginForm"
:model=
"loginForm"
:rules=
"loginRules"
class=
"login-form"
>
<h3
class=
"title"
>
泽宏后台管理系统
</h3>
<h3
class=
"title"
>
泽宏后台管理系统
</h3>
<el-form-item
prop=
"username"
>
<el-form-item
prop=
"username"
>
<el-input
v-model=
"loginForm.username"
type=
"text"
auto-complete=
"off"
placeholder=
"账号"
>
<el-input
<svg-icon
slot=
"prefix"
icon-class=
"user"
class=
"el-input__icon input-icon"
/>
v-model=
"loginForm.username"
type=
"text"
auto-complete=
"off"
placeholder=
"账号"
>
<svg-icon
slot=
"prefix"
icon-class=
"user"
class=
"el-input__icon input-icon"
/>
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
prop=
"password"
>
<el-form-item
prop=
"password"
>
...
@@ -15,7 +29,11 @@
...
@@ -15,7 +29,11 @@
placeholder=
"密码"
placeholder=
"密码"
@
keyup
.
enter
.
native=
"handleLogin"
@
keyup
.
enter
.
native=
"handleLogin"
>
>
<svg-icon
slot=
"prefix"
icon-class=
"password"
class=
"el-input__icon input-icon"
/>
<svg-icon
slot=
"prefix"
icon-class=
"password"
class=
"el-input__icon input-icon"
/>
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
prop=
"code"
>
<el-form-item
prop=
"code"
>
...
@@ -26,19 +44,27 @@
...
@@ -26,19 +44,27 @@
style=
"width: 63%"
style=
"width: 63%"
@
keyup
.
enter
.
native=
"handleLogin"
@
keyup
.
enter
.
native=
"handleLogin"
>
>
<svg-icon
slot=
"prefix"
icon-class=
"validCode"
class=
"el-input__icon input-icon"
/>
<svg-icon
slot=
"prefix"
icon-class=
"validCode"
class=
"el-input__icon input-icon"
/>
</el-input>
</el-input>
<div
class=
"login-code"
>
<div
class=
"login-code"
>
<img
:src=
"codeUrl"
@
click=
"getCode"
class=
"login-code-img"
/>
<img
:src=
"codeUrl"
@
click=
"getCode"
class=
"login-code-img"
/>
</div>
</div>
</el-form-item>
</el-form-item>
<el-checkbox
v-model=
"loginForm.rememberMe"
style=
"margin:0px 0px 25px 0px;"
>
记住密码
</el-checkbox>
<el-checkbox
<el-form-item
style=
"width:100%;"
>
v-model=
"loginForm.rememberMe"
style=
"margin: 0px 0px 25px 0px"
>
记住密码
</el-checkbox
>
<el-form-item
style=
"width: 100%"
>
<el-button
<el-button
:loading=
"loading"
:loading=
"loading"
size=
"medium"
size=
"medium"
type=
"primary"
type=
"primary"
style=
"width:
100%;
"
style=
"width:
100%
"
@
click
.
native
.
prevent=
"handleLogin"
@
click
.
native
.
prevent=
"handleLogin"
>
>
<span
v-if=
"!loading"
>
登 录
</span>
<span
v-if=
"!loading"
>
登 录
</span>
...
@@ -54,9 +80,9 @@
...
@@ -54,9 +80,9 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
{
getCodeImg
}
from
"@/api/login"
;
import
{
getCodeImg
,
getInfo
}
from
"@/api/login"
;
import
Cookies
from
"js-cookie"
;
import
Cookies
from
"js-cookie"
;
import
{
encrypt
,
decrypt
}
from
'@/utils/jsencrypt'
import
{
encrypt
,
decrypt
}
from
"@/utils/jsencrypt"
;
export
default
{
export
default
{
name
:
"Login"
,
name
:
"Login"
,
...
@@ -69,29 +95,30 @@ export default {
...
@@ -69,29 +95,30 @@ export default {
password
:
"admin123"
,
password
:
"admin123"
,
rememberMe
:
false
,
rememberMe
:
false
,
code
:
""
,
code
:
""
,
uuid
:
""
uuid
:
""
,
},
},
loginRules
:
{
loginRules
:
{
username
:
[
username
:
[
{
required
:
true
,
trigger
:
"blur"
,
message
:
"用户名不能为空"
}
{
required
:
true
,
trigger
:
"blur"
,
message
:
"用户名不能为空"
}
,
],
],
password
:
[
password
:
[
{
required
:
true
,
trigger
:
"blur"
,
message
:
"密码不能为空"
}
{
required
:
true
,
trigger
:
"blur"
,
message
:
"密码不能为空"
},
],
code
:
[
{
required
:
true
,
trigger
:
"change"
,
message
:
"验证码不能为空"
},
],
],
code
:
[{
required
:
true
,
trigger
:
"change"
,
message
:
"验证码不能为空"
}]
},
},
loading
:
false
,
loading
:
false
,
redirect
:
undefined
redirect
:
undefined
,
};
};
},
},
watch
:
{
watch
:
{
$route
:
{
$route
:
{
handler
:
function
(
route
)
{
handler
:
function
(
route
)
{
this
.
redirect
=
route
.
query
&&
route
.
query
.
redirect
;
this
.
redirect
=
route
.
query
&&
route
.
query
.
redirect
;
},
},
immediate
:
true
immediate
:
true
,
}
}
,
},
},
created
()
{
created
()
{
this
.
getCode
();
this
.
getCode
();
...
@@ -99,7 +126,7 @@ export default {
...
@@ -99,7 +126,7 @@ export default {
},
},
methods
:
{
methods
:
{
getCode
()
{
getCode
()
{
getCodeImg
().
then
(
res
=>
{
getCodeImg
().
then
(
(
res
)
=>
{
this
.
codeUrl
=
"data:image/gif;base64,"
+
res
.
img
;
this
.
codeUrl
=
"data:image/gif;base64,"
+
res
.
img
;
this
.
loginForm
.
uuid
=
res
.
uuid
;
this
.
loginForm
.
uuid
=
res
.
uuid
;
});
});
...
@@ -107,36 +134,55 @@ export default {
...
@@ -107,36 +134,55 @@ export default {
getCookie
()
{
getCookie
()
{
const
username
=
Cookies
.
get
(
"username"
);
const
username
=
Cookies
.
get
(
"username"
);
const
password
=
Cookies
.
get
(
"password"
);
const
password
=
Cookies
.
get
(
"password"
);
const
rememberMe
=
Cookies
.
get
(
'rememberMe'
)
const
rememberMe
=
Cookies
.
get
(
"rememberMe"
);
this
.
loginForm
=
{
this
.
loginForm
=
{
username
:
username
===
undefined
?
this
.
loginForm
.
username
:
username
,
username
:
username
===
undefined
?
this
.
loginForm
.
username
:
username
,
password
:
password
===
undefined
?
this
.
loginForm
.
password
:
decrypt
(
password
),
password
:
rememberMe
:
rememberMe
===
undefined
?
false
:
Boolean
(
rememberMe
)
password
===
undefined
?
this
.
loginForm
.
password
:
decrypt
(
password
),
rememberMe
:
rememberMe
===
undefined
?
false
:
Boolean
(
rememberMe
),
};
};
},
},
handleLogin
()
{
handleLogin
()
{
this
.
$refs
.
loginForm
.
validate
(
valid
=>
{
this
.
$refs
.
loginForm
.
validate
(
(
valid
)
=>
{
if
(
valid
)
{
if
(
valid
)
{
this
.
loading
=
true
;
this
.
loading
=
true
;
if
(
this
.
loginForm
.
rememberMe
)
{
if
(
this
.
loginForm
.
rememberMe
)
{
Cookies
.
set
(
"username"
,
this
.
loginForm
.
username
,
{
expires
:
30
});
Cookies
.
set
(
"username"
,
this
.
loginForm
.
username
,
{
expires
:
30
});
Cookies
.
set
(
"password"
,
encrypt
(
this
.
loginForm
.
password
),
{
expires
:
30
});
Cookies
.
set
(
"password"
,
encrypt
(
this
.
loginForm
.
password
),
{
Cookies
.
set
(
'rememberMe'
,
this
.
loginForm
.
rememberMe
,
{
expires
:
30
});
expires
:
30
,
});
Cookies
.
set
(
"rememberMe"
,
this
.
loginForm
.
rememberMe
,
{
expires
:
30
,
});
}
else
{
}
else
{
Cookies
.
remove
(
"username"
);
Cookies
.
remove
(
"username"
);
Cookies
.
remove
(
"password"
);
Cookies
.
remove
(
"password"
);
Cookies
.
remove
(
'rememberMe'
);
Cookies
.
remove
(
"rememberMe"
);
}
this
.
$store
.
dispatch
(
"Login"
,
this
.
loginForm
)
.
then
((
res
)
=>
{
console
.
log
(
"登录"
,
res
);
// 获取权限
return
getInfo
();
})
.
then
((
res
)
=>
{
const
roles
=
res
.
user
.
deptId
;
let
path
=
"/"
;
// 如果是最高权限,就进入大屏
if
(
roles
==
-
2
)
{
path
=
"/bigWindow"
;
}
}
this
.
$store
.
dispatch
(
"Login"
,
this
.
loginForm
).
then
(()
=>
{
this
.
$router
.
push
({
path
}).
catch
(()
=>
{});
this
.
$router
.
push
({
path
:
"/bigWindow"
||
"/"
}).
catch
(()
=>
{});
})
})
.
catch
(()
=>
{
.
catch
(()
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
this
.
getCode
();
this
.
getCode
();
});
});
}
}
});
});
}
}
,
}
}
,
};
};
</
script
>
</
script
>
...
...
gassafetyprogress-web/src/views/operationMonitor/workOrder/components/WorkIssue.vue
0 → 100644
View file @
4b9c01b3
<
template
>
<el-dialog
title=
"任务下发"
:visible
.
sync=
"dialogVisible"
width=
"900px"
append-to-body
>
<el-form
ref=
"workForm"
:model=
"workForm"
label-width=
"80px"
>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</
template
>
<
script
>
export
default
{
props
:{
workForm
:{},
dialogVisible
:
false
},
data
()
{
return
{
}
},
created
()
{
console
.
log
(
"dsaadddd=============>"
,
this
.
workForm
)
},
methods
:
{
submitForm
(){
},
cancel
(){
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
gassafetyprogress-web/src/views/operationMonitor/workOrder/index.vue
View file @
4b9c01b3
...
@@ -20,9 +20,10 @@
...
@@ -20,9 +20,10 @@
</el-form-item>
</el-form-item>
<el-form-item
label=
"任务状态"
prop=
"workStatus"
>
<el-form-item
label=
"任务状态"
prop=
"workStatus"
>
<el-select
v-model=
"queryParams.workStatus"
placeholder=
"请选择任务状态"
clearable
size=
"small"
>
<el-select
v-model=
"queryParams.workStatus"
placeholder=
"请选择任务状态"
clearable
size=
"small"
>
<el-option
label=
"派发中"
value=
"1"
/>
<el-option
label=
"派发中"
value=
"0"
/>
<el-option
label=
"反馈"
value=
"2"
/>
<el-option
label=
"已接单"
value=
"1"
/>
<el-option
label=
"归档"
value=
"3"
/>
<el-option
label=
"已反馈"
value=
"2"
/>
<el-option
label=
"已归档"
value=
"3"
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item>
<el-form-item>
...
@@ -81,28 +82,42 @@
...
@@ -81,28 +82,42 @@
<el-table
v-loading=
"loading"
:data=
"orderList"
@
selection-change=
"handleSelectionChange"
>
<el-table
v-loading=
"loading"
:data=
"orderList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"任务标题"
align=
"center"
prop=
"workTitle"
/>
<el-table-column
label=
"任务标题"
align=
"center"
prop=
"workTitle"
/>
<el-table-column
label=
"任务类型"
align=
"center"
prop=
"workType"
/>
<el-table-column
label=
"任务类型"
align=
"center"
prop=
"workType"
>
<el-table-column
label=
"任务内容"
align=
"center"
prop=
"workContent"
/>
<template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.workType == 1"
>
入户安检
</span>
<span
v-if=
"scope.row.workType == 2"
>
巡检
</span>
<span
v-if=
"scope.row.workType == 3"
>
报警巡查
</span>
<span
v-if=
"scope.row.workType == 4"
>
其他
</span>
</
template
>
</el-table-column>
<!-- <el-table-column label="任务内容" align="center" prop="workContent" />-->
<el-table-column
label=
"创建单位"
align=
"center"
prop=
"workCreateEnterpriseName"
/>
<el-table-column
label=
"创建单位"
align=
"center"
prop=
"workCreateEnterpriseName"
/>
<el-table-column
label=
"指派单位"
align=
"center"
prop=
"workAssignEnterproseName"
/>
<el-table-column
label=
"指派单位"
align=
"center"
prop=
"workAssignEnterproseName"
/>
<el-table-column
label=
"指派人"
align=
"center"
prop=
"workAssignManId"
/>
<el-table-column
label=
"指派人"
align=
"center"
prop=
"workAssignMan"
/>
<el-table-column
label=
"任务状态"
align=
"center"
prop=
"workStatus"
/>
<el-table-column
label=
"任务状态"
align=
"center"
prop=
"workStatus"
>
<el-table-column
label=
"巡检时间"
align=
"center"
prop=
"inspectionDate"
width=
"180"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.workStatus == 0"
>
派发中
</span>
<span
v-if=
"scope.row.workStatus == 1"
>
已接单
</span>
<span
v-if=
"scope.row.workStatus == 2"
>
已反馈
</span>
<span
v-if=
"scope.row.workStatus == 3"
>
已归档
</span>
</
template
>
</el-table-column>
>
<!--<el-table-column label="巡检时间" align="center" prop="inspectionDate" width="180">
<template slot-scope="scope">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.inspectionDate, '{y}-{m}-{d}') }}</span>
<span>{{ parseTime(scope.row.inspectionDate, '{y}-{m}-{d}') }}</span>
</template>
</template>
</el-table-column>
</el-table-column>
<
el
-
table
-
column
label
=
"巡检路线"
align
=
"center"
prop
=
"inspectionRoute"
/>
<el-table-column label="巡检路线" align="center" prop="inspectionRoute" />
-->
<
el
-
table
-
column
label
=
"问题描述"
align
=
"center"
prop
=
"problemDescription"
/>
<
!--<
el-table-column label="问题描述" align="center" prop="problemDescription" />
<el-table-column label="问题图片" align="center" prop="pictureUrl" style="text-align:center;">
<el-table-column label="问题图片" align="center" prop="pictureUrl" style="text-align:center;">
<template slot-scope="scope">
<template slot-scope="scope">
<img :src="scope.row.iconUrl" style="width: 20%;vertical-align:middle;cursor:pointer;" @click="showPicture(scope.row)"/>
<img :src="scope.row.iconUrl" style="width: 20%;vertical-align:middle;cursor:pointer;" @click="showPicture(scope.row)"/>
<el-image :ref="'a'+scope.row.workId" :src="scope.row.iconUrl" v-show="false" :preview-src-list="[scope.row.iconUrl]" v-if="scope.row.iconUrl != '' && scope.row.iconUrl != null"></el-image>
<el-image :ref="'a'+scope.row.workId" :src="scope.row.iconUrl" v-show="false" :preview-src-list="[scope.row.iconUrl]" v-if="scope.row.iconUrl != '' && scope.row.iconUrl != null"></el-image>
</template>
</template>
<
/el-table-column
>
</el-table-column>
-->
<!--<el-table-column label="图片路径" align="center" prop="iconUrl" />-->
<!--<el-table-column label="图片路径" align="center" prop="iconUrl" />-->
<
el
-
table
-
column
label
=
"整改方案"
align
=
"center"
prop
=
"rectificationPlan"
/>
<!--
<el-table-column label="整改方案" align="center" prop="rectificationPlan" />
<
el
-
table
-
column
label
=
"整改结果"
align
=
"center"
prop
=
"rectificationResult"
/>
<el-table-column label="整改结果" align="center" prop="rectificationResult" />
-->
<el-table-column
label=
"责任单位"
align=
"center"
prop=
"responsibleUnit"
/>
<el-table-column
label=
"责任单位"
align=
"center"
prop=
"responsibleUnit"
/>
<el-table-column
label=
"责任人员"
align=
"center"
prop=
"responsiblePerson"
/>
<el-table-column
label=
"责任人员"
align=
"center"
prop=
"responsiblePerson"
/>
<el-table-column
label=
"截止日期"
align=
"center"
prop=
"expiryDate"
width=
"180"
>
<el-table-column
label=
"截止日期"
align=
"center"
prop=
"expiryDate"
width=
"180"
>
...
@@ -110,22 +125,14 @@
...
@@ -110,22 +125,14 @@
<span>
{{
parseTime
(
scope
.
row
.
expiryDate
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<span>
{{
parseTime
(
scope
.
row
.
expiryDate
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"操作"
align
=
"center"
class
-
name
=
"small-padding fixed-width"
>
<
el
-
table
-
column
label
=
"操作"
align
=
"center"
class
-
name
=
"small-padding fixed-width"
min
-
width
=
"150%"
>
<
template
slot
-
scope
=
"scope"
>
<
template
slot
-
scope
=
"scope"
>
<
el
-
button
v
-
if
=
"'admin'==$store.state.user.roles[0] && scope.row.workAssignMan == null && scope.row.workStatus == '1'"
<
el
-
button
size
=
"mini"
type
=
"text"
icon
=
"el-icon-edit"
@
click
=
"handleUpdate(scope.row)"
v
-
hasPermi
=
"['system:order:edit']"
>
任务下发
<
/el-button
>
<
el
-
button
v
-
if
=
"'admin'==$store.state.user.roles[0] && scope.row.workStatus == '1'"
size
=
"mini"
size
=
"mini"
type
=
"text"
type
=
"text"
icon
=
"el-icon-edit"
icon
=
"el-icon-edit"
@
click
=
"handleUpdate(scope.row)"
@
click
=
"workDetail(scope.row)"
v
-
hasPermi
=
"['system:order:edit']"
>
详情
<
/el-button
>
>
接单
<
/el-button
>
<
el
-
button
<
el
-
button
size
=
"mini"
size
=
"mini"
type
=
"text"
type
=
"text"
...
@@ -140,6 +147,30 @@
...
@@ -140,6 +147,30 @@
@
click
=
"handleDelete(scope.row)"
@
click
=
"handleDelete(scope.row)"
v
-
hasPermi
=
"['system:order:remove']"
v
-
hasPermi
=
"['system:order:remove']"
>
删除
<
/el-button
>
>
删除
<
/el-button
>
<
el
-
button
v
-
if
=
"'inpector'!= roleType && (scope.row.workAssignManId == '' || scope.row.workAssignManId == null) && scope.row.workStatus == '0'"
size
=
"mini"
type
=
"text"
icon
=
"el-icon-edit"
@
click
=
"workIssue(scope.row)"
>
任务下发
<
/el-button
>
<
el
-
button
v
-
if
=
" 'inpector'== roleType && scope.row.workStatus == '0'"
size
=
"mini"
type
=
"text"
icon
=
"el-icon-edit"
@
click
=
"takingOrder(scope.row)"
>
接单
<
/el-button
>
<
el
-
button
v
-
if
=
"'zhengfu'!= roleType && scope.row.workStatus == '1'"
size
=
"mini"
type
=
"text"
icon
=
"el-icon-edit"
@
click
=
"feedbookWork(scope.row)"
>
反馈
<
/el-button
>
<
el
-
button
v
-
if
=
"'zhengfu'!= roleType && scope.row.workStatus == '2'"
size
=
"mini"
type
=
"text"
icon
=
"el-icon-edit"
@
click
=
"sortWork(scope.row)"
>
归档
<
/el-button
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
/el-table
>
<
/el-table
>
...
@@ -153,17 +184,17 @@
...
@@ -153,17 +184,17 @@
/>
/>
<!--
添加或修改燃气任务对话框
-->
<!--
添加或修改燃气任务对话框
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"900px"
append
-
to
-
body
>
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"900px"
@
closed
=
"dialogClose"
@
open
=
"dialogOpen"
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<
el
-
input
v
-
model
=
"form.workTitle"
placeholder
=
"请输入任务标题"
/>
<
el
-
input
v
-
model
=
"form.workTitle"
placeholder
=
"请输入任务标题"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
select
v
-
model
=
"form.workType"
placeholder
=
"请选择任务类型"
style
=
"width: 350px
"
>
<
el
-
select
v
-
model
=
"form.workType"
placeholder
=
"请选择任务类型"
style
=
"width: 350px"
:
disabled
=
"isDetail
"
>
<
el
-
option
label
=
"入户安检"
value
=
"1"
/>
<
el
-
option
label
=
"入户安检"
value
=
"1"
/>
<
el
-
option
label
=
"巡检"
value
=
"2"
/>
<
el
-
option
label
=
"巡检"
value
=
"2"
/>
<
el
-
option
label
=
"报警巡查"
value
=
"3"
/>
<
el
-
option
label
=
"报警巡查"
value
=
"3"
/>
...
@@ -172,60 +203,88 @@
...
@@ -172,60 +203,88 @@
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
/el-row
>
<
/el-row
>
<
el
-
form
-
item
label
=
"任务内容"
>
<
el
-
form
-
item
label
=
"任务内容"
prop
=
"workContent"
>
<
editor
v
-
model
=
"form.workContent"
:
min
-
height
=
"192"
/>
<!--
<
editor
v
-
model
=
"form.workContent"
:
min
-
height
=
"192"
:
readOnly
=
"!s"
/>-->
<
editor
v
-
if
=
"isOpen"
v
-
model
=
"form.workContent"
:
min
-
height
=
"192"
:
readOnly
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"指派单位"
prop
=
"workAssignEnterproseName"
>
<
el
-
form
-
item
label
=
"指派单位"
prop
=
"workAssignEnterproseName"
>
<
el
-
input
v
-
model
=
"form.workAssignEnterproseName"
placeholder
=
"请输入指派单位名称"
/>
<!--
<
el
-
input
v
-
model
=
"form.workAssignEnterproseName"
placeholder
=
"请输入指派单位名称"
/>-->
<
el
-
select
v
-
model
=
"form.workAssignEnterproseId"
placeholder
=
"请选择指派单位名称"
style
=
"width: 350px"
@
change
=
"selectworkAssignEnterprose($event)"
:
disabled
=
"isDetail"
>
<
el
-
option
v
-
for
=
"item in enterprises"
:
key
=
"item.enterpriseId"
:
label
=
"item.enterpriseName"
:
value
=
"item.enterpriseId"
><
/el-option
>
<
/el-select
>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"指派人"
prop
=
"workAssignManId"
>
<
el
-
form
-
item
label
=
"指派人"
prop
=
"workAssignMan"
>
<
el
-
input
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
/>
<!--
<
el
-
input
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
/>-->
<
el
-
select
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
style
=
"width: 350px"
@
change
=
"selectInspection($event,'edit')"
:
disabled
=
"isDetail"
>
<
el
-
option
v
-
for
=
"item in inspectors"
:
key
=
"item.userId "
:
label
=
"item.userName"
:
value
=
"item.userId "
><
/el-option
>
<
/el-select
>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
/el-row
>
<
/el-row
>
<
el
-
row
>
<
el
-
form
-
item
label
=
"巡检时间"
prop
=
"inspectionDate"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"创建单位"
prop
=
"inspectionDate"
>
<
el
-
input
v
-
model
=
"form.workCreateEnterpriseName"
placeholder
=
"请输入创建单位名称"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"巡检时间"
prop
=
"inspectionDate"
v
-
show
=
"form.workType=='2'"
>
<
el
-
date
-
picker
clearable
size
=
"small"
<
el
-
date
-
picker
clearable
size
=
"small"
v
-
model
=
"form.inspectionDate"
v
-
model
=
"form.inspectionDate"
type
=
"date"
type
=
"date"
value
-
format
=
"yyyy-MM-dd"
value
-
format
=
"yyyy-MM-dd"
placeholder
=
"选择巡检时间"
style
=
"width: 350px
"
>
placeholder
=
"选择巡检时间"
style
=
"width: 350px"
:
disabled
=
"isDetail
"
>
<
/el-date-picker
>
<
/el-date-picker
>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"巡检路线"
prop
=
"inspectionRoute"
>
<
/el-col
>
<
el
-
input
v
-
model
=
"form.inspectionRoute"
type
=
"textarea"
placeholder
=
"请输入巡检路线"
/>
<
/el-row
>
<
el
-
form
-
item
label
=
"巡检路线"
prop
=
"inspectionRoute"
v
-
show
=
"form.workType=='2'"
>
<
el
-
input
v
-
model
=
"form.inspectionRoute"
type
=
"textarea"
placeholder
=
"请输入巡检路线"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"问题描述"
prop
=
"problemDescription"
>
<
el
-
form
-
item
label
=
"问题描述"
prop
=
"problemDescription"
>
<
el
-
input
v
-
model
=
"form.problemDescription"
type
=
"textarea"
placeholder
=
"请输入问题描述"
/>
<
el
-
input
v
-
model
=
"form.problemDescription"
type
=
"textarea"
placeholder
=
"请输入问题描述"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"整改方案"
prop
=
"rectificationPlan"
v
-
show
=
"form.workType=='3' && isDetail && (form.workStatus =='2' || form.workStatus =='3')"
>
<
el
-
input
v
-
model
=
"form.rectificationPlan"
type
=
"textarea"
placeholder
=
"请输入整改方案"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"问题图片"
prop
=
"iconUrl
"
>
<
el
-
form
-
item
label
=
"反馈图片"
prop
=
"iconUrl"
v
-
show
=
"isDetail && (form.workStatus =='2' || form.workStatus =='3')
"
>
<
MyFileUpload
<
MyFileUpload
listType
=
"picture-card"
listType
=
"picture-card"
@
resFun
=
"getFileInfo"
@
resFun
=
"getFileInfo"
@
remove
=
"listRemove"
@
remove
=
"listRemove"
:
fileArr
=
"fileList"
:
fileArr
=
"fileList"
:
readOnly
=
"isDetail"
/>
/>
<
el
-
input
v
-
show
=
"false"
disabled
v
-
model
=
"form.iconUrl"
><
/el-input
>
<
el
-
input
v
-
show
=
"false"
disabled
v
-
model
=
"form.iconUrl"
><
/el-input
>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"整改方案"
prop
=
"rectificationPlan"
>
<
el
-
form
-
item
label
=
"反馈信息"
prop
=
"rectificationResult"
v
-
show
=
"isDetail && (form.workStatus =='2' || form.workStatus =='3')"
>
<
el
-
input
v
-
model
=
"form.rectificationPlan"
type
=
"textarea"
placeholder
=
"请输入整改方案"
/>
<
el
-
input
v
-
model
=
"form.rectificationResult"
type
=
"textarea"
placeholder
=
"请输入整改结果"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"整改结果"
prop
=
"rectificationResult"
>
<
el
-
input
v
-
model
=
"form.rectificationResult"
type
=
"textarea"
placeholder
=
"请输入整改结果"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"责任单位"
prop
=
"responsibleUnit"
>
<
el
-
form
-
item
label
=
"责任单位"
prop
=
"responsibleUnit"
>
<
el
-
input
v
-
model
=
"form.responsibleUnit"
placeholder
=
"请输入责任单位"
/>
<
el
-
input
v
-
model
=
"form.responsibleUnit"
placeholder
=
"请输入责任单位"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"责任人员"
prop
=
"responsiblePerson"
>
<
el
-
form
-
item
label
=
"责任人员"
prop
=
"responsiblePerson"
>
<
el
-
input
v
-
model
=
"form.responsiblePerson"
placeholder
=
"请输入责任人员"
/>
<
el
-
input
v
-
model
=
"form.responsiblePerson"
placeholder
=
"请输入责任人员"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
/el-row
>
<
/el-row
>
...
@@ -235,15 +294,114 @@
...
@@ -235,15 +294,114 @@
v
-
model
=
"form.expiryDate"
v
-
model
=
"form.expiryDate"
type
=
"date"
type
=
"date"
value
-
format
=
"yyyy-MM-dd"
value
-
format
=
"yyyy-MM-dd"
placeholder
=
"选择截止日期"
style
=
"width: 350px
"
>
placeholder
=
"选择截止日期"
style
=
"width: 350px"
:
disabled
=
"isDetail
"
>
<
/el-date-picker
>
<
/el-date-picker
>
<
/el-form-item
>
<
/el-form-item
>
<
/el-form
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm
"
>
确
定
<
/el-button
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
v
-
show
=
"!isDetail
"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
/div
>
<
/div
>
<
/el-dialog
>
<
/el-dialog
>
<!--
任务下发
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"workOpen"
width
=
"900px"
append
-
to
-
body
>
<
el
-
form
ref
=
"workForm"
:
model
=
"workForm"
:
rules
=
"workRules"
label
-
width
=
"80px"
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<!--
<
el
-
input
v
-
model
=
"workForm.workTitle"
placeholder
=
"请输入任务标题"
/>-->
<
span
>
{{
workForm
.
workTitle
}}
<
/span
>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
span
v
-
if
=
"workForm.workType == '1'"
>
入户安检
<
/span
>
<
span
v
-
if
=
"workForm.workType == '2'"
>
巡检
<
/span
>
<
span
v
-
if
=
"workForm.workType == '3'"
>
报警巡查
<
/span
>
<
span
v
-
if
=
"workForm.workType == '4'"
>
其他
<
/span
>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"指派单位"
prop
=
"workAssignEnterproseName"
>
<!--
<
el
-
input
v
-
model
=
"form.workAssignEnterproseName"
placeholder
=
"请输入指派单位名称"
/>-->
<
el
-
select
v
-
model
=
"workForm.workAssignEnterproseId"
placeholder
=
"请选择指派单位名称"
style
=
"width: 350px"
@
change
=
"selectworkAssignEnterprose($event)"
>
<
el
-
option
v
-
for
=
"item in enterprises"
:
key
=
"item.enterpriseId"
:
label
=
"item.enterpriseName"
:
value
=
"item.enterpriseId"
><
/el-option
>
<
/el-select
>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"指派人"
prop
=
"workAssignMan"
>
<!--
<
el
-
input
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
/>-->
<
el
-
select
v
-
model
=
"workForm.workAssignManId"
placeholder
=
"请输入指派人"
style
=
"width: 350px"
@
change
=
"selectInspection($event,'work')"
>
<
el
-
option
v
-
for
=
"item in inspectors"
:
key
=
"item.userId "
:
label
=
"item.userName"
:
value
=
"item.userId "
><
/el-option
>
<
/el-select
>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitWorkForm"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancelWorkForm"
>
取
消
<
/el-button
>
<
/div
>
<
/el-dialog
>
<!--
反馈
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"feedBookOpen"
width
=
"900px"
append
-
to
-
body
>
<
el
-
form
ref
=
"feedBookForm"
:
model
=
"feedBookForm"
:
rules
=
"feedBookRules"
label
-
width
=
"80px"
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<!--
<
el
-
input
v
-
model
=
"feedBookForm.workTitle"
placeholder
=
"请输入任务标题"
/>-->
<
span
>
{{
feedBookForm
.
workTitle
}}
<
/span
>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
span
v
-
if
=
"feedBookForm.workType == '1'"
>
入户安检
<
/span
>
<
span
v
-
if
=
"feedBookForm.workType == '2'"
>
巡检
<
/span
>
<
span
v
-
if
=
"feedBookForm.workType == '3'"
>
报警巡查
<
/span
>
<
span
v
-
if
=
"feedBookForm.workType == '4'"
>
其他
<
/span
>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
el
-
form
-
item
label
=
"整改方案"
prop
=
"rectificationPlan"
v
-
show
=
"feedBookForm.workType=='3'"
>
<
el
-
input
v
-
model
=
"form.rectificationPlan"
type
=
"textarea"
placeholder
=
"请输入整改方案"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"反馈图片"
prop
=
"iconUrl"
>
<
MyFileUpload
listType
=
"picture-card"
@
resFun
=
"getFileInfo"
@
remove
=
"listRemove"
:
fileArr
=
"fileList"
:
readOnly
=
"isDetail"
/>
<
el
-
input
v
-
show
=
"false"
disabled
v
-
model
=
"form.iconUrl"
><
/el-input
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"反馈信息"
prop
=
"rectificationResult"
>
<
el
-
input
v
-
model
=
"form.rectificationResult"
type
=
"textarea"
placeholder
=
"反馈信息"
/>
<
/el-form-item
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitFeedBookForm"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancelFeedBook"
>
取
消
<
/el-button
>
<
/div
>
<
/el-dialog
>
<
/div
>
<
/div
>
<
/template
>
<
/template
>
...
@@ -251,18 +409,25 @@
...
@@ -251,18 +409,25 @@
import
{
listOrder
,
getOrder
,
delOrder
,
addOrder
,
updateOrder
,
exportOrder
}
from
"@/api/operationMonitor/order"
;
import
{
listOrder
,
getOrder
,
delOrder
,
addOrder
,
updateOrder
,
exportOrder
}
from
"@/api/operationMonitor/order"
;
import
Editor
from
'@/components/Editor'
;
import
Editor
from
'@/components/Editor'
;
import
MyFileUpload
from
'@/components/MyFileUpload'
;
import
MyFileUpload
from
'@/components/MyFileUpload'
;
import
{
enterpriseLists
}
from
"@/api/regulation/info"
;
import
{
getInspectionUsers
}
from
"@/api/system/user"
;
import
ScrollPane
from
"../../../layout/components/TagsView/ScrollPane"
;
export
default
{
export
default
{
name
:
"Order"
,
name
:
"Order"
,
components
:
{
components
:
{
ScrollPane
,
Editor
,
Editor
,
MyFileUpload
MyFileUpload
}
,
}
,
data
()
{
data
()
{
return
{
return
{
isOpen
:
false
,
// 遮罩层
// 遮罩层
loading
:
true
,
loading
:
true
,
// 导出遮罩层
// 导出遮罩层
exportLoading
:
false
,
exportLoading
:
false
,
detailDialogVisible
:
false
,
workForm
:
{
}
,
// 选中数组
// 选中数组
ids
:
[],
ids
:
[],
// 非单个禁用
// 非单个禁用
...
@@ -279,8 +444,14 @@ export default {
...
@@ -279,8 +444,14 @@ export default {
title
:
""
,
title
:
""
,
// 是否显示弹出层
// 是否显示弹出层
open
:
false
,
open
:
false
,
//企业选项
enterprises
:
[],
//巡检员
inspectors
:[],
// 上传文件列表
// 上传文件列表
fileList
:
[],
fileList
:
[],
//详情
isDetail
:
false
,
// 查询参数
// 查询参数
queryParams
:
{
queryParams
:
{
pageNum
:
1
,
pageNum
:
1
,
...
@@ -311,13 +482,71 @@ export default {
...
@@ -311,13 +482,71 @@ export default {
form
:
{
}
,
form
:
{
}
,
// 表单校验
// 表单校验
rules
:
{
rules
:
{
}
workTitle
:
[
{
required
:
true
,
message
:
"任务标题"
,
trigger
:
"blur"
}
],
workType
:
[
{
required
:
true
,
message
:
"任务类型"
,
trigger
:
"blur"
}
],
workContent
:
[
{
required
:
true
,
message
:
"任务内容"
,
trigger
:
"blur"
}
],
workAssignEnterproseName
:
[
{
required
:
true
,
message
:
"指派单位"
,
trigger
:
"blur"
}
],
expiryDate
:
[
{
required
:
true
,
message
:
"截止时间"
,
trigger
:
"blur"
}
]
}
,
//任务下发表单校验
workRules
:
{
workAssignEnterproseName
:
[
{
required
:
true
,
message
:
"指派单位"
,
trigger
:
"blur"
}
],
workAssignMan
:
[
{
required
:
true
,
message
:
"指派人"
,
trigger
:
"blur"
}
]
}
,
//反馈校验
feedBookRules
:
{
iconUrl
:
[
{
required
:
true
,
message
:
"指派单位"
,
trigger
:
"blur"
}
],
rectificationResult
:
[
{
required
:
true
,
message
:
"指派人"
,
trigger
:
"blur"
}
]
}
,
roleType
:
"zhengfu"
,
workForm
:{
}
,
workOpen
:
false
,
feedBookForm
:
{
}
,
feedBookOpen
:
false
}
;
}
;
}
,
}
,
created
()
{
created
()
{
window
.
func
=
()
=>
{
this
.
isDetail
=!
this
.
isDetail
;
}
this
.
getList
();
this
.
getList
();
let
enterpriseId
=
this
.
$store
.
state
.
user
.
enterpriseId
;
let
post
=
this
.
$store
.
state
.
user
.
posts
.
find
(
item
=>
item
.
postCode
===
"se"
);
if
(
-
2
!=
enterpriseId
){
if
(
post
){
this
.
roleType
=
"inpector"
;
}
else
{
this
.
roleType
=
"enterprise"
;
}
}
}
,
}
,
methods
:
{
methods
:
{
dialogClose
(){
this
.
isOpen
=
false
;
}
,
dialogOpen
(){
this
.
isOpen
=
true
;
}
,
/** 查询燃气任务列表 */
/** 查询燃气任务列表 */
getList
()
{
getList
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
...
@@ -384,17 +613,22 @@ export default {
...
@@ -384,17 +613,22 @@ export default {
handleAdd
()
{
handleAdd
()
{
this
.
reset
();
this
.
reset
();
this
.
open
=
true
;
this
.
open
=
true
;
this
.
isDetail
=
false
;
this
.
title
=
"添加燃气任务"
;
this
.
title
=
"添加燃气任务"
;
this
.
getEnterpriseLists
();
}
,
}
,
/** 修改按钮操作 */
/** 修改按钮操作 */
handleUpdate
(
row
)
{
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset
();
const
workId
=
row
.
workId
||
this
.
ids
const
workId
=
row
.
workId
||
this
.
ids
this
.
isDetail
=
false
;
getOrder
(
workId
).
then
(
response
=>
{
getOrder
(
workId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
open
=
true
;
this
.
title
=
"修改燃气任务"
;
this
.
title
=
"修改燃气任务"
;
}
);
}
);
this
.
getEnterpriseLists
();
this
.
getInspectionUserList
(
row
.
workAssignEnterproseId
);
}
,
}
,
/** 提交按钮 */
/** 提交按钮 */
submitForm
()
{
submitForm
()
{
...
@@ -454,7 +688,169 @@ export default {
...
@@ -454,7 +688,169 @@ export default {
}
,
}
,
showPicture
(
row
){
showPicture
(
row
){
this
.
$refs
[
'a'
+
row
.
workId
].
showViewer
=
true
;
this
.
$refs
[
'a'
+
row
.
workId
].
showViewer
=
true
;
}
,
//指派单位
getEnterpriseLists
(){
enterpriseLists
().
then
(
response
=>
{
this
.
enterprises
=
response
.
rows
;
}
);
}
,
//获取巡检员
getInspectionUserList
(
enterpriseId
){
getInspectionUsers
(
enterpriseId
,
"se"
).
then
(
response
=>
{
this
.
inspectors
=
response
.
data
;
}
)
}
,
//选择指派单位
selectworkAssignEnterprose
(
enterpriseId
){
this
.
form
.
workAssignManId
=
""
;
this
.
workForm
.
workAssignManId
=
""
;
this
.
getInspectionUserList
(
enterpriseId
);
let
enterpriseName
=
this
.
enterprises
.
find
(
val
=>
val
.
enterpriseId
==
enterpriseId
).
enterpriseName
;
this
.
form
.
workAssignEnterproseName
=
enterpriseName
;
}
,
//获取指派人
selectInspection
(
userId
,
type
){
let
userName
=
this
.
inspectors
.
find
(
val
=>
val
.
userId
==
userId
).
userName
;
if
(
"edit"
==
type
){
this
.
form
.
workAssignMan
=
userName
;
}
else
{
this
.
workForm
.
workAssignMan
=
userName
;
}
}
,
/*//选择任务类型
selectWorkType(workType){
if("2" == workType){
this.inspectorInfoIsShow = true;
}
else{
this.inspectorInfoIsShow = false;
}
}
,*/
//详情
workDetail
(
row
){
this
.
isDetail
=
true
;
this
.
open
=
true
;
this
.
title
=
"燃气任务详情"
;
this
.
form
=
row
;
this
.
getEnterpriseLists
();
this
.
getInspectionUserList
(
row
.
workAssignEnterproseId
);
}
,
//任务下发
workIssue
(
row
){
this
.
title
=
"任务下发"
;
this
.
workForm
.
workId
=
row
.
workId
;
this
.
workForm
.
workTitle
=
row
.
workTitle
;
this
.
workForm
.
workType
=
row
.
workType
;
if
(
row
.
workAssignEnterproseId
){
this
.
workForm
.
workAssignEnterproseId
=
row
.
workAssignEnterproseId
;
this
.
workForm
.
workAssignEnterproseName
=
row
.
workAssignEnterproseName
;
}
}
if
(
row
.
workAssignManId
){
this
.
workForm
.
workAssignManId
=
row
.
workAssignManId
;
this
.
workForm
.
workAssignMan
=
row
.
workAssignMan
;
}
//this.workForm = row;
this
.
workForm
.
workStatus
=
'1'
;
this
.
workOpen
=
true
;
this
.
getEnterpriseLists
();
this
.
getInspectionUserList
(
row
.
workAssignEnterproseId
);
}
,
//接单
takingOrder
(
row
){
this
.
$confirm
(
'是否确认接单?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}
).
then
(()
=>
{
this
.
workForm
=
{
}
;
this
.
workForm
.
workId
=
row
.
workId
;
this
.
workForm
.
workStatus
=
'1'
;
if
(
this
.
workForm
.
workId
!=
null
)
{
updateOrder
(
this
.
workForm
);
}
}
).
then
(
response
=>
{
this
.
getList
();
this
.
msgSuccess
(
"接单成功"
);
}
).
catch
(()
=>
{
}
);
}
,
//反馈
feedbookWork
(
row
){
this
.
title
=
"反馈信息"
;
this
.
feedBookOpen
=
true
;
this
.
feedBookForm
.
workId
=
row
.
workId
;
this
.
feedBookForm
.
workTitle
=
row
.
workTitle
;
this
.
feedBookForm
.
workType
=
row
.
workType
;
if
(
row
.
iconUrl
){
this
.
feedBookForm
.
iconUrl
=
row
.
iconUrl
;
}
if
(
row
.
rectificationPlan
){
this
.
feedBookForm
.
rectificationPlan
=
row
.
rectificationPlan
;
}
if
(
row
.
rectificationResult
){
this
.
feedBookForm
.
rectificationResult
=
row
.
rectificationResult
;
}
//this.feedBookForm = row;
this
.
getEnterpriseLists
();
}
,
//归档
sortWork
(
row
){
this
.
$confirm
(
'是否确认归档?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}
).
then
(()
=>
{
this
.
workForm
=
{
}
;
this
.
workForm
.
workId
=
row
.
workId
;
this
.
workForm
.
workStatus
=
'3'
;
if
(
this
.
workForm
.
workId
!=
null
)
{
updateOrder
(
this
.
workForm
);
}
}
).
then
(
response
=>
{
this
.
getList
();
this
.
msgSuccess
(
"归档成功"
);
}
).
catch
(()
=>
{
}
);
}
,
//任务下发提交
submitWorkForm
()
{
this
.
$refs
[
"workForm"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
workForm
.
workId
!=
null
)
{
updateOrder
(
this
.
workForm
).
then
(
response
=>
{
this
.
msgSuccess
(
"任务下发成功"
);
this
.
workOpen
=
false
;
this
.
getList
();
}
);
}
}
}
);
}
,
//任务下发取消
cancelWorkForm
(){
this
.
workOpen
=
false
;
this
.
workForm
=
{
}
;
}
,
//反馈提交
submitFeedBookForm
(){
this
.
$refs
[
"feedBookForm"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
feedBookForm
.
workId
!=
null
)
{
this
.
feedBookForm
.
workStatus
=
'2'
;
updateOrder
(
this
.
feedBookForm
).
then
(
response
=>
{
this
.
msgSuccess
(
"反馈成功"
);
this
.
feedBookOpen
=
false
;
this
.
getList
();
}
);
}
}
}
);
}
,
//反馈取消
cancelFeedBook
(){
this
.
feedBookOpen
=
false
;
this
.
feedBookForm
=
{
}
;
}
,
}
}
}
;
}
;
<
/script
>
<
/script
>
gassafetyprogress-web/src/views/standingBook/equipment/index.vue
View file @
4b9c01b3
...
@@ -31,14 +31,14 @@
...
@@ -31,14 +31,14 @@
<el-form-item
label=
"安装时间"
prop=
"installTime"
>
<el-form-item
label=
"安装时间"
prop=
"installTime"
>
<el-date-picker
clearable
size=
"small"
<el-date-picker
clearable
size=
"small"
v-model=
"queryParams.installTimeStart"
v-model=
"queryParams.installTimeStart"
type=
"date
time
"
type=
"date"
value-format=
"yyyy-MM-dd
HH:mm:ss
"
value-format=
"yyyy-MM-dd"
placeholder=
"请选择起始时间"
>
placeholder=
"请选择起始时间"
>
</el-date-picker><span
style=
"color: #bebfc3"
>
-
</span>
</el-date-picker><span
style=
"color: #bebfc3"
>
-
</span>
<el-date-picker
clearable
size=
"small"
<el-date-picker
clearable
size=
"small"
v-model=
"queryParams.installTimeEnd"
v-model=
"queryParams.installTimeEnd"
type=
"date
time
"
type=
"date"
value-format=
"yyyy-MM-dd
HH:mm:ss
"
value-format=
"yyyy-MM-dd"
placeholder=
"请选择截止时间"
>
placeholder=
"请选择截止时间"
>
</el-date-picker>
</el-date-picker>
</el-form-item>
</el-form-item>
...
@@ -116,7 +116,7 @@
...
@@ -116,7 +116,7 @@
/>
/>
<!-- 添加或修改用户加装安全装置台账对话框 -->
<!-- 添加或修改用户加装安全装置台账对话框 -->
<el-dialog
:title=
"title
"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
cancel=
"cancel
"
>
<el-dialog
:title=
"title
1"
:visible
.
sync=
"open1"
width=
"800px"
append-to-body
@
cancel=
"cancel1
"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<el-row>
<el-row>
<el-col
:span=
"11"
>
<el-col
:span=
"11"
>
...
@@ -159,8 +159,8 @@
...
@@ -159,8 +159,8 @@
<el-form-item
label=
"安装时间"
prop=
"installTime"
>
<el-form-item
label=
"安装时间"
prop=
"installTime"
>
<el-date-picker
clearable
size=
"small"
<el-date-picker
clearable
size=
"small"
v-model=
"form.installTime"
v-model=
"form.installTime"
type=
"date
time
"
type=
"date"
value-format=
"yyyy-MM-dd
HH:mm:ss
"
value-format=
"yyyy-MM-dd"
placeholder=
"请选择安装时间"
placeholder=
"请选择安装时间"
style=
"width: 100%"
>
style=
"width: 100%"
>
</el-date-picker>
</el-date-picker>
...
@@ -175,11 +175,54 @@
...
@@ -175,11 +175,54 @@
</el-col>
</el-col>
</el-row>
</el-row>
</el-form>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
<el-button
@
click=
"cancel
1
"
>
取 消
</el-button>
</div>
</div>
</el-dialog>
</el-dialog>
<el-dialog
:title=
"title2"
:visible
.
sync=
"open2"
width=
"800px"
append-to-body
@
cancel=
"cancel2"
>
<el-form
ref=
"detailForm"
:model=
"detailForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"用户名称:"
>
<font>
{{detailForm.userName}}
</font>
</el-form-item>
<el-form-item
label=
"身份证号:"
>
<font>
{{detailForm.idCard}}
</font>
</el-form-item>
<el-form-item
label=
"品牌名称:"
>
<font
v-if=
"detailForm.brandName != '' && detailForm.brandName != null"
>
{{detailForm.brandName}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"用户编号:"
>
<font
v-if=
"detailForm.userNo != '' && detailForm.userNo != null"
>
{{detailForm.userNo}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
<el-form-item
label=
"联系电话:"
>
<font>
{{detailForm.linkMobile}}
</font>
</el-form-item>
<el-form-item
label=
"安装时间:"
>
<font>
{{detailForm.installTime}}
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"详细地址:"
>
<font>
{{detailForm.userAddress}}
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
>
<font
v-if=
"detailForm.remarks != '' && detailForm.remarks != null"
>
{{detailForm.remarks}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</el-form>
</el-dialog>
</div>
</div>
</template>
</template>
...
@@ -209,9 +252,11 @@ export default {
...
@@ -209,9 +252,11 @@ export default {
// 用户加装安全装置台账表格数据
// 用户加装安全装置台账表格数据
equipmentList
:
[],
equipmentList
:
[],
// 弹出层标题
// 弹出层标题
title
:
""
,
title1
:
""
,
title2
:
""
,
// 是否显示弹出层
// 是否显示弹出层
open
:
false
,
open1
:
false
,
open2
:
false
,
// 查询参数
// 查询参数
queryParams
:
{
queryParams
:
{
pageNum
:
1
,
pageNum
:
1
,
...
@@ -224,6 +269,7 @@ export default {
...
@@ -224,6 +269,7 @@ export default {
},
},
// 表单参数
// 表单参数
form
:
{},
form
:
{},
detailForm
:
{},
// 表单校验
// 表单校验
rules
:
{
rules
:
{
userName
:
[
userName
:
[
...
@@ -260,12 +306,16 @@ export default {
...
@@ -260,12 +306,16 @@ export default {
});
});
},
},
// 取消按钮
// 取消按钮
cancel
()
{
cancel1
()
{
this
.
open
=
false
;
this
.
open1
=
false
;
this
.
reset
();
this
.
reset1
();
},
cancel2
()
{
this
.
open2
=
false
;
this
.
reset2
();
},
},
// 表单重置
// 表单重置
reset
()
{
reset
1
()
{
this
.
form
=
{
this
.
form
=
{
safeEquipmentId
:
null
,
safeEquipmentId
:
null
,
userName
:
null
,
userName
:
null
,
...
@@ -284,6 +334,25 @@ export default {
...
@@ -284,6 +334,25 @@ export default {
};
};
this
.
resetForm
(
"form"
);
this
.
resetForm
(
"form"
);
},
},
reset2
()
{
this
.
detailForm
=
{
safeEquipmentId
:
null
,
userName
:
null
,
userNo
:
null
,
userAddress
:
null
,
idCard
:
null
,
linkMobile
:
null
,
installTime
:
null
,
brandName
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
isDel
:
null
,
remarks
:
null
};
this
.
resetForm
(
"detailForm"
);
},
/** 搜索按钮操作 */
/** 搜索按钮操作 */
handleQuery
()
{
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
queryParams
.
pageNum
=
1
;
...
@@ -296,18 +365,17 @@ export default {
...
@@ -296,18 +365,17 @@ export default {
},
},
/** 新增按钮操作 */
/** 新增按钮操作 */
handleAdd
()
{
handleAdd
()
{
this
.
reset
();
this
.
reset
1
();
this
.
open
=
true
;
this
.
open
1
=
true
;
this
.
title
=
"添加用户加装安全装置台账"
;
this
.
title
1
=
"添加用户加装安全装置台账"
;
},
},
/** 修改按钮操作 */
/** 修改按钮操作 */
handleUpdate
(
row
)
{
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset
1
();
getEquipment
(
row
.
safeEquipmentId
).
then
(
response
=>
{
getEquipment
(
row
.
safeEquipmentId
).
then
(
response
=>
{
console
.
log
(
"data"
,
response
.
data
);
this
.
form
=
response
.
data
;
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
open
1
=
true
;
this
.
title
=
"修改用户加装安全装置台账"
;
this
.
title
1
=
"修改用户加装安全装置台账"
;
});
});
},
},
/** 提交按钮 */
/** 提交按钮 */
...
@@ -362,12 +430,12 @@ export default {
...
@@ -362,12 +430,12 @@ export default {
},
},
/** 详细信息跳转 */
/** 详细信息跳转 */
showDetail
(
row
)
{
showDetail
(
row
)
{
this
.
$router
.
push
({
this
.
reset2
();
path
:
'/standingBook/equipmentDetail'
,
getEquipment
(
row
.
safeEquipmentId
).
then
(
response
=>
{
query
:
{
this
.
detailForm
=
response
.
data
;
safeEquipmentId
:
row
.
safeEquipmentId
this
.
open2
=
true
;
}
this
.
title2
=
"用户加装安全装置台账详情"
;
})
})
;
},
},
}
}
};
};
...
...
gassafetyprogress-web/src/views/standingBook/equipmentDetail/index.vue
deleted
100644 → 0
View file @
eea1a2a6
<
template
>
<div
class=
"app-container"
>
<!--
<el-row>
<el-col
:span=
"24"
style=
"padding-left: 15px;margin-bottom: -10px;"
>
<div
style=
"height: 45px;"
@
click=
"$router.go(-1)"
>
<el-button
size=
"medium"
type=
"text"
style=
"font-size: 18px; color: rgb(7, 63, 112);float: left;"
>
返回
</el-button>
</div>
</el-col>
</el-row>
-->
<el-row
style=
"width: 100%;height: 40px;"
>
<el-col
:span=
"24"
>
<div
style=
""
>
<ul>
<li
style=
"list-style: none;font-weight: 900;font-size: 20px;color: #053b6a;"
>
燃气用户加装安全装置台账详情
</li>
</ul>
</div>
</el-col>
</el-row>
<el-row
style=
"width: 100%;padding: 20px;"
>
<el-form
ref=
"form"
v-model=
"form"
label-width=
"100px"
style=
"width: 100%;"
>
<el-row>
<el-col
:span=
"6"
>
<el-form-item
label=
"用户名称:"
prop=
"userName"
>
<font>
{{
form
.
userName
}}
</font>
</el-form-item>
<el-form-item
label=
"身份证号:"
prop=
"idCard"
>
<font>
{{
form
.
idCard
}}
</font>
</el-form-item>
<el-form-item
label=
"品牌名称:"
prop=
"brandName"
>
<font
v-if=
"form.brandName != '' && form.brandName != null"
>
{{
form
.
brandName
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"用户编号:"
prop=
"userNo"
>
<font
v-if=
"form.userNo != '' && form.userNo != null"
>
{{
form
.
userNo
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
<el-form-item
label=
"联系电话:"
prop=
"linkMobile"
>
<font>
{{
form
.
linkMobile
}}
</font>
</el-form-item>
<el-form-item
label=
"安装时间:"
prop=
"installTime"
>
<font>
{{
form
.
installTime
}}
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"详细地址:"
prop=
"userAddress"
>
<font>
{{
form
.
userAddress
}}
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
prop=
"remarks"
>
<font
v-if=
"form.remarks != '' && form.remarks != null"
>
{{
form
.
remarks
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</el-form>
</el-row>
</div>
</
template
>
<
script
>
import
{
getEquipment
}
from
"@/api/standingBook/equipment"
;
export
default
{
name
:
"equipmentDetail"
,
components
:
{
},
data
()
{
return
{
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 表单参数
form
:
{},
// 表单校验
rules
:
{
}
};
},
created
()
{
// 如果是跳转来的,则接受初始化参数
this
.
safeEquipmentId
=
this
.
$route
.
query
.
safeEquipmentId
;
},
mounted
()
{
this
.
getDetail
();
},
methods
:
{
getDetail
()
{
getEquipment
(
this
.
safeEquipmentId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
console
.
log
(
this
.
form
,
"this.form"
)
const
obj
=
this
.
form
;
});
},
}
}
</
script
>
gassafetyprogress-web/src/views/standingBook/hidden/index.vue
View file @
4b9c01b3
...
@@ -131,7 +131,7 @@
...
@@ -131,7 +131,7 @@
/>
/>
<!-- 添加或修改隐患整治台账对话框 -->
<!-- 添加或修改隐患整治台账对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
cancel=
"cancel
"
>
<el-dialog
:title=
"title1"
:visible
.
sync=
"open1"
width=
"800px"
append-to-body
@
cancel=
"cancel1
"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<el-row>
<el-row>
<el-col
:span=
"11"
>
<el-col
:span=
"11"
>
...
@@ -169,7 +169,6 @@
...
@@ -169,7 +169,6 @@
<el-row>
<el-row>
<el-col
:span=
"23"
>
<el-col
:span=
"23"
>
<el-form-item
label=
"经纬度坐标"
prop=
"longitude"
>
<el-form-item
label=
"经纬度坐标"
prop=
"longitude"
>
<el-row>
<el-col
:span=
"9"
>
<el-col
:span=
"9"
>
<el-input
v-model=
"form.longitude"
placeholder=
"请输入经度"
/>
<el-input
v-model=
"form.longitude"
placeholder=
"请输入经度"
/>
</el-col>
</el-col>
...
@@ -179,7 +178,6 @@
...
@@ -179,7 +178,6 @@
<el-col
:span=
"3"
style=
"margin-left: 30px"
>
<el-col
:span=
"3"
style=
"margin-left: 30px"
>
<el-button
type=
"primary"
plain
@
click=
"MapdialogFun"
>
选择经纬度
</el-button>
<el-button
type=
"primary"
plain
@
click=
"MapdialogFun"
>
选择经纬度
</el-button>
</el-col>
</el-col>
</el-row>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
...
@@ -231,10 +229,65 @@
...
@@ -231,10 +229,65 @@
</el-form>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel
"
>
取 消
</el-button>
<el-button
@
click=
"cancel1
"
>
取 消
</el-button>
</div>
</div>
</el-dialog>
</el-dialog>
<el-dialog
:title=
"title2"
:visible
.
sync=
"open2"
width=
"800px"
append-to-body
@
cancel=
"cancel2"
>
<el-form
ref=
"detailForm"
:model=
"detailForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"隐患名称:"
>
<font>
{{detailForm.hiddenTitle}}
</font>
</el-form-item>
<el-form-item
label=
"隐患发现人员:"
>
<font>
{{detailForm.hiddenFindPeople}}
</font>
</el-form-item>
<el-form-item
label=
"隐患位置:"
>
<font>
{{detailForm.hiddenLocation}}
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"隐患等级:"
>
<font
v-if=
"detailForm.hiddenType == '1'"
>
一级隐患
</font>
<font
v-if=
"detailForm.hiddenType == '2'"
>
二级隐患
</font>
<font
v-if=
"detailForm.hiddenType == '3'"
>
三级隐患
</font>
</el-form-item>
<el-form-item
label=
"发现时间:"
>
<font>
{{detailForm.hiddenFindDate}}
</font>
</el-form-item>
<el-form-item
label=
"处理方案:"
>
<span
class=
"dbtn"
@
click=
"checkFile(detailForm.dealPlanUrl)"
v-if=
"detailForm.dealPlan != ''"
>
<i
class=
"el-icon el-icon-view"
></i>
查看/下载
</span>
<span
v-else
>
-
</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"隐患内容:"
>
<font>
{{detailForm.hiddenContent}}
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"整治情况:"
>
<font
v-if=
"detailForm.remediation != '' && detailForm.remediation != null"
>
{{detailForm.remediation}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
>
<font
v-if=
"detailForm.remarks != '' && detailForm.remarks != null"
>
{{detailForm.remarks}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</el-form>
</el-dialog>
<GetPos
<GetPos
:dialogVisible
.
sync=
"dialogTableVisible"
:dialogVisible
.
sync=
"dialogTableVisible"
device=
""
device=
""
...
@@ -279,9 +332,11 @@ export default {
...
@@ -279,9 +332,11 @@ export default {
// 隐患整治台账表格数据
// 隐患整治台账表格数据
hiddenList
:
[],
hiddenList
:
[],
// 弹出层标题
// 弹出层标题
title
:
""
,
title1
:
""
,
title2
:
""
,
// 是否显示弹出层
// 是否显示弹出层
open
:
false
,
open1
:
false
,
open2
:
false
,
// 隐患类型字典
// 隐患类型字典
typeOptions
:
[],
typeOptions
:
[],
// 上传文件列表
// 上传文件列表
...
@@ -300,6 +355,7 @@ export default {
...
@@ -300,6 +355,7 @@ export default {
},
},
// 表单参数
// 表单参数
form
:
{},
form
:
{},
detailForm
:
{},
// 表单校验
// 表单校验
rules
:
{
rules
:
{
hiddenTitle
:
[
hiddenTitle
:
[
...
@@ -346,19 +402,25 @@ export default {
...
@@ -346,19 +402,25 @@ export default {
});
});
},
},
// 取消按钮
// 取消按钮
cancel
()
{
cancel
1
()
{
this
.
open
=
false
;
this
.
open
1
=
false
;
this
.
reset
();
this
.
reset
1
();
this
.
fileList
=
[];
this
.
fileList
=
[];
this
.
devicePos
=
[];
this
.
devicePos
=
[];
},
},
cancel2
()
{
this
.
open2
=
false
;
this
.
reset2
();
},
// 表单重置
// 表单重置
reset
()
{
reset
1
()
{
this
.
form
=
{
this
.
form
=
{
hiddenId
:
null
,
hiddenId
:
null
,
hiddenTitle
:
null
,
hiddenTitle
:
null
,
hiddenContent
:
null
,
hiddenContent
:
null
,
hiddenLocation
:
null
,
hiddenLocation
:
null
,
longitude
:
null
,
latitude
:
null
,
hiddenType
:
null
,
hiddenType
:
null
,
hiddenFindPeople
:
null
,
hiddenFindPeople
:
null
,
hiddenFindDate
:
null
,
hiddenFindDate
:
null
,
...
@@ -375,6 +437,28 @@ export default {
...
@@ -375,6 +437,28 @@ export default {
this
.
fileList
=
[];
this
.
fileList
=
[];
this
.
devicePos
=
[];
this
.
devicePos
=
[];
},
},
reset2
()
{
this
.
detailForm
=
{
hiddenId
:
null
,
hiddenTitle
:
null
,
hiddenContent
:
null
,
hiddenLocation
:
null
,
longitude
:
null
,
latitude
:
null
,
hiddenType
:
null
,
hiddenFindPeople
:
null
,
hiddenFindDate
:
null
,
dealPlan
:
null
,
remediation
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
isDel
:
null
,
remarks
:
null
};
this
.
resetForm
(
"detailForm"
);
},
/** 搜索按钮操作 */
/** 搜索按钮操作 */
handleQuery
()
{
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
queryParams
.
pageNum
=
1
;
...
@@ -387,15 +471,14 @@ export default {
...
@@ -387,15 +471,14 @@ export default {
},
},
/** 新增按钮操作 */
/** 新增按钮操作 */
handleAdd
()
{
handleAdd
()
{
this
.
reset
();
this
.
reset
1
();
this
.
open
=
true
;
this
.
open
1
=
true
;
this
.
title
=
"添加隐患整治台账"
;
this
.
title
1
=
"添加隐患整治台账"
;
},
},
/** 修改按钮操作 */
/** 修改按钮操作 */
handleUpdate
(
row
)
{
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset1
();
const
hiddenId
=
row
.
hiddenId
||
this
.
ids
getHidden
(
row
.
hiddenId
).
then
(
response
=>
{
getHidden
(
hiddenId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
form
=
response
.
data
;
if
(
this
.
form
.
dealPlan
)
{
if
(
this
.
form
.
dealPlan
)
{
this
.
fileList
.
push
({
this
.
fileList
.
push
({
...
@@ -404,8 +487,8 @@ export default {
...
@@ -404,8 +487,8 @@ export default {
});
});
}
}
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
open
=
true
;
this
.
open
1
=
true
;
this
.
title
=
"修改隐患整治台账"
;
this
.
title
1
=
"修改隐患整治台账"
;
});
});
},
},
/** 提交按钮 */
/** 提交按钮 */
...
@@ -415,13 +498,13 @@ export default {
...
@@ -415,13 +498,13 @@ export default {
if
(
this
.
form
.
hiddenId
!=
null
)
{
if
(
this
.
form
.
hiddenId
!=
null
)
{
updateHidden
(
this
.
form
).
then
(
response
=>
{
updateHidden
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"修改成功"
);
this
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
open
1
=
false
;
this
.
getList
();
this
.
getList
();
});
});
}
else
{
}
else
{
addHidden
(
this
.
form
).
then
(
response
=>
{
addHidden
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"新增成功"
);
this
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
open
1
=
false
;
this
.
getList
();
this
.
getList
();
});
});
}
}
...
@@ -460,12 +543,12 @@ export default {
...
@@ -460,12 +543,12 @@ export default {
},
},
/** 详细信息跳转 */
/** 详细信息跳转 */
showDetail
(
row
)
{
showDetail
(
row
)
{
this
.
$router
.
push
({
this
.
reset2
();
path
:
'/standingBook/hiddenDetail'
,
getHidden
(
row
.
hiddenId
).
then
(
response
=>
{
query
:
{
this
.
detailForm
=
response
.
data
;
hiddenId
:
row
.
hiddenId
this
.
open2
=
true
;
}
this
.
title2
=
"隐患整治台账详情"
;
})
})
;
},
},
checkFile
(
url
)
{
checkFile
(
url
)
{
window
.
open
(
url
,
'_blank'
);
window
.
open
(
url
,
'_blank'
);
...
@@ -503,13 +586,14 @@ export default {
...
@@ -503,13 +586,14 @@ export default {
<
style
>
<
style
>
.dbtn
{
.dbtn
{
display
:
inline-block
;
display
:
inline-block
;
padding
:
2px
5px
;
line-height
:
normal
;
padding-left
:
2px
;
padding-right
:
2px
;
cursor
:
pointer
;
cursor
:
pointer
;
border-radius
:
3px
;
border-radius
:
3px
;
border-style
:
solid
;
border-style
:
solid
;
border-width
:
0
;
border-width
:
0
;
color
:
rgb
(
48
,
180
,
107
);
color
:
rgb
(
48
,
180
,
107
);
font-size
:
9px
;
}
}
.dbtn
:hover
{
.dbtn
:hover
{
border-width
:
1px
;
border-width
:
1px
;
...
...
gassafetyprogress-web/src/views/standingBook/hiddenDetail/index.vue
deleted
100644 → 0
View file @
eea1a2a6
<
template
>
<div
class=
"app-container"
>
<!--
<el-row>
<el-col
:span=
"24"
style=
"padding-left: 15px;margin-bottom: -10px;"
>
<div
style=
"height: 45px;"
@
click=
"$router.go(-1)"
>
<el-button
size=
"medium"
type=
"text"
style=
"font-size: 18px; color: rgb(7, 63, 112);float: left;"
>
返回
</el-button>
</div>
</el-col>
</el-row>
-->
<el-row
style=
"width: 100%;height: 40px;"
>
<el-col
:span=
"24"
>
<div
style=
""
>
<ul>
<li
style=
"list-style: none;font-weight: 900;font-size: 20px;color: #053b6a;"
>
隐患整治台账详情
</li>
</ul>
</div>
</el-col>
</el-row>
<el-row
style=
"width: 100%;padding: 20px;"
>
<el-form
ref=
"form"
v-model=
"form"
label-width=
"120px"
style=
"width: 100%;"
>
<el-row>
<el-col
:span=
"6"
>
<el-form-item
label=
"隐患名称:"
prop=
"hiddenTitle"
>
<font>
{{
form
.
hiddenTitle
}}
</font>
</el-form-item>
<el-form-item
label=
"隐患发现人员:"
prop=
"hiddenFindPeople"
>
<font>
{{
form
.
hiddenFindPeople
}}
</font>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"隐患等级:"
prop=
"hiddenType"
>
<font
v-if=
"form.hiddenType == '1'"
>
一级隐患
</font>
<font
v-if=
"form.hiddenType == '2'"
>
二级隐患
</font>
<font
v-if=
"form.hiddenType == '3'"
>
三级隐患
</font>
</el-form-item>
<el-form-item
label=
"发现时间:"
prop=
"hiddenFindDate"
>
<font>
{{
form
.
hiddenFindDate
}}
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"隐患位置:"
prop=
"hiddenLocation"
>
<font>
{{
form
.
hiddenLocation
}}
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"隐患内容:"
prop=
"hiddenContent"
>
<font>
{{
form
.
hiddenContent
}}
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"整治情况:"
prop=
"remediation"
>
<font
v-if=
"form.remediation != '' && form.remediation != null"
>
{{
form
.
remediation
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
prop=
"remarks"
>
<font
v-if=
"form.remarks != '' && form.remarks != null"
>
{{
form
.
remarks
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</el-form>
</el-row>
</div>
</
template
>
<
script
>
import
{
getHidden
}
from
"@/api/standingBook/hidden"
;
export
default
{
name
:
"hiddenDetail"
,
components
:
{
},
data
()
{
return
{
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 表单参数
form
:
{},
// 表单校验
rules
:
{
}
};
},
created
()
{
// 如果是跳转来的,则接受初始化参数
this
.
hiddenId
=
this
.
$route
.
query
.
hiddenId
;
},
mounted
()
{
this
.
getDetail
();
},
methods
:
{
getDetail
()
{
getHidden
(
this
.
hiddenId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
console
.
log
(
this
.
form
,
"this.form"
)
const
obj
=
this
.
form
;
});
},
}
}
</
script
>
gassafetyprogress-web/src/views/standingBook/trouble/index.vue
View file @
4b9c01b3
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
label=
"是否处理"
prop=
"isDeal"
>
<el-form-item
label=
"是否处理"
prop=
"isDeal"
>
<el-select
v-model=
"queryParams.isDeal"
placeholder=
"请选择
事故类型
"
clearable
size=
"small"
>
<el-select
v-model=
"queryParams.isDeal"
placeholder=
"请选择
是否处理
"
clearable
size=
"small"
>
<el-option
<el-option
v-for=
"dict in isDealOptions"
v-for=
"dict in isDealOptions"
:key=
"dict.dictValue"
:key=
"dict.dictValue"
...
@@ -30,15 +30,15 @@
...
@@ -30,15 +30,15 @@
></el-option>
></el-option>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
label=
"
处理完成时间"
prop=
"deal
Date"
>
<el-form-item
label=
"
事故发生时间"
prop=
"happen
Date"
>
<el-date-picker
clearable
size=
"small"
<el-date-picker
clearable
size=
"small"
v-model=
"queryParams.
deal
DateStart"
v-model=
"queryParams.
happen
DateStart"
type=
"datetime"
type=
"datetime"
value-format=
"yyyy-MM-dd HH:mm:ss"
value-format=
"yyyy-MM-dd HH:mm:ss"
placeholder=
"请选择起始时间"
>
placeholder=
"请选择起始时间"
>
</el-date-picker><span
style=
"color: #bebfc3"
>
-
</span>
</el-date-picker><span
style=
"color: #bebfc3"
>
-
</span>
<el-date-picker
clearable
size=
"small"
<el-date-picker
clearable
size=
"small"
v-model=
"queryParams.
deal
DateEnd"
v-model=
"queryParams.
happen
DateEnd"
type=
"datetime"
type=
"datetime"
value-format=
"yyyy-MM-dd HH:mm:ss"
value-format=
"yyyy-MM-dd HH:mm:ss"
placeholder=
"请选择截止时间"
>
placeholder=
"请选择截止时间"
>
...
@@ -84,15 +84,16 @@
...
@@ -84,15 +84,16 @@
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"事故地点"
align=
"center"
prop=
"troubleLocation"
width=
"300px"
/>
<el-table-column
label=
"事故地点"
align=
"center"
prop=
"troubleLocation"
width=
"300px"
/>
<el-table-column
label=
"责任单位"
align=
"center"
prop=
"responsibleUnit"
/>
<el-table-column
label=
"事故发生时间"
align=
"center"
prop=
"happenDate"
width=
"180px"
/>
<el-table-column
label=
"责任人员"
align=
"center"
prop=
"responsiblePeople"
/>
<el-table-column
label=
"责任单位"
align=
"center"
prop=
"responsibleUnit"
width=
"150px"
/>
<el-table-column
label=
"责任人员"
align=
"center"
prop=
"responsiblePeople"
width=
"150px"
/>
<el-table-column
label=
"是否处理"
align=
"center"
prop=
"isDeal"
width=
"120px"
>
<el-table-column
label=
"是否处理"
align=
"center"
prop=
"isDeal"
width=
"120px"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.isDeal == 1"
>
已处理
</span>
<span
v-if=
"scope.row.isDeal == 1"
>
已处理
</span>
<span
v-if=
"scope.row.isDeal == 2"
>
未处理
</span>
<span
v-if=
"scope.row.isDeal == 2"
>
未处理
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"处理完成时间"
align=
"center"
prop=
"dealDate"
width=
"180px"
/
>
<!-- <el-table-column label="处理完成时间" align="center" prop="dealDate" width="180px"/>--
>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-button
<el-button
...
@@ -129,7 +130,7 @@
...
@@ -129,7 +130,7 @@
/>
/>
<!-- 添加或修改事故台账对话框 -->
<!-- 添加或修改事故台账对话框 -->
<el-dialog
:title=
"title
"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
cancel=
"cancel
"
>
<el-dialog
:title=
"title
1"
:visible
.
sync=
"open1"
width=
"800px"
append-to-body
@
cancel=
"cancel1
"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<el-row>
<el-row>
<el-col
:span=
"11"
>
<el-col
:span=
"11"
>
...
@@ -156,7 +157,6 @@
...
@@ -156,7 +157,6 @@
<el-row>
<el-row>
<el-col
:span=
"23"
>
<el-col
:span=
"23"
>
<el-form-item
label=
"经纬度坐标"
prop=
"longitude"
>
<el-form-item
label=
"经纬度坐标"
prop=
"longitude"
>
<el-row>
<el-col
:span=
"9"
>
<el-col
:span=
"9"
>
<el-input
v-model=
"form.longitude"
placeholder=
"请输入经度"
/>
<el-input
v-model=
"form.longitude"
placeholder=
"请输入经度"
/>
</el-col>
</el-col>
...
@@ -166,16 +166,26 @@
...
@@ -166,16 +166,26 @@
<el-col
:span=
"3"
style=
"margin-left: 30px"
>
<el-col
:span=
"3"
style=
"margin-left: 30px"
>
<el-button
type=
"primary"
plain
@
click=
"MapdialogFun"
>
选择经纬度
</el-button>
<el-button
type=
"primary"
plain
@
click=
"MapdialogFun"
>
选择经纬度
</el-button>
</el-col>
</el-col>
</el-row>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
"
23
"
>
<el-col
:span=
"
11
"
>
<el-form-item
label=
"事故原因"
prop=
"troubleReason"
>
<el-form-item
label=
"事故原因"
prop=
"troubleReason"
>
<el-input
v-model=
"form.troubleReason"
placeholder=
"请输入事故原因"
/>
<el-input
v-model=
"form.troubleReason"
placeholder=
"请输入事故原因"
/>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"事故发生时间"
prop=
"happenDate"
>
<el-date-picker
clearable
size=
"small"
v-model=
"form.happenDate"
type=
"datetime"
value-format=
"yyyy-MM-dd HH:mm:ss"
placeholder=
"选择事故发生时间"
style=
"width: 100%"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
"23"
>
<el-col
:span=
"23"
>
...
@@ -228,10 +238,67 @@
...
@@ -228,10 +238,67 @@
<div
slot=
"footer"
class=
"dialog-footer"
>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
<el-button
@
click=
"cancel
1
"
>
取 消
</el-button>
</div>
</div>
</el-dialog>
</el-dialog>
<el-dialog
:title=
"title2"
:visible
.
sync=
"open2"
width=
"800px"
append-to-body
@
cancel=
"cancel2"
>
<el-form
ref=
"detailForm"
:model=
"detailForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"事故名称:"
>
<font>
{{detailForm.troubleName}}
</font>
</el-form-item>
<el-form-item
label=
"事故原因:"
>
<font>
{{detailForm.troubleReason}}
</font>
</el-form-item>
<el-form-item
label=
"责任单位:"
>
<font
v-if=
"detailForm.responsibleUnit != '' && detailForm.responsibleUnit != null"
>
{{detailForm.responsibleUnit}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"事故类型:"
>
<font
v-if=
"detailForm.troubleType == '1'"
>
安全生产事故
</font>
<font
v-if=
"detailForm.troubleType == '2'"
>
非生产安全事故
</font>
</el-form-item>
<el-form-item
label=
"事故地点:"
>
<font>
{{detailForm.troubleLocation}}
</font>
</el-form-item>
<el-form-item
label=
"责任人员:"
>
<font
v-if=
"detailForm.responsiblePeople != '' && detailForm.responsiblePeople != null"
>
{{detailForm.responsiblePeople}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"简要经过:"
>
<font
v-if=
"detailForm.briefProcess != '' && detailForm.briefProcess != null"
>
{{detailForm.briefProcess}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"是否处理:"
>
<font
v-if=
"detailForm.isDeal == '1'"
>
已处理
</font>
<font
v-if=
"detailForm.isDeal == '2'"
>
未处理
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"处理完成时间:"
>
<font>
{{detailForm.dealDate}}
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
>
<font
v-if=
"detailForm.remarks != '' && detailForm.remarks != null"
>
{{detailForm.remarks}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</el-form>
</el-dialog>
<GetPos
<GetPos
:dialogVisible
.
sync=
"dialogTableVisible"
:dialogVisible
.
sync=
"dialogTableVisible"
device=
""
device=
""
...
@@ -277,9 +344,11 @@ export default {
...
@@ -277,9 +344,11 @@ export default {
dialogTableVisible
:
false
,
dialogTableVisible
:
false
,
devicePos
:
[],
devicePos
:
[],
// 弹出层标题
// 弹出层标题
title
:
""
,
title1
:
""
,
title2
:
""
,
// 是否显示弹出层
// 是否显示弹出层
open
:
false
,
open1
:
false
,
open2
:
false
,
// 查询参数
// 查询参数
queryParams
:
{
queryParams
:
{
pageNum
:
1
,
pageNum
:
1
,
...
@@ -287,11 +356,14 @@ export default {
...
@@ -287,11 +356,14 @@ export default {
troubleName
:
null
,
troubleName
:
null
,
troubleType
:
null
,
troubleType
:
null
,
isDeal
:
null
,
isDeal
:
null
,
happenDateStart
:
null
,
happenDateEnd
:
null
,
dealDateStart
:
null
,
dealDateStart
:
null
,
dealDateEnd
:
null
dealDateEnd
:
null
},
},
// 表单参数
// 表单参数
form
:
{},
form
:
{},
detailForm
:
{},
// 表单校验
// 表单校验
rules
:
{
rules
:
{
troubleName
:
[
troubleName
:
[
...
@@ -306,6 +378,9 @@ export default {
...
@@ -306,6 +378,9 @@ export default {
longitude
:
[
longitude
:
[
{
required
:
true
,
message
:
"请输入经纬度"
,
trigger
:
"blur"
},
{
required
:
true
,
message
:
"请输入经纬度"
,
trigger
:
"blur"
},
],
],
happenDate
:
[
{
required
:
true
,
message
:
"请选择事故发生时间"
,
trigger
:
"blur"
},
],
troubleReason
:
[
troubleReason
:
[
{
required
:
true
,
message
:
"请输入事故原因"
,
trigger
:
"blur"
},
{
required
:
true
,
message
:
"请输入事故原因"
,
trigger
:
"blur"
},
],
],
...
@@ -338,23 +413,30 @@ export default {
...
@@ -338,23 +413,30 @@ export default {
});
});
},
},
// 取消按钮
// 取消按钮
cancel
()
{
cancel
1
()
{
this
.
open
=
false
;
this
.
open
1
=
false
;
this
.
reset
();
this
.
reset
1
();
this
.
devicePos
=
[];
this
.
devicePos
=
[];
},
},
cancel2
()
{
this
.
open2
=
false
;
this
.
reset2
();
},
// 表单重置
// 表单重置
reset
()
{
reset
1
()
{
this
.
form
=
{
this
.
form
=
{
troubleId
:
null
,
troubleId
:
null
,
troubleName
:
null
,
troubleName
:
null
,
troubleLocation
:
null
,
troubleLocation
:
null
,
longitude
:
null
,
latitude
:
null
,
troubleType
:
null
,
troubleType
:
null
,
briefProcess
:
null
,
briefProcess
:
null
,
troubleReason
:
null
,
troubleReason
:
null
,
responsibleUnit
:
null
,
responsibleUnit
:
null
,
responsiblePeople
:
null
,
responsiblePeople
:
null
,
isDeal
:
null
,
isDeal
:
null
,
happenDate
:
null
,
dealDate
:
null
,
dealDate
:
null
,
createBy
:
null
,
createBy
:
null
,
createTime
:
null
,
createTime
:
null
,
...
@@ -366,6 +448,30 @@ export default {
...
@@ -366,6 +448,30 @@ export default {
this
.
resetForm
(
"form"
);
this
.
resetForm
(
"form"
);
this
.
devicePos
=
[];
this
.
devicePos
=
[];
},
},
reset2
()
{
this
.
detailForm
=
{
troubleId
:
null
,
troubleName
:
null
,
troubleLocation
:
null
,
longitude
:
null
,
latitude
:
null
,
troubleType
:
null
,
briefProcess
:
null
,
troubleReason
:
null
,
responsibleUnit
:
null
,
responsiblePeople
:
null
,
isDeal
:
null
,
happenDate
:
null
,
dealDate
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
isDel
:
null
,
remarks
:
null
};
this
.
resetForm
(
"detailForm"
);
},
/** 搜索按钮操作 */
/** 搜索按钮操作 */
handleQuery
()
{
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
queryParams
.
pageNum
=
1
;
...
@@ -378,19 +484,18 @@ export default {
...
@@ -378,19 +484,18 @@ export default {
},
},
/** 新增按钮操作 */
/** 新增按钮操作 */
handleAdd
()
{
handleAdd
()
{
this
.
reset
();
this
.
reset
1
();
this
.
open
=
true
;
this
.
open
1
=
true
;
this
.
title
=
"添加
事故台账"
;
this
.
title
1
=
"添加燃气
事故台账"
;
},
},
/** 修改按钮操作 */
/** 修改按钮操作 */
handleUpdate
(
row
)
{
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset1
();
const
troubleId
=
row
.
troubleId
||
this
.
ids
getTrouble
(
row
.
troubleId
).
then
(
response
=>
{
getTrouble
(
troubleId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
form
=
response
.
data
;
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
open
=
true
;
this
.
open
1
=
true
;
this
.
title
=
"修改
事故台账"
;
this
.
title
1
=
"修改燃气
事故台账"
;
});
});
},
},
/** 提交按钮 */
/** 提交按钮 */
...
@@ -445,12 +550,12 @@ export default {
...
@@ -445,12 +550,12 @@ export default {
},
},
/** 详细信息跳转 */
/** 详细信息跳转 */
showDetail
(
row
)
{
showDetail
(
row
)
{
this
.
$router
.
push
({
this
.
reset2
();
path
:
'/standingBook/troubleDetail'
,
getTrouble
(
row
.
troubleId
).
then
(
response
=>
{
query
:
{
this
.
detailForm
=
response
.
data
;
troubleId
:
row
.
troubleId
this
.
open2
=
true
;
}
this
.
title2
=
"燃气事故台账详情"
;
})
})
;
},
},
MapdialogFun
()
{
MapdialogFun
()
{
this
.
dialogTableVisible
=
true
;
this
.
dialogTableVisible
=
true
;
...
...
gassafetyprogress-web/src/views/standingBook/troubleDetail/index.vue
deleted
100644 → 0
View file @
eea1a2a6
<
template
>
<div
class=
"app-container"
>
<!--
<el-row>
<el-col
:span=
"24"
style=
"padding-left: 15px;margin-bottom: -10px;"
>
<div
style=
"height: 45px;"
@
click=
"$router.go(-1)"
>
<el-button
size=
"medium"
type=
"text"
style=
"font-size: 18px; color: rgb(7, 63, 112);float: left;"
>
返回
</el-button>
</div>
</el-col>
</el-row>
-->
<el-row
style=
"width: 100%;height: 40px;"
>
<el-col
:span=
"24"
>
<div
style=
""
>
<ul>
<li
style=
"list-style: none;font-weight: 900;font-size: 20px;color: #053b6a;"
>
燃气事故台账详情
</li>
</ul>
</div>
</el-col>
</el-row>
<el-row
style=
"width: 100%;padding: 20px;"
>
<el-form
ref=
"form"
v-model=
"form"
label-width=
"120px"
style=
"width: 100%;"
>
<el-row>
<el-col
:span=
"6"
>
<el-form-item
label=
"事故名称:"
prop=
"troubleName"
>
<font>
{{
form
.
troubleName
}}
</font>
</el-form-item>
<el-form-item
label=
"事故原因:"
prop=
"troubleReason"
>
<font>
{{
form
.
troubleReason
}}
</font>
</el-form-item>
<el-form-item
label=
"责任单位:"
prop=
"responsibleUnit"
>
<font
v-if=
"form.responsibleUnit != '' && form.responsibleUnit != null"
>
{{
form
.
responsibleUnit
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"事故类型:"
prop=
"troubleType"
>
<font
v-if=
"form.troubleType == '1'"
>
安全生产事故
</font>
<font
v-if=
"form.troubleType == '2'"
>
非生产安全事故
</font>
</el-form-item>
<el-form-item
label=
"事故地点:"
prop=
"troubleLocation"
>
<font>
{{
form
.
troubleLocation
}}
</font>
</el-form-item>
<el-form-item
label=
"责任人员:"
prop=
"responsiblePeople"
>
<font
v-if=
"form.responsiblePeople != '' && form.responsiblePeople != null"
>
{{
form
.
responsiblePeople
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"简要经过:"
prop=
"briefProcess"
>
<font
v-if=
"form.briefProcess != '' && form.briefProcess != null"
>
{{
form
.
briefProcess
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
<el-row>
<el-col
:span=
"6"
>
<el-form-item
label=
"是否处理:"
prop=
"isDeal"
>
<font>
{{
form
.
isDeal
}}
</font>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"处理完成时间:"
prop=
"dealDate"
>
<font>
{{
form
.
dealDate
}}
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
prop=
"remarks"
>
<font
v-if=
"form.remarks != '' && form.remarks != null"
>
{{
form
.
remarks
}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</el-form>
</el-row>
</div>
</
template
>
<
script
>
import
{
getTrouble
}
from
"@/api/standingBook/trouble"
;
export
default
{
name
:
"troubleDetail"
,
components
:
{
},
data
()
{
return
{
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 表单参数
form
:
{},
// 表单校验
rules
:
{
}
};
},
created
()
{
// 如果是跳转来的,则接受初始化参数
this
.
troubleId
=
this
.
$route
.
query
.
troubleId
;
},
mounted
()
{
this
.
getDetail
();
},
methods
:
{
getDetail
()
{
getTrouble
(
this
.
troubleId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
console
.
log
(
this
.
form
,
"this.form"
)
const
obj
=
this
.
form
;
});
},
}
}
</
script
>
gassafetyprogress-web/src/views/system/user/index.vue
View file @
4b9c01b3
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
class=
"app-container"
>
<div
class=
"app-container"
>
<el-row
:gutter=
"20"
>
<el-row
:gutter=
"20"
>
<!--部门数据-->
<!--部门数据-->
<el-col
:span=
"4"
:xs=
"24"
>
<!--
<el-col
:span=
"4"
:xs=
"24"
>
<div
class=
"head-container"
>
<div
class=
"head-container"
>
<el-input
<el-input
v-model=
"deptName"
v-model=
"deptName"
...
@@ -24,9 +24,9 @@
...
@@ -24,9 +24,9 @@
@
node-click=
"handleNodeClick"
@
node-click=
"handleNodeClick"
/>
/>
</div>
</div>
</el-col>
</el-col>
-->
<!--用户数据-->
<!--用户数据-->
<el-col
:span=
"2
0
"
:xs=
"24"
>
<el-col
:span=
"2
4
"
:xs=
"24"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"用户名称"
prop=
"userName"
>
<el-form-item
label=
"用户名称"
prop=
"userName"
>
<el-input
<el-input
...
@@ -144,7 +144,7 @@
...
@@ -144,7 +144,7 @@
<el-table-column
label=
"用户编号"
align=
"center"
key=
"userId"
prop=
"userId"
v-if=
"columns[0].visible"
/>
<el-table-column
label=
"用户编号"
align=
"center"
key=
"userId"
prop=
"userId"
v-if=
"columns[0].visible"
/>
<el-table-column
label=
"用户名称"
align=
"center"
key=
"userName"
prop=
"userName"
v-if=
"columns[1].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"用户名称"
align=
"center"
key=
"userName"
prop=
"userName"
v-if=
"columns[1].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"用户昵称"
align=
"center"
key=
"nickName"
prop=
"nickName"
v-if=
"columns[2].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"用户昵称"
align=
"center"
key=
"nickName"
prop=
"nickName"
v-if=
"columns[2].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"
部门"
align=
"center"
key=
"deptName"
prop=
"dept.dept
Name"
v-if=
"columns[3].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"
所属单位"
align=
"center"
key=
"enterpriseName"
prop=
"enterprise
Name"
v-if=
"columns[3].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"手机号码"
align=
"center"
key=
"phonenumber"
prop=
"phonenumber"
v-if=
"columns[4].visible"
width=
"120"
/>
<el-table-column
label=
"手机号码"
align=
"center"
key=
"phonenumber"
prop=
"phonenumber"
v-if=
"columns[4].visible"
width=
"120"
/>
<el-table-column
label=
"状态"
align=
"center"
key=
"status"
v-if=
"columns[5].visible"
>
<el-table-column
label=
"状态"
align=
"center"
key=
"status"
v-if=
"columns[5].visible"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
...
@@ -214,8 +214,16 @@
...
@@ -214,8 +214,16 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"归属部门"
prop=
"deptId"
>
<el-form-item
label=
"所属单位"
prop=
"deptId"
>
<treeselect
v-model=
"form.deptId"
:options=
"deptOptions"
:show-count=
"true"
placeholder=
"请选择归属部门"
/>
<!--<treeselect v-model="form.deptId" :options="deptOptions" :show-count="true" placeholder="请选择归属部门" />-->
<el-select
v-model=
"form.deptId"
placeholder=
"请选择"
@
change=
"selectWorkUnit($event)"
>
<el-option
v-for=
"item in enterprises"
:key=
"item.enterpriseId"
:label=
"item.enterpriseName"
:value=
"item.enterpriseId"
></el-option>
</el-select>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
...
@@ -349,12 +357,15 @@ import { getToken } from "@/utils/auth";
...
@@ -349,12 +357,15 @@ import { getToken } from "@/utils/auth";
import
{
treeselect
}
from
"@/api/system/dept"
;
import
{
treeselect
}
from
"@/api/system/dept"
;
import
Treeselect
from
"@riophae/vue-treeselect"
;
import
Treeselect
from
"@riophae/vue-treeselect"
;
import
"@riophae/vue-treeselect/dist/vue-treeselect.css"
;
import
"@riophae/vue-treeselect/dist/vue-treeselect.css"
;
import
{
enterpriseLists
}
from
"@/api/regulation/info"
;
import
{
optionselect
}
from
"@/api/system/post"
;
export
default
{
export
default
{
name
:
"User"
,
name
:
"User"
,
components
:
{
Treeselect
},
components
:
{
Treeselect
},
data
()
{
data
()
{
return
{
return
{
zzz
:
''
,
// 遮罩层
// 遮罩层
loading
:
true
,
loading
:
true
,
// 导出遮罩层
// 导出遮罩层
...
@@ -389,8 +400,11 @@ export default {
...
@@ -389,8 +400,11 @@ export default {
sexOptions
:
[],
sexOptions
:
[],
// 岗位选项
// 岗位选项
postOptions
:
[],
postOptions
:
[],
//企业选项
enterprises
:
[],
// 角色选项
// 角色选项
roleOptions
:
[],
roleOptions
:
[],
// 表单参数
// 表单参数
form
:
{},
form
:
{},
defaultProps
:
{
defaultProps
:
{
...
@@ -467,7 +481,9 @@ export default {
...
@@ -467,7 +481,9 @@ export default {
},
},
created
()
{
created
()
{
this
.
getList
();
this
.
getList
();
this
.
getTreeselect
();
this
.
getPosts
();
//this.getTreeselect();
//this.getEnterpriseLists();
this
.
getDicts
(
"sys_normal_disable"
).
then
(
response
=>
{
this
.
getDicts
(
"sys_normal_disable"
).
then
(
response
=>
{
this
.
statusOptions
=
response
.
data
;
this
.
statusOptions
=
response
.
data
;
});
});
...
@@ -563,9 +579,10 @@ export default {
...
@@ -563,9 +579,10 @@ export default {
/** 新增按钮操作 */
/** 新增按钮操作 */
handleAdd
()
{
handleAdd
()
{
this
.
reset
();
this
.
reset
();
this
.
getTreeselect
();
//this.getTreeselect();
this
.
getEnterpriseLists
();
getUser
().
then
(
response
=>
{
getUser
().
then
(
response
=>
{
this
.
postOptions
=
response
.
posts
;
//
this.postOptions = response.posts;
this
.
roleOptions
=
response
.
roles
;
this
.
roleOptions
=
response
.
roles
;
this
.
open
=
true
;
this
.
open
=
true
;
this
.
title
=
"添加用户"
;
this
.
title
=
"添加用户"
;
...
@@ -575,11 +592,13 @@ export default {
...
@@ -575,11 +592,13 @@ export default {
/** 修改按钮操作 */
/** 修改按钮操作 */
handleUpdate
(
row
)
{
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset
();
this
.
getTreeselect
();
//this.getTreeselect();
this
.
getEnterpriseLists
();
const
userId
=
row
.
userId
||
this
.
ids
;
const
userId
=
row
.
userId
||
this
.
ids
;
getUser
(
userId
).
then
(
response
=>
{
getUser
(
userId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
form
=
response
.
data
;
this
.
postOptions
=
response
.
posts
;
this
.
getPosts
();
//this.postOptions = response.posts;
this
.
roleOptions
=
response
.
roles
;
this
.
roleOptions
=
response
.
roles
;
this
.
form
.
postIds
=
response
.
postIds
;
this
.
form
.
postIds
=
response
.
postIds
;
this
.
form
.
roleIds
=
response
.
roleIds
;
this
.
form
.
roleIds
=
response
.
roleIds
;
...
@@ -587,6 +606,7 @@ export default {
...
@@ -587,6 +606,7 @@ export default {
this
.
title
=
"修改用户"
;
this
.
title
=
"修改用户"
;
this
.
form
.
password
=
""
;
this
.
form
.
password
=
""
;
});
});
},
},
/** 重置密码按钮操作 */
/** 重置密码按钮操作 */
handleResetPwd
(
row
)
{
handleResetPwd
(
row
)
{
...
@@ -674,6 +694,49 @@ export default {
...
@@ -674,6 +694,49 @@ export default {
// 提交上传文件
// 提交上传文件
submitFileForm
()
{
submitFileForm
()
{
this
.
$refs
.
upload
.
submit
();
this
.
$refs
.
upload
.
submit
();
},
//查询所属单位
getEnterpriseLists
(){
enterpriseLists
().
then
(
response
=>
{
this
.
enterprises
=
response
.
rows
;
this
.
enterprises
.
push
({
enterpriseId
:
-
2
,
enterpriseName
:
"政府部门"
,
isDel
:
null
})
});
},
//选取所属单位
selectWorkUnit
(
val
){
this
.
getPosts
();
},
//获取岗位
getPosts
(){
this
.
postOptions
=
[];
console
.
log
(
this
.
form
.
deptId
,
'dkdfsdfkfkfkfkfdkfdkfkfkdkdfk'
)
if
(
this
.
form
.
deptId
==
"-2"
){
this
.
postOptions
.
push
(
{
"searchValue"
:
null
,
"createBy"
:
"admin"
,
"createTime"
:
"2022-01-10 16:22:37"
,
"updateBy"
:
null
,
"updateTime"
:
null
,
"remark"
:
""
,
"params"
:
{},
"postId"
:
1
,
"postCode"
:
"zhengfu"
,
"postName"
:
"县级指挥"
,
"postSort"
:
"1"
,
"status"
:
"0"
,
"flag"
:
false
}
)
return
;
}
optionselect
().
then
(
response
=>
{
this
.
postOptions
=
response
.
data
;
})
}
}
}
}
};
};
...
...
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