vue2-client 1.15.46 → 1.15.47

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.15.46",
3
+ "version": "1.15.47",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -167,7 +167,6 @@ export default {
167
167
  },
168
168
  async getData (config, parameter) {
169
169
  this.configName = config
170
- config = 'collapseTestConfig'
171
170
  getConfigByName(config, 'af-his', res => {
172
171
  this.config = res
173
172
  console.warn(this.config)
@@ -6,7 +6,7 @@
6
6
  <a-list :grid="{ gutter: 16, xs: 1, sm: 2, md: 2, lg: 3, xl: 3, xxl: 4 }"
7
7
  :data-source="localData">
8
8
  <a-list-item slot="renderItem" slot-scope="item, index">
9
- <div style="background-color: #E5E9F0; height: 297px; width: auto; border-radius: 6px;">
9
+ <div class="card-a-col">
10
10
  <a-row class="card-row">
11
11
  <a-col class="id-a-col" :span="4" v-for="(detail,idx) in item" :key="idx" v-if="detail.label == label">
12
12
  {{detail.value}}<span style="font-size: 16px;font-weight: 400 !important;">床</span>
@@ -477,4 +477,11 @@ export default {
477
477
  top: 245px;
478
478
  left: 225px;
479
479
  }
480
+ .card-a-col{
481
+ background-color: rgba(247, 249, 252);
482
+ height: 297px;
483
+ width: auto;
484
+ border-radius: 6px;
485
+ border: 1px solid rgba(255, 255, 255, 0.08)
486
+ }
480
487
  </style>