Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sgaqgl-vue
Project
Project
Details
Activity
Releases
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
李苏
sgaqgl-vue
Commits
02674688
Commit
02674688
authored
Nov 25, 2022
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增岗位
parent
183e6f38
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
259 additions
and
16 deletions
+259
-16
scgw.js
src/api/basicData/scgw.js
+4
-9
edit.vue
src/views/basicData/scgw/edit.vue
+9
-2
gwrygl.vue
src/views/basicData/scgw/gwrygl.vue
+121
-0
gwryglAdd.vue
src/views/basicData/scgw/gwryglAdd.vue
+107
-0
index.vue
src/views/basicData/scgw/index.vue
+16
-3
index.vue
...iews/dangerManagement/dangerRectificationRecord/index.vue
+1
-1
index.vue
src/views/dangerManagement/yhznytj/index.vue
+1
-1
No files found.
src/api/basicData/scgw.js
View file @
02674688
...
@@ -49,8 +49,8 @@ export function doDeleteRy(query) {
...
@@ -49,8 +49,8 @@ export function doDeleteRy(query) {
})
})
}
}
/**
/**
* in:id
*
in:id,userList
*
* @param query
* @param query
*/
*/
export
function
doQueryForImp
(
query
)
{
export
function
doQueryForImp
(
query
)
{
...
@@ -62,7 +62,8 @@ export function doQueryForImp(query) {
...
@@ -62,7 +62,8 @@ export function doQueryForImp(query) {
}
}
/**
/**
* in:id
* in:id,userList
* @param query
* @param query
*/
*/
export
function
doImp
(
query
)
{
export
function
doImp
(
query
)
{
...
@@ -72,9 +73,3 @@ export function doImp(query) {
...
@@ -72,9 +73,3 @@ export function doImp(query) {
data
:
query
||
{}
data
:
query
||
{}
})
})
}
}
aqgl
/
jcsj
/
scgwry
src/views/basicData/scgw/edit.vue
View file @
02674688
...
@@ -9,6 +9,14 @@
...
@@ -9,6 +9,14 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"所属部门"
ref=
"bmid"
prop=
"bmid"
>
<!--
<el-input
:readonly=
"readonly"
v-model=
"form.name"
></el-input>
-->
<RelSelect
style=
"width: 100%;"
src=
'kzzx/bm/query'
:match=
"
{value:'id',label:'bmmc'}" v-model='form.bmid' >
</RelSelect>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"20"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"岗位名称"
ref=
"name"
prop=
"name"
>
<el-form-item
label=
"岗位名称"
ref=
"name"
prop=
"name"
>
...
@@ -55,6 +63,7 @@
...
@@ -55,6 +63,7 @@
/* 当前表单初始值,默认由RelDialog查询indexQuery赋值,copy时不赋值id,初始化时所有query的值都会赋值给form*/
/* 当前表单初始值,默认由RelDialog查询indexQuery赋值,copy时不赋值id,初始化时所有query的值都会赋值给form*/
form
:
{
form
:
{
bmid
:
''
,
//ID
//ID
id
:
''
,
id
:
''
,
//编码
//编码
...
@@ -104,5 +113,3 @@
...
@@ -104,5 +113,3 @@
<
style
scoped
lang=
"scss"
>
<
style
scoped
lang=
"scss"
>
</
style
>
</
style
>
src/views/basicData/scgw/gwrygl.vue
0 → 100644
View file @
02674688
<
template
>
<DefaultDialog
:app=
'app'
>
<div
slot=
"form"
>
<gwryglAdd
:app=
'this'
v-if=
'showDialog'
></gwryglAdd>
<div
style=
"display: flex;width: 100%;margin-bottom: 5px;"
>
<el-button
size=
'mini'
@
click=
"addPerson"
type=
"primary"
>
新增人员
</el-button>
</div>
<div
style=
"height: 400px;width: 100%;margin-bottom: 5px;"
>
<!--
<EditTable
:app=
'this'
></EditTable>
-->
<TablePager
@
getData=
'getData'
:ref=
"'TablePager'"
:app=
'this'
:query=
'query'
@
selectItem=
'selectItem'
:delButton=
'true'
@
getRow=
'getRow'
>
</TablePager>
</div>
</div>
<div
slot=
"reFooter"
class=
"refooter"
>
<span
slot=
"footer"
class=
"dialog-footer"
style=
"position: absolute;right: 10px;top: 12px;"
>
<el-button
@
click
.
native=
"app.showDialog=false"
>
取 消
</el-button>
</span>
</div>
</DefaultDialog>
</
template
>
<
script
>
import
gwryglAdd
from
'./gwryglAdd'
import
{
doQueryRy
,
doDeleteRy
,
doAdd
,
doUpdate
,
doDelete
}
from
'@/api/basicData/scgw.js'
;
import
{
tableMixin_noapp
}
from
'common'
export
default
{
mixins
:
[
tableMixin_noapp
],
props
:
{
app
:
{
type
:
Object
,
default
:
function
()
{
return
{}
}
}
},
mounted
()
{
this
.
$nextTick
(()
=>
{
this
.
queryParams
.
scgwid
=
this
.
app
.
singleItem
.
id
this
.
$refs
.
TablePager
.
pageQuery
()
})
//
},
methods
:
{
addPerson
(){
debugger
this
.
DialogWidth
=
'50vw'
this
.
DialogTitle
=
'导入岗位人员'
this
.
showDialog
=
true
},
query
:
doQueryRy
,
/* 基础增*/
/* 删除操作*/
apiDelete
:
doDeleteRy
,
setDefault
:
function
()
{
if
(
this
.
selectOne
||
this
.
clickOne
)
{
}
else
{
this
.
$warning
(
'请选中一行操作'
);
}
},
setStyle
:
function
()
{
}
},
components
:
{
gwryglAdd
},
data
()
{
return
{
showDialog
:
false
,
DialogTitle
:
''
,
queryParams
:
{
scgwid
:
this
.
app
.
singleItem
.
id
},
baseUrl
:
'aqgl/jcsj/scgwry'
,
editTableData
:
[],
tableTitle
:
[
// {
// prop: 'userid',
// label: '用户编码',
// width: '120'
// },
{
prop
:
'userName'
,
label
:
'姓名'
,
width
:
'160'
},
{
prop
:
'bmName'
,
label
:
'所属部门'
,
width
:
'160'
},
{
prop
:
'scgwCode'
,
label
:
'岗位编码'
,
width
:
'160'
},
{
prop
:
'scgwName'
,
label
:
'岗位'
,
width
:
'160'
}
]
}
}
}
</
script
>
src/views/basicData/scgw/gwryglAdd.vue
0 → 100644
View file @
02674688
<
template
>
<DefaultDialog
:app=
'app'
>
<div
slot=
"form"
>
<div
style=
"height: 400px;width: 100%;margin-bottom: 5px;"
>
<!--
<EditTable
:app=
'this'
></EditTable>
-->
<TablePager
@
getData=
'getData'
:ref=
"'TablePager'"
:app=
'this'
:query=
'query'
@
selectItem=
'selectItem'
:delButton=
'false'
@
getRow=
'getRow'
>
</TablePager>
</div>
</div>
<div
slot=
"reFooter"
class=
"refooter"
>
<span
slot=
"footer"
class=
"dialog-footer"
style=
"position: absolute;right: 10px;top: 12px;"
>
<el-button
@
click
.
native=
"app.showDialog=false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click
.
native=
"drry"
>
导 入
</el-button>
</span>
</div>
</DefaultDialog>
</
template
>
<
script
>
// import Edit from './customEdit'
import
{
doQueryForImp
,
doImp
}
from
'@/api/basicData/scgw.js'
;
import
{
tableMixin_noapp
}
from
'common'
export
default
{
mixins
:
[
tableMixin_noapp
],
props
:
{
app
:
{
type
:
Object
,
default
:
function
()
{
return
{}
}
}
},
mounted
()
{
this
.
$nextTick
(()
=>
{
this
.
queryParams
.
id
=
this
.
app
.
queryParams
.
scgwid
this
.
$refs
.
TablePager
.
pageQuery
()
})
},
methods
:
{
query
:
doQueryForImp
,
/* 基础增*/
/* 删除操作*/
drry
(){
(
this
.
multipleSelection
.
length
==
0
&&
this
.
$warning
(
'请至少勾选一人'
))
||
(
this
.
multipleSelection
.
length
>
0
&&
doImp
({
id
:
this
.
queryParams
.
id
,
userList
:
this
.
multipleSelection
}).
then
(
res
=>
{
if
(
res
.
success
){
this
.
$success
(
'导入成功'
)
this
.
app
.
$refs
.
TablePager
.
pageQuery
()
this
.
app
.
showDialog
=
false
}
}))
},
setStyle
:
function
()
{
}
},
components
:
{
// Edit
},
data
()
{
return
{
showDialog
:
false
,
DialogTitle
:
''
,
queryParams
:
{
scgwid
:
this
.
app
.
singleItem
.
id
},
baseUrl
:
'aqgl/jcsj/scgwry'
,
editTableData
:
[],
tableTitle
:
[{
prop
:
'userid'
,
label
:
'用户编码'
,
width
:
'120'
},
{
prop
:
'username'
,
label
:
'姓名'
,
width
:
'160'
},
{
prop
:
'bmmc'
,
label
:
'所属部门'
,
width
:
'160'
},
{
prop
:
'phone'
,
label
:
'电话'
,
width
:
'160'
},
{
prop
:
'email'
,
label
:
'邮箱'
,
width
:
'160'
}
]
}
}
}
</
script
>
src/views/basicData/scgw/index.vue
View file @
02674688
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
<div
class=
"min_full"
>
<div
class=
"min_full"
>
<!-- 查询条件-->
<!-- 查询条件-->
<div
class=
"search"
v-condition
>
<div
class=
"search"
v-condition
>
<Gwrygl
:app=
'this'
v-if=
'showDialog'
></Gwrygl>
<SearchButton
:app=
'app'
></SearchButton>
<SearchButton
:app=
'app'
></SearchButton>
<el-row
:gutter=
"20"
class=
"search-row-1"
>
<el-row
:gutter=
"20"
class=
"search-row-1"
>
<el-col
:span=
"12"
class=
"search-col"
>
<el-col
:span=
"12"
class=
"search-col"
>
...
@@ -22,6 +23,7 @@
...
@@ -22,6 +23,7 @@
<AttachFileButton
:app=
'app'
></AttachFileButton>
<AttachFileButton
:app=
'app'
></AttachFileButton>
<FieldButton
:app=
'app'
></FieldButton>
<FieldButton
:app=
'app'
></FieldButton>
<ExcelButton
:app=
'app'
></ExcelButton>
<ExcelButton
:app=
'app'
></ExcelButton>
<el-button
size=
'mini'
@
click
.
native=
"doPerson"
type=
"primary"
>
岗位人员管理
</el-button>
<!-- 额外按钮-->
<!-- 额外按钮-->
<!-- 表头设置 -->
<!-- 表头设置 -->
...
@@ -40,6 +42,7 @@
...
@@ -40,6 +42,7 @@
<
script
>
<
script
>
/* 引入需要的接口*/
/* 引入需要的接口*/
import
Gwrygl
from
'./gwrygl'
import
{
import
{
doQuery
,
doQuery
,
doAdd
,
doAdd
,
...
@@ -57,13 +60,14 @@
...
@@ -57,13 +60,14 @@
/* 初始额外赋值*/
/* 初始额外赋值*/
async
mounted
()
{
async
mounted
()
{
this
.
$refs
[
'TablePager'
].
pageQuery
()
this
.
$refs
[
'TablePager'
].
pageQuery
()
},
},
data
()
{
data
()
{
return
{
return
{
/*需要的额外参数 */
/*需要的额外参数 */
showDialog
:
false
,
showDialog
:
false
,
DialogName
:
''
,
DialogWidth
:
''
,
type
:
''
,
type
:
''
,
DialogTitle
:
''
,
DialogTitle
:
''
,
/* 基础url*/
/* 基础url*/
...
@@ -76,6 +80,7 @@
...
@@ -76,6 +80,7 @@
tableTitle
:
[
tableTitle
:
[
{
label
:
"编码"
,
prop
:
"code"
,
fieldType
:
"ftString"
,
width
:
240
},
{
label
:
"编码"
,
prop
:
"code"
,
fieldType
:
"ftString"
,
width
:
240
},
{
label
:
"岗位名称"
,
prop
:
"name"
,
fieldType
:
"ftString"
,
width
:
300
},
{
label
:
"岗位名称"
,
prop
:
"name"
,
fieldType
:
"ftString"
,
width
:
300
},
{
label
:
"所属部门"
,
prop
:
"bmName"
,
fieldType
:
"ftString"
,
width
:
300
},
// {label: "负责人编码", prop: "fzrid", fieldType: "ftString",width:192},
// {label: "负责人编码", prop: "fzrid", fieldType: "ftString",width:192},
{
label
:
"负责人"
,
prop
:
"fzrName"
,
fieldType
:
"ftString"
,
width
:
192
},
{
label
:
"负责人"
,
prop
:
"fzrName"
,
fieldType
:
"ftString"
,
width
:
192
},
{
label
:
"备注"
,
prop
:
"bz"
,
fieldType
:
"ftString"
,
width
:
300
},
{
label
:
"备注"
,
prop
:
"bz"
,
fieldType
:
"ftString"
,
width
:
300
},
...
@@ -85,7 +90,15 @@
...
@@ -85,7 +90,15 @@
}
}
},
},
methods
:
{
methods
:
{
doPerson
(){
if
(
this
.
app
.
selectOne
||
this
.
app
.
clickOne
)
{
this
.
DialogWidth
=
'70vw'
this
.
DialogTitle
=
'岗位人员管理'
this
.
showDialog
=
true
}
else
{
this
.
$warning
(
'请选中一行操作'
);
}
},
/* 基础查询*/
/* 基础查询*/
query
:
doQuery
,
query
:
doQuery
,
/* 基础增*/
/* 基础增*/
...
@@ -101,6 +114,7 @@
...
@@ -101,6 +114,7 @@
},
},
components
:
{
components
:
{
Edit
,
Edit
,
Gwrygl
}
}
...
@@ -110,4 +124,3 @@
...
@@ -110,4 +124,3 @@
<
style
scoped
>
<
style
scoped
>
</
style
>
</
style
>
src/views/dangerManagement/dangerRectificationRecord/index.vue
View file @
02674688
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
<!--
<EditButton
ref=
"edit"
:app=
'app'
></EditButton>
-->
<!--
<EditButton
ref=
"edit"
:app=
'app'
></EditButton>
-->
<!--
<DeleteButton
:app=
'app'
></DeleteButton>
-->
<!--
<DeleteButton
:app=
'app'
></DeleteButton>
-->
<AttachFileButton
_aqyh
:params=
"
{childPath:'yhzg'
,allowAddFile:'none'
}" :app='this'>
</AttachFileButton
_aqyh
>
<AttachFileButton
_aqyh
:params=
"
{childPath:'yhzg'}" :app='this'>
</AttachFileButton
_aqyh
>
<!--
<WorkFlowButton
:app=
'app'
></WorkFlowButton>
-->
<!--
<WorkFlowButton
:app=
'app'
></WorkFlowButton>
-->
<FieldButton
:app=
'app'
></FieldButton>
<FieldButton
:app=
'app'
></FieldButton>
<ExcelButton
:app=
'app'
></ExcelButton>
<ExcelButton
:app=
'app'
></ExcelButton>
...
...
src/views/dangerManagement/yhznytj/index.vue
View file @
02674688
...
@@ -115,7 +115,7 @@
...
@@ -115,7 +115,7 @@
{
{
prop
:
'wclCount'
,
prop
:
'wclCount'
,
label
:
'未处理完毕数量'
,
label
:
'未处理完毕数量'
,
width
:
1
00
width
:
3
00
},
},
{
{
prop
:
'cqCount'
,
prop
:
'cqCount'
,
...
...
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