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
0e6967e0
Commit
0e6967e0
authored
Apr 30, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
44ef7d4a
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
68 additions
and
112 deletions
+68
-112
classstu-form.vue
src/components/course/classstu-form.vue
+0
-1
addClassList.vue
src/components/duty/addClassList.vue
+0
-2
addDutyItem.vue
src/components/duty/addDutyItem.vue
+65
-104
addDutySet.vue
src/components/duty/addDutySet.vue
+0
-1
setting.vue
src/components/duty/setting.vue
+3
-4
No files found.
src/components/course/classstu-form.vue
View file @
0e6967e0
...
...
@@ -249,7 +249,6 @@
this
.
AllInvitationList
=
JSON
.
parse
(
JSON
.
stringify
(
jsonData
));
this
.
InvitationList
=
JSON
.
parse
(
JSON
.
stringify
(
jsonData
));
}
console
.
log
(
"this.InvitationList"
,
this
.
InvitationList
);
}
})
},
...
...
src/components/duty/addClassList.vue
View file @
0e6967e0
...
...
@@ -98,7 +98,6 @@
computed
:
{},
created
()
{},
mounted
()
{
console
.
log
(
this
.
msg
.
Name
)
if
(
this
.
saveObj
&&
this
.
saveObj
.
Id
>
0
)
{
let
schoolids
=
this
.
saveObj
.
School_Ids
.
split
(
","
);
this
.
schoolArr
=
[]
...
...
@@ -118,7 +117,6 @@
},
methods
:
{
changeschool
(){
console
.
log
(
this
.
msg
.
School_Ids
)
},
//保存信息
saveRule
()
{
...
...
src/components/duty/addDutyItem.vue
View file @
0e6967e0
...
...
@@ -11,60 +11,22 @@
class=
"col-6 q-pr-lg q-pb-lg"
label=
"事项名称"
:rules=
"[val => !!val || '请填写事项名称']"
/>
</div>
<div
class=
"col-6"
>
<q-select
stack-label
color=
"primary"
filled
clearable
label=
"选择事项类型"
option-value=
"Id"
option-label=
"Name"
:options=
"itemTypeOptions"
v-model=
"msg.ItemType"
ref=
"ItemType"
:rules=
"[val => !!val || '请选择事项类型']"
/>
<q-select
stack-label
color=
"primary"
filled
clearable
label=
"选择事项类型"
option-value=
"Id"
option-label=
"Name"
:options=
"itemTypeOptions"
v-model=
"msg.ItemType"
ref=
"ItemType"
:rules=
"[val => !!val || '请选择事项类型']"
/>
</div>
</div>
<div
class=
"row wrap"
>
<div
class=
"col-6"
>
<q-select
stack-label
v-model=
"FrequencyArr"
multiple
:options=
"frequencyOptions"
color=
"primary"
filled
clearable
label=
"选择班次"
option-label=
"Name"
option-value=
"Id"
ref=
"Shifts"
@
input=
"getSchoolListByFrequencyIds"
:rules=
"[val => !!val || '请选择班次']"
class=
"col-6 q-pr-lg q-pb-lg"
/>
<q-select
stack-label
v-model=
"FrequencyArr"
multiple
:options=
"frequencyOptions"
color=
"primary"
filled
clearable
label=
"选择班次"
option-label=
"Name"
option-value=
"Id"
ref=
"Shifts"
@
input=
"getSchoolListByFrequencyIds"
:rules=
"[val => !!val || '请选择班次']"
class=
"col-6 q-pr-lg q-pb-lg"
/>
</div>
<div
class=
"col-6"
>
<q-select
stack-label
v-model=
"schoolArr"
multiple
:options=
"schoolOptions"
color=
"primary"
filled
clearable
label=
"选择校区"
option-label=
"SName"
option-value=
"SId"
ref=
"ItemSchools"
@
input=
"getDutyFrequencyBySchoolIds"
:rules=
"[val => !!val || '请选择校区']"
/>
<q-select
stack-label
v-model=
"schoolArr"
multiple
:options=
"schoolOptions"
color=
"primary"
filled
clearable
label=
"选择校区"
option-label=
"SName"
option-value=
"SId"
ref=
"ItemSchools"
@
input=
"getDutyFrequencyBySchoolIds"
:rules=
"[val => !!val || '请选择校区']"
/>
</div>
</div>
</q-card-section>
<q-card-actions
align=
"right"
class=
"bg-white"
>
<q-btn
label=
"取消"
flat
color=
"grey-10"
style=
"font-weight:400 !important"
@
click=
"closeRuleForm"
/>
...
...
@@ -75,12 +37,15 @@
</
template
>
<
script
>
import
{
getSetDutyItemModel
,
import
{
getSetDutyItemModel
,
getSchoolListByFrequencyIds
,
getDutyFrequencyBySchoolIds
,
getDutyFrequencyList
}
from
"../../api/duty/index"
import
{
getSchoolDropdown
}
from
'../../api/school/index'
;
//获取校区列表
import
{
getSchoolDropdown
}
from
'../../api/school/index'
;
//获取校区列表
export
default
{
props
:
{
saveObj
:
{
...
...
@@ -88,27 +53,26 @@
default
:
null
},
itemTypeOptions
:{
type
:
Array
,
default
:
[]
itemTypeOptions
:
{
type
:
Array
,
default
:
[]
},
},
data
()
{
return
{
itemArr
:[],
FrequencyArr
:[],
schoolArr
:[],
itemArr
:
[],
FrequencyArr
:
[],
schoolArr
:
[],
msg
:
{
Id
:
0
,
ItemName
:
""
,
ItemSchools
:
""
,
ItemType
:
""
,
Shifts
:
""
ItemName
:
""
,
ItemSchools
:
""
,
ItemType
:
""
,
Shifts
:
""
},
persistent
:
true
,
schoolOptions
:[],
frequencyOptions
:[],
schoolOptions
:
[],
frequencyOptions
:
[],
}
},
computed
:
{},
...
...
@@ -117,25 +81,21 @@
this
.
getDutyFrequencyList
();
},
mounted
()
{
console
.
log
(
this
.
saveObj
)
if
(
this
.
saveObj
&&
this
.
saveObj
.
Id
>
0
)
{
let
schoolids
=
this
.
saveObj
.
ItemSchools
.
split
(
","
);
this
.
schoolArr
=
[]
console
.
log
(
schoolids
,
this
.
schoolOptions
)
schoolids
.
map
((
item
)
=>
{
this
.
schoolOptions
.
map
((
_item
)
=>
{
if
(
_item
.
SId
==
item
){
let
schoolids
=
this
.
saveObj
.
ItemSchools
.
split
(
","
);
this
.
schoolArr
=
[]
schoolids
.
map
((
item
)
=>
{
this
.
schoolOptions
.
map
((
_item
)
=>
{
if
(
_item
.
SId
==
item
)
{
this
.
schoolArr
.
push
(
_item
)
}
})
})
let
frequencyids
=
this
.
saveObj
.
Shifts
.
split
(
","
);
this
.
FrequencyArr
=
[]
frequencyids
.
map
((
item
)
=>
{
this
.
frequencyOptions
.
map
((
_item
)
=>
{
if
(
_item
.
Id
==
item
){
let
frequencyids
=
this
.
saveObj
.
Shifts
.
split
(
","
);
this
.
FrequencyArr
=
[]
frequencyids
.
map
((
item
)
=>
{
this
.
frequencyOptions
.
map
((
_item
)
=>
{
if
(
_item
.
Id
==
item
)
{
this
.
FrequencyArr
.
push
(
_item
)
}
})
...
...
@@ -152,12 +112,11 @@
this
.
$refs
.
ItemType
.
validate
();
this
.
$refs
.
Shifts
.
validate
();
this
.
$refs
.
ItemSchools
.
validate
();
if
(
!
this
.
$refs
.
ItemName
.
hasError
&&
!
this
.
$refs
.
ItemType
.
hasError
&&
!
this
.
$refs
.
Shifts
.
hasError
&&
!
this
.
$refs
.
ItemSchools
.
hasError
)
{
this
.
msg
.
ItemSchools
=
this
.
schoolArr
.
map
(
item
=>
item
.
SId
).
toString
();
!
this
.
$refs
.
ItemSchools
.
hasError
)
{
this
.
msg
.
ItemSchools
=
this
.
schoolArr
.
map
(
item
=>
item
.
SId
).
toString
();
getSetDutyItemModel
(
this
.
msg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$emit
(
'success'
);
...
...
@@ -171,19 +130,22 @@
this
.
$emit
(
'close'
);
this
.
persistent
=
false
},
//根据班次获取学校信息
getSchoolListByFrequencyIds
(){
let
Shifts
=
this
.
FrequencyArr
.
map
(
item
=>
item
.
Id
).
toString
();
getSchoolListByFrequencyIds
({
Shifts
:
Shifts
}).
then
((
res
)
=>
{
getSchoolListByFrequencyIds
()
{
let
Shifts
=
this
.
FrequencyArr
.
map
(
item
=>
item
.
Id
).
toString
();
getSchoolListByFrequencyIds
({
Shifts
:
Shifts
}).
then
((
res
)
=>
{
this
.
schoolOptions
=
res
.
Data
;
})
},
//根据学校id获取对应的班次
getDutyFrequencyBySchoolIds
(){
let
SchoolIds
=
this
.
schoolArr
.
map
(
item
=>
item
.
SId
).
toString
();
getDutyFrequencyBySchoolIds
({
SchoolIds
:
SchoolIds
}).
then
((
res
)
=>
{
this
.
frequencyOptions
=
res
.
Data
getDutyFrequencyBySchoolIds
()
{
let
SchoolIds
=
this
.
schoolArr
.
map
(
item
=>
item
.
SId
).
toString
();
getDutyFrequencyBySchoolIds
({
SchoolIds
:
SchoolIds
}).
then
((
res
)
=>
{
this
.
frequencyOptions
=
res
.
Data
})
},
//获取校区列表
...
...
@@ -195,11 +157,10 @@
})
},
//获取班次列表
getDutyFrequencyList
(){
getDutyFrequencyList
()
{
getDutyFrequencyList
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
frequencyOptions
=
res
.
Data
;
console
.
log
(
this
.
frequencyOptions
)
}
})
},
...
...
src/components/duty/addDutySet.vue
View file @
0e6967e0
...
...
@@ -83,7 +83,6 @@
},
computed
:
{},
created
()
{
console
.
log
(
"this.saveObj"
,
this
.
saveObj
);
},
mounted
()
{
if
(
this
.
saveObj
&&
this
.
saveObj
.
Id
>
0
)
{
...
...
src/components/duty/setting.vue
View file @
0e6967e0
...
...
@@ -150,8 +150,7 @@
})
that
.
getList
()
})
}).
onCancel
(()
=>
{
});
}).
onCancel
(()
=>
{});
},
//关闭弹窗
closeruleset
()
{
...
...
@@ -199,8 +198,7 @@
if
(
res
.
Code
==
1
)
{
this
.
EmployeeListOption
=
res
.
Data
;
}
}).
catch
(()
=>
{
})
}).
catch
(()
=>
{})
},
}
}
...
...
@@ -208,4 +206,5 @@
</
script
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
</
style
>
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