Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
ShanghaiGongwei
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
宁路鹏
ShanghaiGongwei
Commits
e937af24
Commit
e937af24
authored
Nov 04, 2022
by
nlp97
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
0a2f4a0f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
88 deletions
+4
-88
src/components/page4.vue
+3
-87
src/lang/zh.js
+1
-1
No files found.
src/components/page4.vue
View file @
e937af24
<!--
* @Author: ninglupeng
* @Date: 2020-11-24 16:18:58
* @LastEditors:
wsq
* @LastEditTime: 2022-11-04 1
6:26:05
* @LastEditors:
ninglupeng
* @LastEditTime: 2022-11-04 1
7:04:04
* @Description:
-->
<
template
>
...
...
@@ -409,90 +409,6 @@ export default {
}
});
},
mounted
()
{
if
(
this
.
$i18n
.
locale
==
"zh"
)
{
this
.
getResource
();
}
else
{
//症状列表
this
.
symptomList
=
[
{
id
:
1
,
element
:
"يۇتقۇنچاق ئاغرىش"
,
sort
:
1
},
{
id
:
2
,
element
:
"بۇرنى پۈتۈپ قىلىش"
,
sort
:
2
},
{
id
:
3
,
element
:
"قىزىتماق"
,
sort
:
3
},
{
id
:
5
,
element
:
"يۆتەل"
,
sort
:
5
},
{
id
:
6
,
element
:
"بەلغەم يۆتەل"
,
sort
:
6
},
{
id
:
7
,
element
:
"بېشى قايماق"
,
sort
:
7
},
{
id
:
8
,
element
:
"باش ئاغرىقى"
,
sort
:
8
},
{
id
:
9
,
element
:
"مۇسكۇل ئاغرىش"
,
sort
:
9
},
{
id
:
10
,
element
:
"ماغدۇرسىزلىق"
,
sort
:
10
},
{
id
:
11
,
element
:
"نەپەس قىيىنلىشىش"
,
sort
:
11
},
{
id
:
12
,
element
:
"بۇرنىدىن سۇ ئېقىش"
,
sort
:
12
},
];
//国籍列表
this
.
nationalityList
=
[
"جۇڭگو"
,
"جۇڭگو شياڭگاڭ"
,
"جۇڭگو ئاۋمېن"
,
"جۇڭگو تەيۋەن"
,
"چەتئەل"
,
];
//医保类型列表
this
.
typeOfMedicalInsuranceList
=
[
"شاڭخەي داۋالىنىش سۇغۇرتىسى"
,
"سىرتتىكى داۋالىنىش سۇغۇرتىسى"
,
"ئۆزى چىقىم قىلىش"
,
];
//职业列表
this
.
occupationList
=
[
"خىزمەتچى"
,
"ئىشچى"
,
"مەمۇرى خادىم"
,
"دېھقان"
,
"دېھقان"
,
"ھەربىي سەپتىن چېكىنگەن"
,
"باشقا خىزمەت"
,
];
}
this
.
setLastValue
();
},
methods
:
{
setLastValue
()
{
if
(
this
.
getLocalStorge
(
"symptom"
))
{
this
.
symptom
=
this
.
getLocalStorge
(
"symptom"
).
split
(
","
);
}
let
arr
=
[
"patientName"
,
//患者姓名
"nationality"
,
//国籍
"passportId"
,
//护照号
"HasSymptom"
,
//是否有症状
"otherSymptom"
,
//其他症状
"otherOccupation"
,
//其他职业
"age"
,
//年龄
"gender"
,
//性别
"height"
,
//身高
"weight"
,
//体重
"maritalStatus"
,
//婚姻状况
"birthday"
,
//出生日期
"isConceive"
,
//怀孕状况
"gestationalWeeks"
,
//怀孕周期
"occupation"
,
//职业
"contactInformation"
,
//联系方式
"FamilyMembersPhone"
,
//家属联系方式
"Registeredresidence"
,
//籍贯 (包括省市)
"province"
,
//籍贯 (省)
"city"
,
//籍贯 (市)
"address"
,
//地址
"idCard"
,
//身份证号
"typeOfMedicalInsurance"
,
//医保类型
"insurance"
,
//商业保险
];
arr
.
map
((
item
)
=>
{
if
(
this
.
getLocalStorge
(
item
))
{
this
[
`
${
item
}
`
]
=
this
.
getLocalStorge
(
item
);
}
});
},
getLocalStorge
(
key
)
{
return
window
.
localStorage
.
getItem
(
key
);
...
...
@@ -684,7 +600,7 @@ export default {
},
},
computed
:
{},
};
};
</
script
>
<
style
lang=
"scss"
scoped
>
...
...
src/lang/zh.js
View file @
e937af24
...
...
@@ -2,7 +2,7 @@
* @Author: ninglupeng
* @Date: 2022-10-31 14:22:35
* @LastEditors: ninglupeng
* @LastEditTime: 2022-11-04 16:
41:00
* @LastEditTime: 2022-11-04 16:
59:35
* @Description:
*/
module
.
exports
=
{
...
...
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