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
93bf10c2
Commit
93bf10c2
authored
Nov 23, 2022
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rowItem=>singleItem
parent
1db34564
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
21 deletions
+22
-21
zgwc.vue
...views/dangerManagement/dangerRectificationRecord/zgwc.vue
+6
-5
fcjg.vue
src/views/dangerManagement/dangerReviewRecord/fcjg.vue
+7
-7
zdzrr.vue
src/views/dangerManagement/safetyDisposalRecord/zdzrr.vue
+9
-9
No files found.
src/views/dangerManagement/dangerRectificationRecord/zgwc.vue
View file @
93bf10c2
...
...
@@ -5,7 +5,7 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"整改说明"
ref=
"clff"
prop=
"clff"
>
<el-input
type=
"textarea"
v-model=
"
row
Item.clff"
></el-input>
<el-input
type=
"textarea"
v-model=
"
single
Item.clff"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -31,11 +31,11 @@
}
},
async
mounted
()
{
this
.
rowItem
=
_
.
cloneDeep
(
this
.
app
.
row
Item
)
this
.
singleItem
=
_
.
cloneDeep
(
this
.
app
.
single
Item
)
},
data
()
{
return
{
row
Item
:{
single
Item
:{
clff
:
''
},
...
...
@@ -43,10 +43,11 @@
methods
:
{
save
(){
let
params
=
{
id
:
this
.
row
Item
.
id
,
clff
:
this
.
row
Item
.
clff
,
id
:
this
.
single
Item
.
id
,
clff
:
this
.
single
Item
.
clff
,
}
doZg
(
params
).
then
(
res
=>
{
if
(
res
.
success
){
this
.
$success
(
'提交成功'
)
this
.
app
.
$refs
[
'TablePager'
].
reLoad
()
...
...
src/views/dangerManagement/dangerReviewRecord/fcjg.vue
View file @
93bf10c2
...
...
@@ -16,7 +16,7 @@
</el-col>
<el-col
:span=
"24"
>
<el-form-item
label=
"复查说明"
ref=
"fcsm"
prop=
"fcsm"
>
<el-input
type=
"textarea"
v-model=
"
row
Item.fcsm"
></el-input>
<el-input
type=
"textarea"
v-model=
"
single
Item.fcsm"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -42,9 +42,9 @@
}
},
async
mounted
()
{
this
.
rowItem
=
_
.
cloneDeep
(
this
.
app
.
row
Item
)
this
.
fcjg
=
this
.
row
Item
.
fcjg
console
.
log
(
this
.
row
Item
)
this
.
singleItem
=
_
.
cloneDeep
(
this
.
app
.
single
Item
)
this
.
fcjg
=
this
.
single
Item
.
fcjg
console
.
log
(
this
.
single
Item
)
},
data
()
{
return
{
...
...
@@ -56,7 +56,7 @@
label
:
'不通过'
}],
fcjg
:
'Y'
,
row
Item
:{
single
Item
:{
fcsm
:
''
},
...
...
@@ -65,8 +65,8 @@
save
(){
let
params
=
{
fcjg
:
this
.
fcjg
,
fcsm
:
this
.
row
Item
.
fcsm
,
id
:
this
.
row
Item
.
id
fcsm
:
this
.
single
Item
.
fcsm
,
id
:
this
.
single
Item
.
id
}
doFc
(
params
).
then
(
res
=>
{
if
(
res
.
success
){
...
...
src/views/dangerManagement/safetyDisposalRecord/zdzrr.vue
View file @
93bf10c2
...
...
@@ -5,13 +5,13 @@
<el-col
:span=
"12"
>
<el-form-item
label=
"责任人"
ref=
"zrr"
prop=
"zrr"
>
<personSelector
:label=
"
row
Item.zrrName||'暂无'"
@
selected=
'zrrSelected'
></personSelector>
<personSelector
:label=
"
single
Item.zrrName||'暂无'"
@
selected=
'zrrSelected'
></personSelector>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"复查人"
ref=
"fcr"
prop=
"fcr"
>
<!--
<el-input
:readonly=
"readonly"
v-model=
"form.zrr"
></el-input>
-->
<personSelector
:label=
"
row
Item.fcrName||'暂无'"
@
selected=
'fcrSelected'
></personSelector>
<personSelector
:label=
"
single
Item.fcrName||'暂无'"
@
selected=
'fcrSelected'
></personSelector>
</el-form-item>
</el-col>
...
...
@@ -37,12 +37,12 @@
}
},
async
mounted
()
{
this
.
rowItem
=
_
.
cloneDeep
(
this
.
app
.
row
Item
)
this
.
singleItem
=
_
.
cloneDeep
(
this
.
app
.
single
Item
)
},
name
:
'role'
,
data
()
{
return
{
row
Item
:{
single
Item
:{
zrr
:
''
,
zrrName
:
''
,
fcr
:
''
,
...
...
@@ -53,9 +53,9 @@
methods
:
{
save
(){
let
params
=
{
id
:
this
.
row
Item
.
id
,
fcr
:
this
.
row
Item
.
fcr
,
zrr
:
this
.
row
Item
.
zrr
,
id
:
this
.
single
Item
.
id
,
fcr
:
this
.
single
Item
.
fcr
,
zrr
:
this
.
single
Item
.
zrr
,
}
doFp
(
params
).
then
(
res
=>
{
if
(
res
.
success
){
...
...
@@ -67,10 +67,10 @@ save(){
})
},
zrrSelected
(
row
){
this
.
row
Item
.
zrr
=
row
.
id
this
.
single
Item
.
zrr
=
row
.
id
},
fcrSelected
(
row
){
this
.
row
Item
.
fcr
=
row
.
id
this
.
single
Item
.
fcr
=
row
.
id
}
}
}
...
...
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