Commit 594f2e3f by nlp97

暂存

parent b39b20a5
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: ninglupeng * @Author: ninglupeng
* @Date: 2020-11-24 16:18:58 * @Date: 2020-11-24 16:18:58
* @LastEditors: ninglupeng * @LastEditors: ninglupeng
* @LastEditTime: 2022-11-01 10:26:03 * @LastEditTime: 2022-11-03 13:25:11
* @Description: * @Description:
--> -->
<template> <template>
...@@ -140,9 +140,6 @@ ...@@ -140,9 +140,6 @@
" /> " />
</van-popup> </van-popup>
<van-field colon v-show="occupation == '其他'" clearable autosize type="textarea" v-model="otherOccupation" <van-field colon v-show="occupation == '其他'" clearable autosize type="textarea" v-model="otherOccupation"
name="otherOccupation" label="其他职业" placeholder="其他职业" :rules="[ name="otherOccupation" label="其他职业" placeholder="其他职业" :rules="[
{ {
......
<!-- <!--
* @Author: ninglupeng * @Author: ninglupeng
* @Date: 2020-11-24 16:18:58 * @Date: 2020-11-24 16:18:58
* @LastEditors: wsq * @LastEditors: ninglupeng
* @LastEditTime: 2022-05-09 15:07:51 * @LastEditTime: 2022-11-03 14:21:19
* @Description: * @Description:
--> -->
<template> <template>
<div class="page6"> <div class="page6">
<van-field <van-field colon clearable name="hasHistoryAllergies" label-width="125px" :label="$t('hasHistoryAllergies')">
colon
clearable
name="hasHistoryAllergies"
label-width="125px"
label="过敏史"
>
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('hasHistoryAllergies'); setLocalStorge('hasHistoryAllergies');
if (hasHistoryAllergies == '无') { if (hasHistoryAllergies == $t('noHave')) {
foodAllergy = ''; foodAllergy = '';
drugAllergy = ''; drugAllergy = '';
otherAllergy = ''; otherAllergy = '';
...@@ -28,163 +21,89 @@ ...@@ -28,163 +21,89 @@
setValue('otherAllergy', ''); setValue('otherAllergy', '');
} }
} }
" " v-model="hasHistoryAllergies" direction="horizontal">
v-model="hasHistoryAllergies" <van-radio :name="$t('have')">{{ $t('have') }}</van-radio>
direction="horizontal" <van-radio :name="$t('noHave')">{{ $t('noHave') }}</van-radio>
>
<van-radio name="有"></van-radio>
<van-radio name="无"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<!-- <van-field
v-if="hasHistoryAllergies == '有'"
colon <van-field v-show="hasHistoryAllergies == $t('have')" colon clearable label-width="125px" v-model="foodAllergy"
clearable name="foodAllergy" :label="$t('foodAllergy')" :placeholder="$t('foodAllergy')"
label-width="125px" @blur="setLocalStorge('foodAllergy')">
v-model="historyAllergies" </van-field>
name="historyAllergies"
label="过敏原" <!-- 药物过敏原 -->
placeholder="过敏原" <van-field v-show="hasHistoryAllergies == $t('have')" colon clearable label-width="125px" v-model="drugAllergy"
:rules="[ name="drugAllergy" :label="$t('drugAllergy')" :placeholder="$t('drugAllergy')"
{ @blur="setLocalStorge('drugAllergy')">
required: hasHistoryAllergies == '有' ? true : false, </van-field>
message: '请填写过敏原', <!-- 其他过敏原 -->
}, <van-field v-show="hasHistoryAllergies == $t('have')" colon clearable label-width="125px" v-model="otherAllergy"
]" name="otherAllergy" :label="$t('otherAllergy')" :placeholder="$t('otherAllergy')"
></van-field> --> @blur="setLocalStorge('otherAllergy')">
</van-field>
<van-field
v-show="hasHistoryAllergies == '有'" <van-field colon clearable name="hasHistorySurgery" label-width="125px" :label="$t('hasHistorySurgery')">
colon
clearable
label-width="125px"
v-model="foodAllergy"
name="foodAllergy"
label="食物过敏原"
placeholder="食物过敏原"
@blur="setLocalStorge('foodAllergy')"
></van-field>
<van-field
v-show="hasHistoryAllergies == '有'"
colon
clearable
label-width="125px"
v-model="drugAllergy"
name="drugAllergy"
label="药物过敏原"
placeholder="药物过敏原"
@blur="setLocalStorge('drugAllergy')"
></van-field>
<van-field
v-show="hasHistoryAllergies == '有'"
colon
clearable
label-width="125px"
v-model="otherAllergy"
name="otherAllergy"
label="其他过敏原"
placeholder="其他过敏原"
@blur="setLocalStorge('otherAllergy')"
></van-field>
<van-field
colon
clearable
name="hasHistorySurgery"
label-width="125px"
label="手术史"
>
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('hasHistorySurgery'); setLocalStorge('hasHistorySurgery');
if (hasHistorySurgery == '无') { if (hasHistorySurgery == $t('noHave')) {
historySurgery = ''; historySurgery = '';
setValue('historySurgery', ''); setValue('historySurgery', '');
} }
} }
" " v-model="hasHistorySurgery" direction="horizontal">
v-model="hasHistorySurgery" <van-radio :name="$t('have')">{{ $t('have') }}</van-radio>
direction="horizontal" <van-radio :name="$t('noHave')">{{ $t('noHave') }}</van-radio>
>
<van-radio name="有"></van-radio>
<van-radio name="无"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<van-field <van-field v-show="hasHistorySurgery == $t('have')" colon clearable label-width="125px" v-model="historySurgery"
v-show="hasHistorySurgery == '有'" name="historySurgery" :label="$t('historySurgery')" :placeholder="$t('historySurgery')"
colon @blur="setLocalStorge('historySurgery')" :rules="[
clearable
label-width="125px"
v-model="historySurgery"
name="historySurgery"
label="手术史具体内容"
placeholder="具体内容"
@blur="setLocalStorge('historySurgery')"
:rules="[
{ {
required: hasHistorySurgery == '有' ? true : false, required: hasHistorySurgery == $t('have') ? true : false,
message: '请填写手术史具体内容', message: `请填写${$t('historySurgery')}`,
}, },
]" ]">
></van-field> </van-field>
<van-field <van-field colon clearable name="HasPreviousHistory" label-width="125px" :label="$t('HasPreviousHistory')">
colon
clearable
name="HasPreviousHistory"
label-width="125px"
label="有无既往史"
>
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('HasPreviousHistory'); setLocalStorge('HasPreviousHistory');
if (HasPreviousHistory == '无') { if (HasPreviousHistory == $t('noHave')) {
previousHistory = []; previousHistory = [];
otherPastHistory = ''; otherPastHistory = '';
tuberculosisDate=''; tuberculosisDate = '';
setValue('previousHistory',''); setValue('previousHistory', '');
setValue('otherPastHistory', ''); setValue('otherPastHistory', '');
setValue('tuberculosisDate', ''); setValue('tuberculosisDate', '');
} }
} }
" " v-model="HasPreviousHistory" direction="horizontal">
v-model="HasPreviousHistory" <van-radio :name="$t('have')">{{ $t('have') }}</van-radio>
direction="horizontal" <van-radio :name="$t('noHave')"></van-radio>
>
<van-radio name="有"></van-radio>
<van-radio name="无"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<van-field <van-field colon clearable name="previousHistory" label-width="125px" :label="$t('previousHistory')"
colon v-show="HasPreviousHistory == $t('have')" :rules="[
clearable
name="previousHistory"
label-width="125px"
label="既往史"
v-show="HasPreviousHistory == '有'"
:rules="[
{ {
required: HasPreviousHistory == '有' ? true : false, required: HasPreviousHistory == $t('have') ? true : false,
message: '请选择既往史', message: `请选择${$t('previousHistory')}`,
}, },
]" ]">
>
<template #input> <template #input>
<van-checkbox-group <van-checkbox-group @change="setLocalStorge('previousHistory')" v-model="previousHistory">
@change="setLocalStorge('previousHistory')"
v-model="previousHistory"
>
<van-cell-group> <van-cell-group>
<van-cell v-for="(item, index) in previousHistoryList" :key="index"> <van-cell v-for="(item, index) in previousHistoryList" :key="index">
<van-checkbox :name="item.element" shape="square">{{ <van-checkbox :name="item.element" shape="square">{{
...@@ -196,89 +115,36 @@ ...@@ -196,89 +115,36 @@
</template> </template>
</van-field> </van-field>
<van-field <van-field colon v-show="previousHistory.includes('其他')" clearable autosize type="textarea"
colon v-model="otherPastHistory" name="otherPastHistory" :label="$t('otherPastHistory')"
v-show="previousHistory.includes('其他')" :placeholder="$t('otherPastHistory')" :rules="[
clearable
autosize
type="textarea"
v-model="otherPastHistory"
name="otherPastHistory"
label="其他既往史"
placeholder="其他既往史"
:rules="[
{ {
required: previousHistory.includes('其他') ? true : false, required: previousHistory.includes('其他') ? true : false,
message: '请填写其他既往史', message: '请填写其他既往史',
}, },
]" ]" @blur="setLocalStorge('otherPastHistory')"></van-field>
@blur="setLocalStorge('otherPastHistory')"
></van-field>
<van-field colon clearable readonly clickable
<!-- <van-field v-if="HasPreviousHistory != $t('noHave') && previousHistory.includes('肺结核')" :rules="[
colon
clearable
readonly
clickable
label-width="125px"
v-show="HasPreviousHistory == '有' && previousHistory.includes('肺结核')"
:rules="[
{
required:
HasPreviousHistory == '有' && previousHistory.includes('肺结核')
? true
: false,
message: '请选择既往史发生时间',
},
]"
name="tuberculosisDate"
:min-date="minDate"
:max-date="maxDate"
:value="tuberculosisDate"
label="既往史发生时间"
placeholder="点击选择既往史发生时间"
@click="showPicker = true"
v-model="tuberculosisDate1"
:formatter="formatter"
/> -->
<van-field
colon
clearable
readonly
clickable
v-if="HasPreviousHistory != '无' && previousHistory.includes('肺结核')"
:rules="[
{ {
required: required:
HasPreviousHistory != '无' && previousHistory.includes('肺结核') HasPreviousHistory != $t('noHave') && previousHistory.includes('肺结核')
? true ? true
: false, : false,
message: '请选择既往史发生时间', message: '请选择既往史发生时间',
}, },
]" ]" name="tuberculosisDate" :value="tuberculosisDate" label="既往史发生时间" placeholder="点击选择既往史发生时间"
name="tuberculosisDate" @click="showPicker = true" />
:value="tuberculosisDate"
label="既往史发生时间"
placeholder="点击选择既往史发生时间"
@click="showPicker = true"
/>
<van-popup v-model="showPicker" position="bottom"> <van-popup v-model="showPicker" position="bottom">
<van-datetime-picker <van-datetime-picker :min-date="minDate" :max-date="maxDate" type="date" @confirm="onConfirm"
:min-date="minDate" @cancel="showPicker = false" :formatter="formatter" v-model="deathDate2" />
:max-date="maxDate"
type="date"
@confirm="onConfirm"
@cancel="showPicker = false"
:formatter="formatter"
v-model="deathDate2"
/>
</van-popup> </van-popup>
<van-field colon clearable name="whetherSmoking" label="是否吸烟" label-width="125px"> <van-field colon clearable name="whetherSmoking" label="是否吸烟" label-width="125px">
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('whetherSmoking'); setLocalStorge('whetherSmoking');
if (whetherSmoking == '否') { if (whetherSmoking == '否') {
...@@ -292,30 +158,16 @@ ...@@ -292,30 +158,16 @@
setValue('whetherNoSmoking', ''); setValue('whetherNoSmoking', '');
} }
} }
" " v-model="whetherSmoking" direction="horizontal">
v-model="whetherSmoking"
direction="horizontal"
>
<van-radio name="是"></van-radio> <van-radio name="是"></van-radio>
<van-radio name="否"></van-radio> <van-radio name="否"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<van-field <van-field colon clearable label-width="125px" name="smokingTypes" label="烟草类型" v-if="whetherSmoking == '是'">
colon
clearable
label-width="125px"
name="smokingTypes"
label="烟草类型"
v-if="whetherSmoking == '是'"
>
<template #input> <template #input>
<van-checkbox-group <van-checkbox-group @change="setLocalStorge('smokingTypes')" v-model="smokingTypes"
@change="setLocalStorge('smokingTypes')" direction="horizontal" class="smokingTypes">
v-model="smokingTypes"
direction="horizontal"
class="smokingTypes"
>
<template v-for="(item, index) in smokingTypesList"> <template v-for="(item, index) in smokingTypesList">
<van-checkbox :key="index" :name="item.element" shape="square">{{ <van-checkbox :key="index" :name="item.element" shape="square">{{
item.element item.element
...@@ -325,53 +177,26 @@ ...@@ -325,53 +177,26 @@
</template> </template>
</van-field> </van-field>
<van-field <van-field v-if="whetherSmoking == '是'" colon clearable label-width="125px" v-model="smokingYears"
v-if="whetherSmoking == '是'" name="smokingYears" label="吸烟年数" placeholder="吸烟年数" type="digit" @blur="setLocalStorge('smokingYears')"
colon :rules="[{ required: false, message: '请填写吸烟年数' }]">
clearable
label-width="125px"
v-model="smokingYears"
name="smokingYears"
label="吸烟年数"
placeholder="吸烟年数"
type="digit"
@blur="setLocalStorge('smokingYears')"
:rules="[{ required: false, message: '请填写吸烟年数' }]"
>
<template #extra> <template #extra>
</template> </template>
</van-field> </van-field>
<van-field <van-field v-if="whetherSmoking == '是'" label-width="125px" colon clearable v-model="smokingCount"
v-if="whetherSmoking == '是'" name="smokingCount" label="每天吸烟支数" placeholder="每天吸烟支数" type="digit" @blur="setLocalStorge('smokingCount')"
label-width="125px" :rules="[{ required: false, message: '请填写每天吸烟支数' }]">
colon
clearable
v-model="smokingCount"
name="smokingCount"
label="每天吸烟支数"
placeholder="每天吸烟支数"
type="digit"
@blur="setLocalStorge('smokingCount')"
:rules="[{ required: false, message: '请填写每天吸烟支数' }]"
>
<template #extra> <template #extra>
</template> </template>
</van-field> </van-field>
<van-field <van-field colon clearable label-width="125px" name="whetherNoSmoking" label="是否戒烟"
colon v-if="whetherSmoking == '是'">
clearable
label-width="125px"
name="whetherNoSmoking"
label="是否戒烟"
v-if="whetherSmoking == '是'"
>
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('whetherNoSmoking'); setLocalStorge('whetherNoSmoking');
if (whetherNoSmoking == '否') { if (whetherNoSmoking == '否') {
...@@ -379,29 +204,16 @@ ...@@ -379,29 +204,16 @@
setValue('noSmokingYears', ''); setValue('noSmokingYears', '');
} }
} }
" " v-model="whetherNoSmoking" direction="horizontal">
v-model="whetherNoSmoking"
direction="horizontal"
>
<van-radio name="是"></van-radio> <van-radio name="是"></van-radio>
<van-radio name="否"></van-radio> <van-radio name="否"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<van-field <van-field v-if="whetherNoSmoking == '是'" colon label-width="125px" clearable v-model="noSmokingYears"
v-if="whetherNoSmoking == '是'" name="noSmokingYears" label="戒烟年数" placeholder="戒烟年数" type="digit" @blur="setLocalStorge('noSmokingYears')"
colon :rules="[{ required: false, message: '请填写戒烟年数' }]">
label-width="125px"
clearable
v-model="noSmokingYears"
name="noSmokingYears"
label="戒烟年数"
placeholder="戒烟年数"
type="digit"
@blur="setLocalStorge('noSmokingYears')"
:rules="[{ required: false, message: '请填写戒烟年数' }]"
>
<template #extra> <template #extra>
</template> </template>
...@@ -409,8 +221,7 @@ ...@@ -409,8 +221,7 @@
<van-field colon clearable name="whetherPassivitySmoking" label="是否被动吸烟" label-width="125px"> <van-field colon clearable name="whetherPassivitySmoking" label="是否被动吸烟" label-width="125px">
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('whetherPassivitySmoking'); setLocalStorge('whetherPassivitySmoking');
if (whetherPassivitySmoking == '否') { if (whetherPassivitySmoking == '否') {
...@@ -418,28 +229,16 @@ ...@@ -418,28 +229,16 @@
setValue('passivitySmokingYears', ''); setValue('passivitySmokingYears', '');
} }
} }
" " v-model="whetherPassivitySmoking" direction="horizontal">
v-model="whetherPassivitySmoking"
direction="horizontal"
>
<van-radio name="是"></van-radio> <van-radio name="是"></van-radio>
<van-radio name="否"></van-radio> <van-radio name="否"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<van-field <van-field v-if="whetherPassivitySmoking == '是'" colon label-width="125px" clearable
v-if="whetherPassivitySmoking == '是'" v-model="passivitySmokingYears" name="passivitySmokingYears" label="被动吸烟年数" placeholder="被动吸烟年数"
colon type="digit" @blur="setLocalStorge('passivitySmokingYears')">
label-width="125px"
clearable
v-model="passivitySmokingYears"
name="passivitySmokingYears"
label="被动吸烟年数"
placeholder="被动吸烟年数"
type="digit"
@blur="setLocalStorge('passivitySmokingYears')"
>
<template #extra> <template #extra>
</template> </template>
...@@ -447,98 +246,54 @@ ...@@ -447,98 +246,54 @@
<van-popup v-model="showPicker" position="bottom"> <van-popup v-model="showPicker" position="bottom">
<van-datetime-picker <van-datetime-picker :min-date="minDate" :max-date="maxDate" type="date" @confirm="onConfirm"
:min-date="minDate" @cancel="showPicker = false" :formatter="formatter" />
:max-date="maxDate"
type="date"
@confirm="onConfirm"
@cancel="showPicker = false"
:formatter="formatter"
/>
</van-popup> </van-popup>
<van-field <van-field colon clearable name="yesOrNoCt" label-width="125px" label="有无胸部CT检查">
colon
clearable
name="yesOrNoCt"
label-width="125px"
label="有无胸部CT检查"
>
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('yesOrNoCt'); setLocalStorge('yesOrNoCt');
if (yesOrNoCt == '无') { if (yesOrNoCt == $t('noHave')) {
ChestCT = '无'; ChestCT = $t('noHave');
ChestCTDate=''; ChestCTDate = '';
setValue('ChestCT', ''); setValue('ChestCT', '');
setValue('ChestCTDate', ''); setValue('ChestCTDate', '');
} }
} }
" " v-model="yesOrNoCt" direction="horizontal">
v-model="yesOrNoCt" <van-radio :name="$t('have')">{{ $t('have') }}</van-radio>
direction="horizontal" <van-radio :name="$t('noHave')">{{ $t('noHave') }}</van-radio>
>
<van-radio name="有"></van-radio>
<van-radio name="无"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<van-field <van-field v-if="yesOrNoCt == $t('have')" colon clearable name="ChestCT" label-width="125px"
v-if="yesOrNoCt == '有'" label="CT有无病毒性肺炎表现">
colon
clearable
name="ChestCT"
label-width="125px"
label="CT有无病毒性肺炎表现"
>
<template #input> <template #input>
<van-radio-group <van-radio-group @change="
@change="
() => { () => {
setLocalStorge('ChestCT'); setLocalStorge('ChestCT');
} }
" " v-model="ChestCT" direction="horizontal">
v-model="ChestCT" <van-radio :name="$t('have')">{{ $t('have') }}</van-radio>
direction="horizontal" <van-radio :name="$t('noHave')">{{ $t('noHave') }}</van-radio>
>
<van-radio name="有"></van-radio>
<van-radio name="无"></van-radio>
</van-radio-group> </van-radio-group>
</template> </template>
</van-field> </van-field>
<van-field <van-field v-if="yesOrNoCt == $t('have')" colon clearable readonly clickable name="ChestCTDate"
v-if="yesOrNoCt == '有'" :value="ChestCTDate" label="发生时间" label-width="125px" placeholder="点击选择新冠肺炎CT拍照时间"
colon @click="showCalendar = true" :rules="[
clearable
readonly
clickable
name="ChestCTDate"
:value="ChestCTDate"
label="发生时间"
label-width="125px"
placeholder="点击选择新冠肺炎CT拍照时间"
@click="showCalendar = true"
:rules="[
{ {
required: ChestCT == '有' ? true : false, required: ChestCT == $t('have') ? true : false,
message: '请选择新冠肺炎CT拍照时间', message: '请选择新冠肺炎CT拍照时间',
}, },
]" ]" />
/>
<van-popup v-model="showCalendar" position="bottom"> <van-popup v-model="showCalendar" position="bottom">
<van-datetime-picker <van-datetime-picker type="date" :min-date="minChestCTDate" :max-date="maxDate" @confirm="onChestCT"
type="date" @cancel="showCalendar = false" :formatter="formatter" v-model="ChestCTDate1" />
:min-date="minChestCTDate"
:max-date="maxDate"
@confirm="onChestCT"
@cancel="showCalendar = false"
:formatter="formatter"
v-model="ChestCTDate1"
/>
</van-popup> </van-popup>
</div> </div>
</template> </template>
...@@ -584,10 +339,10 @@ export default { ...@@ -584,10 +339,10 @@ export default {
minChestCTDate: new Date(2020, 0, 1), minChestCTDate: new Date(2020, 0, 1),
minDate: new Date(2010, 0, 1), minDate: new Date(2010, 0, 1),
maxDate: new Date(), maxDate: new Date(),
deathDate2:new Date(), deathDate2: new Date(),
ChestCTDate1: new Date(), ChestCTDate1: new Date(),
tuberculosisDate1:new Date(), tuberculosisDate1: new Date(),
}; };
}, },
mounted() { mounted() {
......
...@@ -2,33 +2,34 @@ ...@@ -2,33 +2,34 @@
* @Author: ninglupeng * @Author: ninglupeng
* @Date: 2022-10-31 14:22:41 * @Date: 2022-10-31 14:22:41
* @LastEditors: ninglupeng * @LastEditors: ninglupeng
* @LastEditTime: 2022-11-03 13:12:44 * @LastEditTime: 2022-11-03 13:35:30
* @Description: * @Description:
*/ */
module.exports = { module.exports = {
//第一页、第二页 //第一页、第二页
'project': '', 'project': ' دوختۇرخانىغا كىرگەن ئۇچۇرنى توپلاش ',
'paragraph1': ' ', 'paragraph1': 'تىببى خادىملار دوختۇرخانىدا يېتىپ داۋالانغان مەزگىلدە ئەھۋالدىن خەۋەردار بولۇش ھوقۇقىدىن تولۇق بەھرىمان بولۇشىڭىزغا كاپالەتلىك قىلىش ئۈچۈن، كېسەللىك ئەھۋالى، ئاساسلىق داۋالاش تەدبىرلىرى، داۋالاش خەۋپ-خەتىرى قاتارلىق ئەھۋاللارنى ئۇقتۇرۇپ، كېسەللىك توغرىسىدىكى مەسلىھەتلىرىڭىزگە جاۋاب بېرىدۇ.سىزنىڭ تولۇق ئەھۋالدىن خەۋەردار بولۇشىڭنى ئالماي ۋە ئىمزا قويۇپ ماقۇللىقىڭىز ئالمايلا تىببى خادىملار ئوپېراتسىيە قىلىش قاتارلىق زور داۋالاش قىلمىشىنى قىلسا بولمايدۇ. لېكىن ھەرقايسى كىشىلەرنىڭ پسىخىكىلىق بەرداشلىق بېرىش ئىقتىدارى ئوخشىمىغاچقا ھەمدە كېسەللىكنىڭ تەرەققىياتىنى مۆلچەرلىگىلى بولمايدىغان بولغاچقا، داۋالاشقا پايدىلىق بولۇش ئۈچۈن، سىز تولۇق ئىشەنگەن بىر ۋاكالەتچىگە ھاۋالە قىلىپ، ئەھۋالدىن خەۋەردار بولۇش ھوقۇقىڭىزنى ۋاكالىتەن يۈرگۈزۈشكە ھوقۇق بېرىڭ.دوختۇرخانىمىز سىزنىڭ ئىمزا قويۇپ بەرگەن ھوقۇق ھاۋالە خېتىڭىزگە ئاساسەن، ۋاكالەتچىنىڭ ۋاكالەتچىلىك قىلمىشىغا قاراپ ئۆزىڭىزنىڭ ھەقىقىي مەنىسىگە ئاساسەن ئىپادىلىنىدۇ. ئەگەر سىزنىڭ ئاخىرقى 18 ياشقا توشقان ياكى ھەق تەلەپ قىلمىش ئىقتىدارىڭىز ۋە ھەق تەلەپ قىلمىشىنى چەكلەش ئىقتىدارىڭىز بولمىسا، سىزنىڭ قانۇندا بەلگىلەنگەن ھامىيلىقىڭىز سىزنىڭ قانۇندا بەلگىلەنگەن دەۋالاشقۇچىڭىز ئۈچۈن، ئەھۋالدىن خەۋەردار بولۇش ھوقۇقىڭىزنى ۋاكالىتەن يۈرگۈزىدۇ. ',
"paragraph2": ' ', "paragraph2": ' ',
"paragraph3": ' ', "paragraph3": ' ',
"isAgree": ' ', "isAgree": ' ',
//第三页 //第三页
"AgreementMode": '',//本人决定选择以下方式 "AgreementMode": 'مەن تۆۋەندىكى ئۇسۇلنى تاللاشنى قارار قىلدىم',//本人决定选择以下方式
"Mode1": '', "Mode1": 'دوختۇخانغا ۋاكالەتچى بەلگىلەنگەن ھوقۇق بېرىش ھاۋالە خىتى چىقىرىپ بىرىمەن',
"Mode2": '', "Mode2": 'دوختۇرخانغا نوپۇس قاتارلىق ئالاقىدار ئىسپاتلارنى چىقىرىپ، قانۇندا بەلگىلەنگەن ۋاكالەتچىنى بەلگىلەپبىرىمەن',
"Mode3": '', "Mode3": 'مەن ۋاكالەتچىگە ھاۋالە قىلمايمەن، ئەگەر كېسەللىكتە خەتەر كۆرۈلسە ياكى ئويلىمىغان ئەھۋاللار يۈز بىرىپ قالسا دوختۇرغا داۋالاش توغۇرسىدا قارار قىلىش ھقوقىنى بىرىمەن .ئەگەر داۋالاش خەتىرى يامان ئاقىۋەت كېلىپ چىقسا مەن ئۆزەم مەسۇل بۇلىمەن.',
"buildingNumber": '', //楼号 "buildingNumber": 'بىنا نومۇرى', //楼号
"agreementFloor": '', //楼层 "agreementFloor": 'قەۋەت', //楼层
"bedNumber": '', //床号 "bedNumber": 'كارۋات نومۇرى', //床号
"agreementSign": '', // 患者签字 "agreementSign": 'بىمارنىڭ ئىمزاسى', // 患者签字
"agreementDate": '',// 签字日期 "agreementDate": 'ئىمزا قويغان ۋاقتى',// 签字日期
//第四页 //第四页
//第五页 //第五页
"HasOnlineClass": "", // 是否上网课 "HasOnlineClass": "", // 是否上网课
...@@ -40,7 +41,14 @@ module.exports = { ...@@ -40,7 +41,14 @@ module.exports = {
//第七页 //第七页
"concludingRemarks": 'سىز بۇ قېتىمقى تولدۇرۇش مەزمۇنىنى تاماملاپ بولدىڭىز، ياردىمىڭىز ۋە قوللىغىنىڭىزغا رەھمەت.', "concludingRemarks": 'سىز بۇ قېتىمقى تولدۇرۇش مەزمۇنىنى تاماملاپ بولدىڭىز، ياردىمىڭىز ۋە قوللىغىنىڭىزغا رەھمەت.',
"goBack": 'ئالدىغا قايتىش' "goBack": 'ئالدىغا قايتىش',
"yes": 'ھە ئە',
"no": "ياق",
"have": "بار ",
"noHave": "يوق "
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: ninglupeng * @Author: ninglupeng
* @Date: 2022-10-31 14:22:35 * @Date: 2022-10-31 14:22:35
* @LastEditors: ninglupeng * @LastEditors: ninglupeng
* @LastEditTime: 2022-11-03 13:17:25 * @LastEditTime: 2022-11-03 13:49:28
* @Description: * @Description:
*/ */
module.exports = { module.exports = {
...@@ -80,7 +80,80 @@ module.exports = { ...@@ -80,7 +80,80 @@ module.exports = {
"yes": '是', "yes": '是',
"no": "否", "no": "否",
"have": "有", "have": "有",
"noHave": "没有" "noHave": "无",
"hasHistoryAllergies": "过敏史", //过敏史
"foodAllergy": "食物过敏原", //食物过敏
"drugAllergy": "药物过敏原", //药物过敏
"otherAllergy": "其他过敏原", //其他过敏
"hasHistorySurgery": "手术史", //手术史
"historySurgery": "手术史具体内容", //手术史具体内容
"HasPreviousHistory": "有无既往史", //有无既往史
"previousHistory": "既往史", //既往史
"otherPastHistory": "其他既往史", //其他既往史
"tuberculosisDate": "既往史发生时间", //既往史发生时间
"yesOrNoCt": "有无胸部CT检查",//有无胸部CT检查
"ChestCT": "CT有无病毒性肺炎表现", //CT有无病毒性肺炎表现
"ChestCTDate": "发生时间", //发生时间
"whetherSmoking": "是否吸烟", //是否吸烟
"smokingTypes": "烟草类型", //烟草类型
"smokingYears": "吸烟年数", //吸烟年数
"smokingCount": "每天吸烟支数", //每天吸烟支数
"whetherNoSmoking": "是否戒烟", //是否戒烟
"noSmokingYears": "戒烟年数", //戒烟年数
"whetherPassivitySmoking": "是否被动吸烟", //是否被动吸烟
"passivitySmokingYears": "被动吸烟年数", //是否被动吸烟年数
"year": '年'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment