浏览代码

2222222222

LIJU 2 月之前
父节点
当前提交
863c23f197

+ 3 - 0
src/components/medical-insurance/readcard/Index.vue

@@ -173,6 +173,9 @@ const executeReadCard = (cardtype, retryCount = 0) => {
             readCardResult: ectype.indexOf(cardtype) > -1 
               ? JSON.stringify(JSON.parse(processedData.data).data) 
               : processedData.data,
+            busCardInfo: cardtype === 'sicard' 
+              ? processedData.sign 
+              : null,              
             readCardBizType: nowbiztype,
           }
           ctx.emit('success', result)

+ 1 - 0
src/views/medical-insurance/outpatient/MzRegister.vue

@@ -769,6 +769,7 @@ const clearReadCardData = () => {
 const afterReadCard = result => {
   readCardData.mdtrtCertType = result.mdtrtCertType;
   readCardData.readCardResult = result.readCardResult;
+  readCardData.busCardInfo = result.busCardInfo;
   readCardData.readCardBizType = result.readCardBizType;
 };
 

+ 1 - 0
src/views/medical-insurance/outpatient/MzSpltryRcrd.vue

@@ -575,6 +575,7 @@ const clearReadCardData = () => {
 const afterReadCard = result => {
   readCardData.mdtrtCertType = result.mdtrtCertType;
   readCardData.readCardResult = result.readCardResult;
+  readCardData.busCardInfo = result.busCardInfo;
   readCardData.readCardBizType = result.readCardBizType;
 };