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
a99e2d9d
Commit
a99e2d9d
authored
Dec 14, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
8c5cf525
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
schedul-visit.vue
src/components/schedul/schedul-visit.vue
+3
-3
student-visit.vue
src/components/school/student/student-visit.vue
+11
-2
No files found.
src/components/schedul/schedul-visit.vue
View file @
a99e2d9d
...
...
@@ -221,7 +221,9 @@
</template>
<
script
>
import
{
getStudentPage
getStudentPage
,
saveStudent
,
getStudentInfo
,
}
from
"../../api/school"
;
import
{
getGuestBasicsEnumList
...
...
@@ -335,7 +337,6 @@
isShowEdit
:
true
,
//是否显示编辑按钮【默认显示】
},
rules
:
{
//表单必填验证
Name
:
[{
required
:
true
,
...
...
@@ -414,7 +415,6 @@
return
false
;
}
});
},
//初始化权限信息
initAuth
()
{
...
...
src/components/school/student/student-visit.vue
View file @
a99e2d9d
...
...
@@ -67,6 +67,10 @@
<div
class=
"StuCom_Left"
>
反馈
</div>
:
<div
class=
"StuCom_Inner"
>
{{
tItem
.
Feedback
}}
</div>
</div>
<div
class=
"StuCom_Remark"
>
<div
class=
"StuCom_Left"
>
是否到访
</div>
:
<div
class=
"StuCom_Inner"
>
{{
tItem
.
IsVisitStr
}}
</div>
</div>
</div>
<div
style=
"display:flex;margin-top:10px;"
>
<div
@
click=
"delVisit(tItem.Id)"
class=
"visit_delete text-negative"
>
删除
</div>
...
...
@@ -79,6 +83,10 @@
class=
"col-12 q-pb-lg"
label=
"反馈"
>
</q-input>
</div>
<div
class=
"row wrap"
style=
"margin-top:10px;width:300px;"
>
<q-radio
v-model=
"feedBackMsg.IsVisit"
:val=
"0"
label=
"未到访"
/>
<q-radio
v-model=
"feedBackMsg.IsVisit"
:val=
"1"
label=
"已到访"
/>
</div>
<div
class=
"row wrap"
style=
"float:right;margin-bottom:10px;"
>
<q-btn
label=
"保存"
color=
"accent"
size=
"sm"
@
click=
"SetFeedBack()"
/>
</div>
...
...
@@ -157,6 +165,7 @@
//反馈信息
feedBackMsg
:
{
Id
:
0
,
//编号
IsVisit
:
0
,
//到访状态(1-已到访,0-未到访)
Feedback
:
''
//反馈
}
}
...
...
@@ -191,6 +200,7 @@
this
.
getList
();
this
.
feedBackMsg
.
Id
=
0
;
this
.
feedBackMsg
.
Feedback
=
""
;
this
.
feedBackMsg
.
IsVisit
=
0
;
this
.
isShowEdit
=
false
;
}
});
...
...
@@ -296,5 +306,4 @@
}
},
}
</
script
>
</
script
>
\ No newline at end of file
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