|
|
@@ -9,15 +9,17 @@ import 'moment/locale/zh-cn';
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
|
import zhCN from 'antd/lib/locale-provider/zh_CN';
|
|
|
|
|
|
-import WechatService from "./wechatService/WechatService";
|
|
|
import QuantService from "./quantService/QuantService";
|
|
|
import TrialCase from "./graphqlService/trialCase/TrialCase";
|
|
|
import UserCreate from "./graphqlService/userCreate/UserCreate";
|
|
|
+import WXTrialCase from "./wechatService/wxTrialCase/WXTrialCase";
|
|
|
+import WXUserCreate from "./wechatService/wxUserCreate/WXUserCreate";
|
|
|
import Login from "../login/Login";
|
|
|
import './graphqlService/common/graphql/index.css';
|
|
|
import './index.css'
|
|
|
import Create from "./graphqlService/common/schema/Create";
|
|
|
-import WxCreate from "./wechatService/WxCreate";
|
|
|
+import WxCreate from "./wechatService/wxCreate/WxCreate";
|
|
|
+
|
|
|
|
|
|
import {SHOW_ALL_SCHEMA, SHOW_ALL_WXCONFIG} from "../gql";
|
|
|
import axios from 'axios';
|
|
|
@@ -315,7 +317,8 @@ class App extends Component {
|
|
|
<Route path="/" exact component={TrialCase}/>
|
|
|
<Route path="/graphql-service/trial-case/:case" component={TrialCase}/>
|
|
|
<Route path="/graphql-service/my-create/:case" component={UserCreate}/>
|
|
|
- <Route path="/wechat-service/:sidebar/:case" component={WechatService}/>
|
|
|
+ <Route path="/wechat-service/trial-case/:case" component={WXTrialCase}/>
|
|
|
+ <Route path="/wechat-service/my-create/:case" component={WXUserCreate}/>
|
|
|
<Route path="/quant-service/:sidebar/:case" component={QuantService}/>
|
|
|
<Route path="/login/:setting" component={Login}/>
|
|
|
<Route path="/login" component={Login}/>
|