From 4c34153d931f8b2c6c4f73ca74a429785a6d3a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=87=AA=E5=B8=A6=E5=A4=A7=E4=BD=AC=E6=B0=94=E5=9C=BA?= <188633308@qq.com> Date: Fri, 4 Jun 2021 12:02:04 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E8=A1=A8=E5=8D=95=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/src/main.js | 2 +- .../pages/business/house/code/form/part.vue | 9 +- .../house/info/form/base/building.vue | 143 ++++++++---------- .../business/house/info/form/base/index.vue | 13 +- .../house/info/form/base/ownership.vue | 50 +++--- .../pages/business/house/info/form/index.vue | 26 +++- .../business/house/info/form/patrol/base.vue | 4 +- .../business/house/info/form/patrol/index.vue | 5 +- .../business/statistics/summary/index.vue | 47 ++++++ Web/src/util/global/index.js | 10 +- 10 files changed, 177 insertions(+), 132 deletions(-) create mode 100644 Web/src/pages/business/statistics/summary/index.vue diff --git a/Web/src/main.js b/Web/src/main.js index 1e13ac4..e35f5b2 100644 --- a/Web/src/main.js +++ b/Web/src/main.js @@ -99,7 +99,7 @@ import './assets/style/app.less' import { SETTING_KEY } from './common/storage' -const settings = JSON.parse(window.localStorage.getItem(SETTING_KEY)) +const settings = JSON.parse(window.localStorage.getItem(SETTING_KEY)) || {} Object.assign(settings, { layout: 'top-nav', container: 'container-fluid', diff --git a/Web/src/pages/business/house/code/form/part.vue b/Web/src/pages/business/house/code/form/part.vue index c3d541d..1becd48 100644 --- a/Web/src/pages/business/house/code/form/part.vue +++ b/Web/src/pages/business/house/code/form/part.vue @@ -143,6 +143,8 @@ \ No newline at end of file diff --git a/Web/src/util/global/index.js b/Web/src/util/global/index.js index 3eb220e..395950b 100644 --- a/Web/src/util/global/index.js +++ b/Web/src/util/global/index.js @@ -28,4 +28,12 @@ export const getGlobal = () => { return JSON.parse(decryptByDES(window.sessionStorage.getItem(GLOBAL_INFO_KEY))) } -export const RSA_PUBLIC_KEY = '-----BEGIN PUBLIC KEY-----MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC273zAyijb3uX6O66VThrdfHtzZJn3d/SBM8qiETS7PijyNY3zNecAB+F/owxOWSB/6ojBo5Eu0FCiENxfpenTZB7sKrYu6NVH5gkfHLa6jz4pNzlGP93Q6RON4KjMZolAfRevBQ7vD6sOfJfMDnYi8xk+dRXcqc6PWY8fQiGs5QIDAQAB-----END PUBLIC KEY-----' \ No newline at end of file +/** + * RSA公钥 + */ +export const RSA_PUBLIC_KEY = '-----BEGIN PUBLIC KEY-----MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC273zAyijb3uX6O66VThrdfHtzZJn3d/SBM8qiETS7PijyNY3zNecAB+F/owxOWSB/6ojBo5Eu0FCiENxfpenTZB7sKrYu6NVH5gkfHLa6jz4pNzlGP93Q6RON4KjMZolAfRevBQ7vD6sOfJfMDnYi8xk+dRXcqc6PWY8fQiGs5QIDAQAB-----END PUBLIC KEY-----' + +/** + * 城市名称 + */ +export const CITY = '黄石市' \ No newline at end of file