Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BCDH-APP
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
首开风险隐患双控平台
BCDH-APP
Commits
95095e40
Commit
95095e40
authored
Nov 11, 2021
by
罗新东
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复了延期审批详情报错,修改了延期审批无法审批bug
parent
210f143a
Pipeline
#7095
passed with stage
in 9 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
src/views/danger/delayApproval/index.vue
src/views/danger/delayApproval/index.vue
+0
-2
src/views/danger/delayApproval/ratifyInfo.vue
src/views/danger/delayApproval/ratifyInfo.vue
+7
-4
No files found.
src/views/danger/delayApproval/index.vue
View file @
95095e40
...
...
@@ -138,8 +138,6 @@ export default {
name
:
"
normal-detail
"
,
params
:
{
id
:
data
.
businessId
,
api
:
'
/delayApply/deal/
'
,
method
:
'
get
'
},
});
this
.
showIndex
=
null
;
...
...
src/views/danger/delayApproval/ratifyInfo.vue
View file @
95095e40
...
...
@@ -12,8 +12,8 @@
readonly
name=
"applyDate"
label=
"延期时间"
placeholder=
"
请输入
"
:rules=
"[
{ required: true, message: '延期时间不能为空' }]"
placeholder=
"
空
"
/>
<van-field
...
...
@@ -24,6 +24,7 @@
rows=
"1"
autosize
type=
"textarea"
placeholder=
"空"
/>
<van-field
name=
"isAgree"
label=
"延期是否通过"
>
...
...
@@ -79,7 +80,7 @@ export default {
delayTime
:
""
,
// 延迟时间
showDelayTime
:
false
,
delayApply
:
""
,
// 延迟理由
isAgree
:
1
,
// 延期是否通过
isAgree
:
'
1
'
,
// 延期是否通过
opinion
:
""
,
//理由或者意见
applyDate
:
""
,
//延期时间
applyReason
:
""
,
//延期理由
...
...
@@ -98,8 +99,10 @@ export default {
loadingType
:
"
spinner
"
,
duration
:
0
,
});
// console.log(this.isAgree)
return
false
;
let
formdata
=
new
FormData
();
formdata
.
append
(
"
examineResult
"
,
values
.
examineResult
);
formdata
.
append
(
"
examineResult
"
,
this
.
isAgree
*
1
);
formdata
.
append
(
"
examineReason
"
,
values
.
examineReason
);
formdata
.
append
(
"
taskId
"
,
this
.
taskId
);
delayEdit
(
`/delayApply/edit`
,
formdata
)
...
...
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