@scenetechnology/cj_iview_table 0.0.5 → 0.0.7
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/README.md +2 -2
- package/dist/cj_iview_table.common.js +3 -3
- package/dist/cj_iview_table.common.js.map +1 -1
- package/dist/cj_iview_table.umd.js +3 -3
- package/dist/cj_iview_table.umd.js.map +1 -1
- package/dist/cj_iview_table.umd.min.js +1 -1
- package/dist/cj_iview_table.umd.min.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,8 +22,8 @@ npm install @scenetechnology/cj_iview_table --legacy-peer-deps
|
|
|
22
22
|
|
|
23
23
|
1. 在main.js中 引入UI库 引入UI样式
|
|
24
24
|
```
|
|
25
|
-
import cj_iview_table from 'cj_iview_table'
|
|
26
|
-
import 'cj_iview_table/dist/cj_iview_table.css'
|
|
25
|
+
import cj_iview_table from '@scenetechnology/cj_iview_table'
|
|
26
|
+
import '@scenetechnology/cj_iview_table/dist/cj_iview_table.css'
|
|
27
27
|
Vue.use(cj_iview_table)
|
|
28
28
|
```
|
|
29
29
|
2.在页面使用
|
|
@@ -24421,9 +24421,9 @@ let mapUrl = ''
|
|
|
24421
24421
|
if(localStorage.getItem('publicHost')){
|
|
24422
24422
|
baseUri = localStorage.getItem('publicHost')
|
|
24423
24423
|
mapUrl = localStorage.getItem('publicHost')
|
|
24424
|
-
if (localStorage.getItem('is_root') === 'true' || localStorage.getItem('is_root') === 'false') { // 嵌入在使用端情况
|
|
24425
|
-
|
|
24426
|
-
}
|
|
24424
|
+
// if (localStorage.getItem('is_root') === 'true' || localStorage.getItem('is_root') === 'false') { // 嵌入在使用端情况
|
|
24425
|
+
// mapUrl = localStorage.getItem('publicHost') + 'simp/'
|
|
24426
|
+
// }
|
|
24427
24427
|
}else{
|
|
24428
24428
|
if (false) {} else if (true) {
|
|
24429
24429
|
if (localStorage.getItem('is_root') === 'true' || localStorage.getItem('is_root') === 'false') { // 嵌入在使用端情况
|