module-menu-vue 0.0.74 → 0.0.76
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
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
</div>
|
|
23
23
|
<div class='rightMenu'
|
|
24
24
|
:style="{
|
|
25
|
-
height: item.children.length > 3 ? '96px' : '70px',
|
|
25
|
+
height: item.children.length > 6 ? '140px' : item.children.length > 3 ? '96px' : '70px',
|
|
26
26
|
lineHeight: item.children.length > 3 ? '45px' : '70px',
|
|
27
27
|
borderBottom: index === menuList.length - 1 ? '0px' : '1px solid #E9E9E9',
|
|
28
28
|
}">
|
|
@@ -207,7 +207,7 @@ export default {
|
|
|
207
207
|
thirdPartyServiceJumpPath = '/admin-ui/supply-and-demand-docking/dataRequirement/propose/list';
|
|
208
208
|
break;
|
|
209
209
|
case "级联管理":
|
|
210
|
-
thirdPartyServiceJumpPath = '/admin-ui/cascade
|
|
210
|
+
thirdPartyServiceJumpPath = '/admin-ui/cascade';
|
|
211
211
|
break;
|
|
212
212
|
default:
|
|
213
213
|
break;
|
package/vue.config.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* 配置参考:
|
|
3
3
|
* https://cli.vuejs.org/zh/config/
|
|
4
4
|
*/
|
|
5
|
-
|
|
6
|
-
const url = 'https://192.168.108.86:30011/'
|
|
5
|
+
const url = 'http://10.136.106.131:31950'
|
|
6
|
+
// const url = 'https://192.168.108.86:30011/'
|
|
7
7
|
module.exports = {
|
|
8
8
|
lintOnSave: true,
|
|
9
9
|
productionSourceMap: false,
|
|
@@ -28,7 +28,7 @@ module.exports = {
|
|
|
28
28
|
},
|
|
29
29
|
},
|
|
30
30
|
'/admin-api': {
|
|
31
|
-
target: 'http://10.136.106.131:
|
|
31
|
+
target: 'http://10.136.106.131:31950',
|
|
32
32
|
changeOrigin: true,
|
|
33
33
|
pathRewrite: { '^': '' },
|
|
34
34
|
}
|