Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
8250b26c
Commit
8250b26c
authored
Dec 24, 2020
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
63c82e4e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
43 deletions
+53
-43
orderlist.vue
src/components/sale/orderlist.vue
+1
-0
sendToMeApproval.vue
src/pages/administration/sendToMeApproval.vue
+50
-42
course.vue
src/pages/course/course.vue
+2
-1
No files found.
src/components/sale/orderlist.vue
View file @
8250b26c
...
...
@@ -713,6 +713,7 @@ export default {
},
getClassInfo
(
obj
)
{
//打开班级详情组件
this
.
classObjOption
=
obj
;
this
.
classObjOption
.
School_Id
=
this
.
classObjOption
.
ClassSchoolId
this
.
isShowClassInfo
=
true
;
},
//关闭班级信息弹窗
...
...
src/pages/administration/sendToMeApproval.vue
View file @
8250b26c
...
...
@@ -270,6 +270,9 @@
import
{
UploadSelfFile
}
from
'../../api/common/common'
import
{
getEmployeeAddrBook
}
from
'../../api/users/user'
export
default
{
data
()
{
return
{
...
...
@@ -409,12 +412,13 @@
this
.
outerVisible1
=
true
;
this
.
workFlowId
=
workFlowId
;
this
.
templateType
=
templateType
;
this
.
apipost
(
'WorkFlow_get_GetDepartMentEmployee'
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
memberList
=
res
.
data
.
data
getEmployeeAddrBook
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
memberList
=
res
.
Data
;
}
},
err
=>
{})
}).
catch
(()
=>
{
})
},
clearTransferDialog
(){
this
.
filterText
=
''
...
...
@@ -451,45 +455,52 @@
this
.
$message
.
warning
(
'请选择转交人!'
)
return
}
this
.
apipost
(
'WorkFlow_post_SetCareOf'
,
this
.
transferMsg
,
res
=>
{
if
(
res
.
data
.
result
Code
==
1
)
{
this
.
$message
.
success
(
res
.
data
.
m
essage
)
setCareOf
(
this
.
transferMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$message
.
success
(
res
.
M
essage
)
this
.
outerVisible1
=
false
;
this
.
getList
()
}
else
{
this
.
$message
.
error
(
res
.
data
.
m
essage
)
}
else
{
this
.
$message
.
error
(
res
.
M
essage
)
}
},
err
=>
{})
}).
catch
(()
=>
{
})
},
agreeApproval
(){
this
.
appMsg
.
WorkFlowId
=
this
.
workFlowId
this
.
appMsg
.
TemplateType
=
this
.
templateType
this
.
apipost
(
'WorkFlow_post_SetConsent'
,
this
.
appMsg
,
res
=>
{
if
(
res
.
data
.
result
Code
==
1
)
{
this
.
$message
.
success
(
res
.
data
.
m
essage
)
setConsent
(
this
.
appMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$message
.
success
(
res
.
M
essage
)
this
.
outerVisible
=
false
;
this
.
getList
()
this
.
btnClearDialogMsg
()
this
.
closeLayer
()
}
else
{
this
.
$message
.
error
(
res
.
data
.
m
essage
)
}
else
{
this
.
$message
.
error
(
res
.
M
essage
)
}
},
err
=>
{})
}).
catch
(()
=>
{
})
},
rejectApproval
(){
this
.
appMsg
.
WorkFlowId
=
this
.
workFlowId
this
.
appMsg
.
TemplateType
=
this
.
templateType
this
.
apipost
(
'WorkFlow_post_SetNotConsent'
,
this
.
appMsg
,
res
=>
{
if
(
res
.
data
.
result
Code
==
1
)
{
this
.
$message
.
success
(
res
.
data
.
m
essage
)
setNotConsent
(
this
.
appMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$message
.
success
(
res
.
M
essage
)
this
.
outerVisible
=
false
;
this
.
getList
()
this
.
btnClearDialogMsg
()
this
.
closeLayer
()
}
else
{
this
.
$message
.
error
(
res
.
data
.
m
essage
)
}
else
{
this
.
$message
.
error
(
res
.
M
essage
)
}
},
err
=>
{})
}).
catch
(()
=>
{
})
},
withdrawAapproval
(
workFlowId
,
templateType
){
...
...
@@ -498,12 +509,16 @@
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
this
.
apipost
(
'app_user_workflow_wndoaudit'
,{
workFlowId
:
workFlowId
,
templateType
:
templateType
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
undoAudit
({
workFlowId
:
workFlowId
,
templateType
:
templateType
}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$message
.
success
(
'撤回成功。'
)
this
.
getList
()
this
.
showlayer
=
false
;
}
},
err
=>
{})
}).
catch
(()
=>
{
})
}).
catch
(()
=>
{
this
.
$message
.
info
(
'已取消撤回。'
)
});
...
...
@@ -526,15 +541,16 @@
},
getDetail
(
id
,
type
){
this
.
showLayer
();
this
.
apipost
(
'app_user_workflow_GetAuditInfo'
,{
WorkFlowId
:
id
,
TemplateType
:
type
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
detailList
=
res
.
data
.
data
this
.
IsAudit
=
res
.
data
.
data
.
IsAudit
this
.
IsCancel
=
res
.
data
.
data
.
IsCancel
this
.
IsUpdate
=
res
.
data
.
data
.
IsUpdate
getAuditInfo
({
WorkFlowId
:
id
,
TemplateType
:
type
}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
detailList
=
res
.
Data
this
.
IsAudit
=
res
.
Data
.
IsAudit
this
.
IsCancel
=
res
.
Data
.
IsCancel
this
.
IsUpdate
=
res
.
Data
.
IsUpdate
}
},
err
=>
{})
}).
catch
(()
=>
{
})
},
getList
(){
this
.
loading
=
true
;
...
...
@@ -548,14 +564,6 @@
}).
catch
(()
=>
{
})
// this.apipost('app_user_workflow_copy_tomyaudit',this.msg,res=>{
// if(res.data.resultCode == 1) {
//
// this.list=res.data.data.pageData;
// this.total=res.data.data.count;
// this.loading=false
// }
// },err=>{})
},
getApplyType
(){
//模板类型
gettemplatetype
({}).
then
(
res
=>
{
...
...
src/pages/course/course.vue
View file @
8250b26c
...
...
@@ -112,7 +112,8 @@
name
:
'CourseIntro'
,
label
:
'课程介绍'
,
field
:
'CourseIntro'
,
align
:
'left'
align
:
'left'
,
style
:
'width: 100px'
,
},
{
name
:
'CreateByName'
,
...
...
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