imatrix-ui 0.2.55-up → 0.2.56-up
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
|
@@ -153,7 +153,12 @@ export default {
|
|
|
153
153
|
if(!routePath) {
|
|
154
154
|
routePath = ''
|
|
155
155
|
}
|
|
156
|
-
routePath
|
|
156
|
+
if (routePath.indexOf("?") > 0) {
|
|
157
|
+
routePath += "&"
|
|
158
|
+
} else {
|
|
159
|
+
routePath += "?"
|
|
160
|
+
}
|
|
161
|
+
routePath = routePath + '_isNeedMenu_=false'
|
|
157
162
|
toPathObj.path = "/tab-content-index";
|
|
158
163
|
if(isDevp){
|
|
159
164
|
// 如果是开发平台,进入开发平台设置首页
|