Commit fe930a3f authored by 英思-陈欢's avatar 英思-陈欢

调试

parent 848d5020
......@@ -7,8 +7,9 @@
globalData: {
user: {
psnCertType: '01',
certno: '522424199009052614', // 身份证号 211224199502036621
psnNo: '52000005000000006015800601', // 人员编号 52000002000000000400011816
name: '',
certno: '', // 身份证号 522424199009052614
psnNo: '', // 人员编号 52000005000000006015800601
locAdmdvs: '', // 520300
insuAdmdvs: '', // 520281
insuTypeCode: '' // 险种 390
......@@ -81,6 +82,7 @@
psnCertType: getApp().globalData!.user.psnCertType,
certno: getApp().globalData!.user.certno,
}).then((res: any) => {
getApp().globalData!.user.name = res.psnName;
getApp().globalData!.user.psnNo = res.psnNo;
getApp().globalData!.user.insuTypeCode = res.insutypeCode;
getApp().globalData!.user.insuAdmdvs = res.insuAdmdvs;
......
......@@ -206,7 +206,9 @@
}
],
"globalStyle": {
"navigationStyle": "default",
// #ifdef App
"navigationStyle": "custom",
// #endif
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "white",
"navigationBarTitleText": "医保服务"
......
......@@ -4,7 +4,7 @@
<h1 class="title">门诊统筹使用查询明细</h1>
<view class="info-wrap">
<view class="info">
<view class="btn u-flex u-flex-end">查看明细</view>
<!-- <view class="btn u-flex u-flex-end">查看明细</view> -->
<view class="label u-flex u-flex-center">年额度 (元)</view>
<view class="value u-flex u-flex-center">{{ detail.quota }}</view>
<view class="u-flex u-flex-between">
......@@ -20,7 +20,7 @@
</view>
</view>
</view>
<view class="submit-btn u-flex u-flex-center u-flex-items-center" @click="submit">去使用</view>
<!-- <view class="submit-btn u-flex u-flex-center u-flex-items-center" @click="submit">去使用</view> -->
</view>
</template>
......
......@@ -44,7 +44,7 @@
return {
initPsnCert: '',
form: {
initPsnCertType: '',
initPsnCertType: getApp().globalData!.certTypeOptions[0].name,
initCertno: '',
initPsnName: '',
initPsnNo: '',
......@@ -56,8 +56,10 @@
},
onLoad() {
const info = getApp().globalData!.user;
this.form.initPsnCertType = info.psnCertType;
this.form.initCertno = info.certno;
this.form.initPsnNo = info.psnNo;
this.form.initPsnName = info.name;
},
methods: {
identTypeChange(e: any) {
......
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