Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
frontend-h5
Project
Project
Details
Activity
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
songrui
frontend-h5
Commits
8890fbf0
Commit
8890fbf0
authored
Sep 12, 2024
by
gengchunlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
慢综 医生端 样式调整
parent
f23aea4c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
31 deletions
+50
-31
Doctor.vue
src/doctor/Doctor.vue
+1
-1
BaseInfo.vue
src/doctor/followUp/generalFU/form/BaseInfo.vue
+47
-23
CommonBottom.vue
src/doctor/followUp/generalFU/form/CommonBottom.vue
+0
-2
GeneralFUForm.vue
src/doctor/followUp/generalFU/form/GeneralFUForm.vue
+0
-2
BaseInfo.vue
src/doctor/resident/form/BaseInfo.vue
+1
-1
common.js
src/utils/common.js
+1
-2
No files found.
src/doctor/Doctor.vue
View file @
8890fbf0
...
...
@@ -52,7 +52,7 @@ export default {
if
(
!
token
)
{
token
=
sessionStorage
.
getItem
(
'token'
)
if
(
process
.
env
.
NODE_ENV
!==
'production'
)
{
token
=
'
de42c09b-bcb0-4c21-9c8d-aaca5eff8cbb
'
token
=
'
210a0035-82a1-4979-a2eb-74130a292a9f
'
}
}
if
(
token
)
{
...
...
src/doctor/followUp/generalFU/form/BaseInfo.vue
View file @
8890fbf0
...
...
@@ -2,12 +2,11 @@
<div>
<van-form
ref=
'form'
>
<div
class=
'title'
>
居民信息
</div>
<van-cell-group
inset
>
<div
class=
'label-title'
>
证件类型
</div>
<van-field
v-model=
'form.certificateTypeName'
is-link
disabled
readonly
placeholder=
'证件类型'
class=
'input-back mt-2 form-input'
:rules=
'rules.certificateTypeName'
...
...
@@ -15,7 +14,7 @@
<div
class=
'label-title mt-5'
>
证件号码
</div>
<van-field
v-model=
'form.idCard'
disabled
readonly
placeholder=
'证件号码'
class=
'input-back mt-2 form-input'
:rules=
'rules.idCard'
...
...
@@ -32,7 +31,7 @@
<van-field
v-model=
'form.genderName'
is-link
disabled
readonly
placeholder=
'性别'
class=
'input-back mt-2 form-input'
:rules=
'rules.genderName'
...
...
@@ -41,7 +40,7 @@
<van-field
v-model=
'form.dataBirth'
is-link
disabled
readonly
placeholder=
'出生日期'
class=
'input-back mt-2 form-input'
:rules=
'rules.dataBirth'
...
...
@@ -67,7 +66,7 @@
<div
class=
'label-title mt-5'
>
年龄
</div>
<van-field
v-model=
'form.currentAge'
disabled
readonly
placeholder=
'年龄'
class=
'input-back mt-2 form-input'
:rules=
'rules.currentAge'
...
...
@@ -207,31 +206,40 @@
</
template
>
</van-cell>
<van-cell
title=
'死亡'
clickable
@
click=
"form.lossReason = 3"
class=
'input-back mt-2 form-input'
>
class=
'input-back mt-2 form-input'
:style=
"{borderRadius: form.lossReason == 3 ? '8px 8px 0px 0px ': '8px'}"
>
<
template
#
right-icon
>
<van-radio
:name=
'3'
/>
</
template
>
</van-cell>
<van-field
v-if=
'form.lossReason == 3'
v-model=
'form.deathReason'
clearable
placeholder=
'死亡原因'
class=
'input-back mt-2 form-input'
/>
<div
class=
'death-r'
v-if=
'form.lossReason == 3'
>
<van-field
v-model=
'form.deathReason'
clearable
placeholder=
'死亡原因'
class=
'input-white form-input'
/>
</div>
<van-cell
title=
'其他'
clickable
@
click=
"form.lossReason = 9"
class=
'input-back mt-2 form-input'
>
class=
'input-back mt-2 form-input'
:style=
"{borderRadius: form.lossReason == 9 ? '8px 8px 0px 0px ': '8px'}"
>
<
template
#
right-icon
>
<van-radio
:name=
'9'
/>
</
template
>
</van-cell>
<van-field
v-if=
'form.lossReason == 9'
v-model=
'form.lossReasonOther'
clearable
placeholder=
'其他原因'
class=
'input-back mt-2 form-input'
/>
<div
class=
'death-r'
v-if=
'form.lossReason == 9'
>
<van-field
v-if=
'form.lossReason == 9'
v-model=
'form.lossReasonOther'
clearable
placeholder=
'其他原因'
class=
'input-white form-input'
/>
</div>
</van-cell-group>
</van-radio-group>
</template>
...
...
@@ -439,7 +447,7 @@
</van-radio-group>
</template>
</van-field>
</van-cell-group>
</van-form>
</div>
</template>
...
...
@@ -737,6 +745,9 @@ export default {
.input-back {
background: #FAFAFA;
}
.input-white {
background: #FFFFFF;
}
.tel-back {
background: #F5F5F5;
...
...
@@ -744,6 +755,12 @@ export default {
border-radius: 0px 0px 8px 8px;
}
.death-r{
background: #F5F5F5;
border-radius: 0px 0px 8px 8px;
padding: 8px 12px;
}
.tel {
background: #FFFFFF;
padding: 8px;
...
...
@@ -774,4 +791,10 @@ export default {
:deep(.van-cell:after) {
border-bottom: 0px;
}
:deep(.van-radio__icon--checked.van-radio__icon--dot .van-radio__icon--dot__icon) {
background: #FFFFFF;
}
:deep(.van-radio__icon--checked.van-radio__icon--dot) {
background: var(--van-radio-checked-icon-color);
}
</
style
>
\ No newline at end of file
src/doctor/followUp/generalFU/form/CommonBottom.vue
View file @
8890fbf0
<
template
>
<div>
<van-form
ref=
'form'
>
<van-cell-group
inset
>
<div
class=
'no-req-label'
>
随访单位
</div>
<van-field
v-model=
'form.visitUnitName'
...
...
@@ -35,7 +34,6 @@
/>
<DocOfficeDoctor
v-model:show=
"show3"
v-model:value=
"form.visitDoctorId"
@
change=
"changeDoctor"
:unitId=
"form.visitUnitId"
:officeId=
"form.visitOfficeId"
/>
</van-cell-group>
</van-form>
</div>
</
template
>
...
...
src/doctor/followUp/generalFU/form/GeneralFUForm.vue
View file @
8890fbf0
...
...
@@ -2,7 +2,6 @@
<div>
<van-form
ref=
'form'
>
<div
class=
'title'
>
随访信息
</div>
<van-cell-group
inset
>
<div
v-if=
'showOne && firstForm.visitSituation == 1'
>
<div
class=
'no-req-label'
>
随访内容
</div>
<van-field
...
...
@@ -166,7 +165,6 @@
<van-date-picker
@
confirm=
'dataConfirm'
@
cancel=
'showDate = false'
/>
</van-popup>
</div>
</van-cell-group>
</van-form>
</div>
</
template
>
...
...
src/doctor/resident/form/BaseInfo.vue
View file @
8890fbf0
...
...
@@ -5,7 +5,7 @@
<div
class=
'p-4 h-overflow'
>
<van-form
ref=
'form'
>
<div
class=
'title'
>
居民信息
</div>
<van-cell-group
inset
>
<van-cell-group>
<div
class=
'label-title'
>
证件类型
</div>
<van-field
v-model=
'form.certificateTypeName'
...
...
src/utils/common.js
View file @
8890fbf0
...
...
@@ -233,8 +233,7 @@ export function isWeiXin() {
export
function
backHome
()
{
if
(
isIOSWebKit
())
{
//ios
console
.
log
(
'ios'
)
// callMobile("closeWebPage", {})
window
.
webkit
.
messageHandlers
.
closeWebPage
.
postMessage
(
null
);
callMobile
(
"onBack"
,
{})
}
else
if
(
isAndroid
())
{
console
.
log
(
'Android'
)
callMobile
(
"closePage"
,
{})
...
...
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