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
4d5de15c
Commit
4d5de15c
authored
May 08, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
5f004039
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
16 deletions
+32
-16
App.vue
src/App.vue
+1
-1
schedul-orderlist.vue
src/components/schedul/schedul-orderlist.vue
+12
-2
scheduleBoard.vue
src/pages/scheduling/scheduleBoard.vue
+19
-13
No files found.
src/App.vue
View file @
4d5de15c
...
...
@@ -12,7 +12,7 @@ export default {
<
style
>
@import
url('~assets/css/font.css')
;
@import
url('//at.alicdn.com/t/font_2077629_
gpi989iyym5
.css')
;
@import
url('//at.alicdn.com/t/font_2077629_
a7sx3iejpat
.css')
;
html
,
body
,
...
...
src/components/schedul/schedul-orderlist.vue
View file @
4d5de15c
...
...
@@ -216,7 +216,7 @@
<div
class=
"sche_hengLine"
></div>
<span
class=
"word_scheNumber"
:class=
"
{'schNoneNum': (WorkList
&&
WorkList.length==0)}">
<template
v-if=
"saveObj&&WorkList"
>
{{
this
.
WorkList
.
length
}}
{{
getWorkCount
()
}}
</
template
>
</span>
</div>
...
...
@@ -260,7 +260,7 @@
</
template
>
<
template
v-if=
"WorkObj.ItemType==2 && workAuthObj.isShowEditAndDelete"
>
<q-btn
color=
"primary"
flat
dense
style=
"margin-left:10px;"
v-if=
"isShowSure"
slot=
"reference"
@
click=
"saveOrder()"
size=
"sm"
label=
"确认完成"
/>
@
click=
"saveOrder()"
label=
"确认完成"
/>
</
template
>
</div>
</div>
...
...
@@ -807,6 +807,16 @@
this
.
addMsg3
.
OtherContent
=
''
;
this
.
addMsg3
.
FileList
=
[];
},
//获取工作统计
getWorkCount
(){
let
WorkLen
=
this
.
WorkList
.
length
;
this
.
WorkList
.
forEach
(
x
=>
{
if
(
x
.
IsChecked
==
1
){
WorkLen
=
WorkLen
-
1
;
}
})
return
WorkLen
;
}
},
}
...
...
src/pages/scheduling/scheduleBoard.vue
View file @
4d5de15c
...
...
@@ -259,6 +259,7 @@
<div
class=
"scheduMain"
>
<div
class=
"flex row mySched"
>
<div
class=
"col scroll schScroll"
>
<template
v-if=
"dataList.Status==1"
>
<schedulHead
:dataList=
"dataList"
></schedulHead>
<div
class=
"Sche_Bottom"
>
<template
v-if=
"dataList.DutyStatus!=2"
>
...
...
@@ -270,6 +271,10 @@
<schedulVisit
:save-obj=
"msg"
:authObj=
"vitiorAuthObj"
></schedulVisit>
</
template
>
</div>
</template>
<
template
v-if=
"dataList.Status==0"
>
<schedulRemind></schedulRemind>
</
template
>
</div>
</div>
</div>
...
...
@@ -286,14 +291,15 @@
import
schedulOrder
from
'../../components/schedul/schedul-orderlist'
import
schedulVisit
from
'../../components/schedul/schedul-visit'
import
schedulHead
from
'../../components/schedul/schedul-head'
import
schedulRemind
from
'../../components/schedul/schedul-remind'
export
default
{
props
:
{},
components
:
{
schedulOrder
,
schedulVisit
,
schedulHead
schedulHead
,
schedulRemind
},
data
()
{
return
{
...
...
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