@yqg/permission 1.0.11-alpha.6 → 1.0.12

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.11-alpha.6",
3
+ "version": "1.0.12",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "module",
Binary file
@@ -47,7 +47,6 @@
47
47
  }]">
48
48
  <Textarea
49
49
  v-model:value.trim="formState.applyReason"
50
- :maxlength="300"
51
50
  :placeholder="t('applyReasonPlaceholder', {number: 300})"
52
51
  :auto-size="{ minRows: 2, maxRows: 5 }">
53
52
  </Textarea>
@@ -19,7 +19,7 @@
19
19
  }"
20
20
  >
21
21
  <template #icon>
22
- <img :src="applyIconUrl" />
22
+ <img :src="applyIconUrl" height="20" width="20"/>
23
23
  </template>
24
24
  </FloatButton>
25
25
  </template>
@@ -98,7 +98,7 @@
98
98
  import { ref, defineAsyncComponent, computed, watchEffect, watch } from 'vue';
99
99
  import { Button, ConfigProvider, Popover , message, FloatButton} from 'ant-design-vue';
100
100
  import applyUrl from '@/assets/applying.png';
101
- import applyIconUrl from '@/assets/apply.png';
101
+ import applyIconUrl from '@/assets/applyicon.png';
102
102
  import noauthority from '@/assets/noauthority.png';
103
103
  import Http from '../axios/index';
104
104
  import t from '../utils';