From 3cd4954d6c1e26f06086416b7687d966794ed0bf Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 18 Feb 2022 15:05:30 +0800 Subject: [PATCH] 27476 --- examples/entries.js | 2 +- project/shandong10086/apps/shandong/AppResident/auditList.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/entries.js b/examples/entries.js index 3d7290b4..52683155 100644 --- a/examples/entries.js +++ b/examples/entries.js @@ -2,7 +2,7 @@ const install = function(Vue) { if (install.installed) return Promise.resolve(); else { - let contexts = require.context('../packages', true, /(\/.+)\/App[^\/]+\.vue$/); + let contexts = require.context('../project/shandong10086/apps', true, /(\/.+)\/App[^\/]+\.vue$/); if (contexts) { contexts.keys().map((e) => { if (contexts(e).default) { diff --git a/project/shandong10086/apps/shandong/AppResident/auditList.vue b/project/shandong10086/apps/shandong/AppResident/auditList.vue index ed500b99..c92cc6d8 100644 --- a/project/shandong10086/apps/shandong/AppResident/auditList.vue +++ b/project/shandong10086/apps/shandong/AppResident/auditList.vue @@ -115,7 +115,7 @@ { prop: 'name', label: '申请人', align: 'left' }, { prop: 'createTime', label: '申请时间', align: 'center' }, { prop: 'sex', label: '性别', align: 'center', formart: v => this.dict.getLabel('sex', v) }, - { prop: 'idNumber', label: '身份证号', align: 'center' }, + { prop: 'idNumber', label: '身份证号', align: 'center', formart: v => v.substring(0, 10) + '****' + v.substring(14, 18) }, { prop: 'age', label: '年龄', align: 'center' }, { prop: 'auditStatus', label: '审批结果', align: 'center', formart: v => this.dict.getLabel('auditStatus', v) }, { prop: 'auditUserName', label: '审批人', align: 'center' },