From 15555a93042b94bab870944aa880e772efb6c5e5 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Wed, 2 Mar 2022 10:00:58 +0800 Subject: [PATCH 1/3] bug --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5b70a77b..05bb8175 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ yarn-error.log* /oms/dist/ /project/*/index.js /project/*/dist +/examples/entries.js From 6ce01389c8578b0ea41b2387f4e9b12c1c777dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=BB=95=E4=BC=9F?= <499672082@qq.com> Date: Wed, 2 Mar 2022 10:04:52 +0800 Subject: [PATCH 2/3] 27881 --- project/xiushan/apps/finance/AppLoanAudit/loanList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue index b81ea62a..6c85fd78 100644 --- a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue +++ b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue @@ -77,8 +77,8 @@ export default { }, handleFilterApplyTime() { this.page.current = 1 - this.search.applyStartDate = this.search.applyTime?.[0] - this.search.applyEndDate = this.search.applyTime?.[1] + this.search.applyStartDate = this.search.applyTime?.[0].substring(0,10) + this.search.applyEndDate = this.search.applyTime?.[1].substring(0,10) this.getTableData() } }, From 7a667e6f2b536d8c2e8ef606de0b8fccbfe8cd16 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Wed, 2 Mar 2022 10:06:37 +0800 Subject: [PATCH 3/3] 27926 --- .gitignore | 1 - examples/entries.js | 22 ------------------- .../AppVillagersCircle/components/List.vue | 4 ++-- 3 files changed, 2 insertions(+), 25 deletions(-) delete mode 100644 examples/entries.js diff --git a/.gitignore b/.gitignore index 05bb8175..5b70a77b 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,3 @@ yarn-error.log* /oms/dist/ /project/*/index.js /project/*/dist -/examples/entries.js diff --git a/examples/entries.js b/examples/entries.js deleted file mode 100644 index beec03b0..00000000 --- a/examples/entries.js +++ /dev/null @@ -1,22 +0,0 @@ -//引入当前工程所有的应用 -const install = function(Vue) { - if (install.installed) return Promise.resolve(); - else { - let contexts = require.context('../project/xiushan', true, /(\/.+)\/App[^\/]+\.vue$/); - if (contexts) { - contexts.keys().map((e) => { - if (contexts(e).default) { - Vue.component(contexts(e).default.name, contexts(e).default); - } - }); - } - } -}; -// 判断是否是直接引入文件 -if (typeof window !== 'undefined' && window.Vue) { - install(window.Vue); -} -export default { - // 导出的对象必须具有 install,才能被 Vue.use() 方法安装 - install -}; diff --git a/project/shandong10086/apps/shandong/AppVillagersCircle/components/List.vue b/project/shandong10086/apps/shandong/AppVillagersCircle/components/List.vue index 0eef8a80..b1f6cfad 100644 --- a/project/shandong10086/apps/shandong/AppVillagersCircle/components/List.vue +++ b/project/shandong10086/apps/shandong/AppVillagersCircle/components/List.vue @@ -23,7 +23,7 @@ type="date" size="small" unlink-panels - placeholder="选择开始日期" + placeholder="请选择发布开始日期" @change="search.current = 1, getList()" />