Results 5 issues of LDC

In vue, the url path is concatenated with /#/login, and the url cannot be filled with special characters like # when authorizing, which will lead to the problem that the...

` "TRIBECA_MODE": "dev", "EXCHANGE": "OkCoin", "TradedPair": "BTC/USD", "MongoDbUrl": "mongodb://localhost:27017/tribeca", "WebClientUsername": "NULL", "WebClientPassword": "NULL", "WebClientListenPort": "8000", "ShowAllOrders": "true", "OkCoinWsUrl": "wss://real.okcoin.com:10440/websocket/okcoinapi", "OkCoinHttpUrl": "https://www.okcoin.com/api/v1/", "OkCoinApiKey": ".............................................", "OkCoinSecretKey": "...............................", "OkCoinOrderDestination": "OkCoin",` When you open...

`var express = require('express'); var app = express(); var expressWs = require('express-ws')(app); app.use(function (req, res, next) { console.log('middleware'); req.testing = 'testing'; return next(); }); app.get('/', function(req, res, next){ console.log('get route',...

`import { getDvaApp } from 'umi'; const state = getDvaApp()._models ` getDvaApp显示的any类型,导致state也是any类型

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🐛 bug 描述 1. ProLayout 会跟antd内部的menu的样式互相影响; 2. ProLayout 的配置项pageContainer-paddingInlinePageContainerContent即使设置了,内容区依然会有一个默认的间距 3. ProLayout 收起菜单时,icon不能居中 ### 📷 复现步骤 第一个问题: 当使用了antd内部的组件的任意版本menu组件时,layout的menu样式会被覆盖,antd是使用的where。(我这里是测试5.6-5.20任意版本) ``` :where(.css-dev-only-do-not-override-1o20a2g).ant-menu-light .ant-menu-item-selected{ color:red } ``` 第二个问题: 样式中会有一个dom结构存在默认样式无法取消,提供的配置项只是对`.ant-pro-layout .ant-pro-layout-content`生效,但是其子项dom会有一个默认样式(虽然可以临时使用global样式覆盖) ```...