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

调试

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