@yqg/permission 1.0.0-beta.0 → 1.0.1-beta.0

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": "@yqg/permission",
3
- "version": "1.0.0-beta.0",
3
+ "version": "1.0.1-beta.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "module",
package/src/App.vue CHANGED
@@ -30,7 +30,7 @@ const changeLocale = () => {
30
30
  <!-- 02124 -->
31
31
  <yqg-permission
32
32
  :permissions="permissions"
33
- workNumber="02124"
33
+ workNumber="H00408"
34
34
  businessCode="PPDL"
35
35
  :color="color"
36
36
  :locale="locale"
@@ -52,7 +52,7 @@
52
52
  <template #content>
53
53
  {{t('manager')}}: {{ curStatus.tips }}
54
54
  </template>
55
- {{ t('callManager') }}
55
+ <span style="color: #1677ff;">{{t('callManager') }}</span>
56
56
  </Popover>
57
57
  </div>
58
58
  </template>
@@ -165,7 +165,7 @@
165
165
  return {
166
166
  imageUrl: noauthority,
167
167
  status: statusMap.NO,
168
- tips: data[0].admin?.join(','),
168
+ tips: data[0].admin?.map((item) => item.name)?.join(''),
169
169
  };
170
170
  };
171
171
  return curStatus.value;
@@ -203,6 +203,7 @@
203
203
  align-items: center;
204
204
  flex-direction: column;
205
205
  font-size: 14px;
206
+ white-space: nowrap;
206
207
  }
207
208
  </style>
208
209