vue2-client 1.17.4 → 1.17.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.17.4",
3
+ "version": "1.17.6",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -147,10 +147,10 @@
147
147
  </a-tooltip>
148
148
  <a-popover title="开发者调试信息" placement="bottomRight" v-if="!isDebugUser()">
149
149
  <template slot="content">
150
- <p>租户:{{ realQueryParams.$globalProp.tenantAlias }}</p>
151
- <p>命名空间:{{ realQueryParams.$globalProp.namespaceName }} - {{ realQueryParams.$globalProp.module }}</p>
150
+ <p>租户:{{ realQueryParams.$globalProp?.tenantAlias }}</p>
151
+ <p>命名空间:{{ realQueryParams.$globalProp?.namespaceName }} - {{ realQueryParams.$globalProp?.module }}</p>
152
152
  <p>配置名称:{{ queryParamsName }}</p>
153
- <p>版本号:{{ realQueryParams.$globalProp.version }}</p>
153
+ <p>版本号:{{ realQueryParams.$globalProp?.version }}</p>
154
154
  </template>
155
155
  <a-button>
156
156
  <a-icon :style="iconStyle" type="bug"/>
@@ -2,7 +2,7 @@
2
2
  <a-card
3
3
  :bordered="false"
4
4
  size="small"
5
- :bodyStyle="{ padding:'12px', borderRadius: '8px' }">
5
+ :bodyStyle="{ padding:'12px', borderRadius: '8px', ...$router.currentRoute?.meta }">
6
6
  <XReport
7
7
  ref="main"
8
8
  v-if="configName"
@@ -210,6 +210,7 @@ export default {
210
210
  this.steps = undefined
211
211
  this.messageList = []
212
212
  this.currStepId = null
213
+ this.$emit('drawerOnClose')
213
214
  },
214
215
  // 获取基础信息
215
216
  getBaseInfo () {