n20-common-lib 2.4.49 → 2.4.51
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 +2 -1
- package/src/assets/css/font-icon.scss +3 -0
- package/src/assets/iconFont/iconfont.css +68 -70
- package/src/assets/iconFont3/demo.css +539 -0
- package/src/assets/iconFont3/demo_index.html +1936 -0
- package/src/assets/iconFont3/iconfont.css +319 -0
- package/src/assets/iconFont3/iconfont.js +1 -0
- package/src/assets/iconFont3/iconfont.json +541 -0
- package/src/assets/iconFont3/iconfont.ttf +0 -0
- package/src/assets/iconFont3/iconfont.woff +0 -0
- package/src/assets/iconFont3/iconfont.woff2 +0 -0
- package/src/components/ApprovalButtons/index.vue +14 -1
- package/src/components/FlowStep/index.vue +13 -2
- package/src/components/Layout/HeaderWrap/indexN.vue +13 -10
- package/src/i18n.json +4 -4
- package/src/index.js +3 -2
- package/style/fonts/iconfont.6ad948fe.woff +0 -0
- package/style/fonts/iconfont.76d19005.woff2 +0 -0
- package/style/fonts/iconfont.85c70ef9.ttf +0 -0
- package/style/index.css +2 -2
- package/style/index.css.map +1 -1
- package/theme/blue.css +2 -2
- package/theme/cctcRed.css +2 -2
- package/theme/fonts/iconfont.6ad948fe.woff +0 -0
- package/theme/fonts/iconfont.76d19005.woff2 +0 -0
- package/theme/fonts/iconfont.85c70ef9.ttf +0 -0
- package/theme/green.css +2 -2
- package/theme/lightBlue.css +2 -2
- package/theme/orange.css +2 -2
- package/theme/purple.css +2 -2
- package/theme/red.css +2 -2
- package/theme/yellow.css +2 -2
package/src/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import './utils/storagePro.js' // 扩展Storage
|
|
2
2
|
/** 提供组件给外部使用的入口 */
|
|
3
|
-
import AnchorItem from './components/Anchor/AnchorItem.vue'
|
|
4
3
|
import Anchor from './components/Anchor/index.vue'
|
|
4
|
+
import AnchorItem from './components/Anchor/AnchorItem.vue'
|
|
5
|
+
|
|
5
6
|
import ApprovalButtons from './components/ApprovalButtons/index.vue'
|
|
6
7
|
import ApproveCard from './components/ApprovalCard/ApproveCard.vue'
|
|
7
8
|
import ApprovalCard from './components/ApprovalCard/index.vue'
|
|
@@ -203,7 +204,7 @@ const components = [
|
|
|
203
204
|
const install = function (Vue, opts = { prefix: 'Cl', i18nConfig: {} }) {
|
|
204
205
|
components.forEach((component) => {
|
|
205
206
|
let name = component.name
|
|
206
|
-
if (!name) return console.error('
|
|
207
|
+
if (!name) return console.error('必须设置组件名称:', component)
|
|
207
208
|
|
|
208
209
|
name = opts.prefix + name.replace(name[0], name[0].toUpperCase())
|
|
209
210
|
Vue.component(name, component)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|