liting2017 6 years ago
parent
commit
9f8c40474b

BIN
img/patent/patent_banner.jpg


BIN
img/patent/patent_banner1.jpg


BIN
img/patent/patent_bot.jpg


+ 29 - 18
src/css/newMenu/patent.css

@@ -28,8 +28,6 @@
     left: 50%;
     transform: translateX(-50%);
     height: 440px;
-    background: #ffffff;
-    border-top: 1px solid #e0e0e0;
 }
 .patentMenu .firstMenu{
     position: absolute;
@@ -37,8 +35,9 @@
     overflow: hidden;
     width: 198px;
     height: 452px;
-    top: -13px;
-    left: 0;
+    top: -12px;
+    left: 15px;
+    background: #fff;
     border-radius: 10px 10px 0 0 ;
 }
 .patentMenu .firstMenu a{
@@ -66,16 +65,19 @@
     color: #1797e9;
 }
 .firstMenu ul li.active span{
-    color: #1797e9;
+    color: #1797e9!important;
     border-color: #1797e9;
 }
+.firstMenu  ul li.active p{
+    color: #1797e9;
+}
 .firstMenu ul li>p{
     height: 127px;
     font-size: 18px;
     color: #7a7878;
     line-height: 126px;
 }
-.firstMenu ul li>p span{
+.firstMenu ul li>p span:nth-child(1){
     display: inline-block;
     height: 20px;
     line-height: 18px;
@@ -98,29 +100,36 @@
 }
 .firstMenu ul li .direction{
      float: right;
-     margin-top: 58px;
-     margin-right: 14px;
-     width: 10px ;
+     margin-right: 34px;
+     line-height: 127px;
+     width: 10px;
+     font-size: 10px;
      height: 10px;
      display: inline-block;
-     margin-left: 14px;
-     border-left: 2px solid #7a7878;
-     border-top: 2px solid #7a7878;
-     transform: rotate(135deg)
 }
+
 .secondMenu{
+    overflow: hidden;
     position: absolute;
-    right: 0;
-    top: 0;
+    left: 213px;
+    top:0px;
+    background: #fff;
     height: 100%;
+    width: 0px;
+    border-top: 1px solid #ccc;
+    transition: all .3s ease-in-out;
+}
+.secondMenu.active{
     width: 960px;
+    transition: all .3s ease-in
 }
 .secondMenu ul li{
     position: absolute;
     top: 0;
-    left: 0;
+    left: 200px;
     z-index: 50;
-    display: none;
+    opacity: 0;
+    transition: all .5s ease-in-out;
 }
 .secondMenu ul li div{
     width: 180px;
@@ -131,7 +140,9 @@
     text-align: center;
 }
 .secondMenu ul li.active{
-    display: block;
+    left: 0;
+    transition: all .5s ease-in-out;
+    opacity: 1;
 }
 .secondMenu ul li div:first-child{
     border-left: none;

+ 13 - 10
src/css/newMenu/tradingIndex.css

@@ -441,19 +441,22 @@
     height: 370px;
     background: #f9f9f9;
     transition: all .2s ease-in-out;
+    text-align: center;
+    border-bottom: 4px solid transparent;
 }
 .expertList ul li div{
     width: 100%;
-    height: 260px;
 }
 .expertList ul li div img{
-    width: 100%;
-    height: 100%;
+    width: 140px;
+    height: 140px;
+    margin: 37px auto  33px;
     display: inline-block;
+    border-radius: 50%;
 }
 .expertList ul li h3{
     font-weight: normal;
-    font-size: 20px;
+    font-size: 22px;
     margin-left: 8px;
     color: #1f1f1f;
     padding: 0 10px;
@@ -463,7 +466,6 @@
     white-space:nowrap; 
     text-overflow:ellipsis; 
     -o-text-overflow:ellipsis;
-    border-bottom: 1px dotted #b5b5b5;
 }
 .expertList ul li h3 span{
     font-size: 18px;
@@ -473,20 +475,20 @@
     vertical-align: top
 }
 .expertList ul li p{
-    padding: 0 18px;
+    padding: 0 50px;
     font-size: 14px;
     color: #707070;
     overflow: hidden;
     display: -webkit-box;              
     text-overflow: ellipsis;            
     -webkit-box-orient: vertical;       
-    -webkit-line-clamp:2;
+    -webkit-line-clamp:3;
     margin-top: 12px;
 }
 .expertList .expertImg{
     width: 380px;
-    height: 390px;
-    margin-top: -18px;
+    height: 400px;
+    margin-top: -30px;
 }
 .expertList .expertImg img{
     width: 100% ;
@@ -494,9 +496,10 @@
     display: inline-block;
 }
 .expertList ul li:hover{
-    box-shadow: 0 4px 10px #ccc;
+    box-shadow: 0 0px 15px #ccc;
     margin-top: -4px;
     transition: all .2s ease-in-out;
+    border-bottom: 4px solid #1697e9;
 }
 
 

+ 9 - 4
src/js/newMenu/patent.js

@@ -11,9 +11,7 @@ $(function(){
         navTop();
         MenuFun();
         searchFun();
-        $('.firstMenu ul li:eq(0)').addClass('active')
-        $('.firstMenu ul li:eq(0)').addClass('active')
-        $('.secondMenu ul li').eq(0).show()
+        $('.firstMenu ul li').removeClass('active');
     }
     //导航
     function navTop() {
@@ -27,12 +25,19 @@ $(function(){
         });
     }
     //菜单切换
+   
     function MenuFun(){
         $('.firstMenu ul li').click(function(){
+            $('.secondMenu').addClass('active');
             let index =$(this).index();
             $(this).addClass('active').siblings().removeClass('active');    
-            $('.secondMenu ul li').eq(index).show().siblings().hide();
+            $('.secondMenu ul li').eq(index).addClass('active').siblings().removeClass('active');
         });
+        $('.patentMenu').mouseleave(function(){
+            $('.firstMenu ul li').removeClass('active');
+            $('.secondMenu ul li').removeClass('active')
+            $('.secondMenu').removeClass('active');
+        })
     }
     function searchFun(){
         $('.searchBtn').on('click',function(){

+ 5 - 5
template/newMenu/patent.html

@@ -6,10 +6,10 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
     <title>知识产权申请首页</title>
-    <!-- <link rel="stylesheet" href="../../src/css/bootstrap.css">
+    <link rel="stylesheet" href="../../src/css/bootstrap.css">
     <link rel="stylesheet" href="../../src/css/newMenu/patent.css">
     <link rel="stylesheet" href="../../src/css/newMenu/public.css">
-    <link rel="stylesheet" href="../../src/css/newMenu/header.css"> -->
+    <link rel="stylesheet" href="../../src/css/newMenu/header.css">
 </head>
 
 <body>
@@ -256,19 +256,19 @@
                     <li class="active">
                         <p>
                             <span class="circl">P</span>专利服务
-                            <span class="direction"></span>
+                            <span class="direction glyphicon glyphicon-menu-right"></span>
                         </p>
                     </li>
                     <li>
                         <p>
                             <span class="circl">R</span>商标服务
-                            <span class="direction"></span>
+                            <span class="direction glyphicon glyphicon-menu-right"></span>
                         </p>
                     </li>
                     <li>
                         <p>
                             <span class="circl">C</span>版权服务
-                            <span class="direction"></span>
+                            <span class="direction glyphicon glyphicon-menu-right"></span>
                         </p>
                     </li>
                 </ul>

+ 3 - 3
webpack.config.js

@@ -360,7 +360,7 @@ module.exports = (function () {
         }));
     }
 
-    let staticHost = 'http://192.168.1.188';
+    let staticHost = 'http://192.168.0.188';
     switch (argv.env.deploy) {
         case 'test':
             staticHost = 'http://statics.jishutao.com';
@@ -392,9 +392,9 @@ module.exports = (function () {
         plugins: plugins,
         devServer: {
             disableHostCheck: true,
-            host: '192.168.1.188',
+            host: '192.168.0.188',
             port: 80,
-            allowedHosts: ['127.0.0.1','192.168.1.165'],
+            allowedHosts: ['127.0.0.1','192.168.0.20'],
             headers: {
                 "Access-Control-Allow-Origin": "*"
             }

+ 52 - 52
webpack/entry.config.js

@@ -57,213 +57,213 @@ module.exports = {
         // 'newMenu/app/safeguardApp': './src/js/newMenu/app/safeguardApp.js'
     },
     watch: {
-        'index': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'index': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/newMenu/index.js'
         ],
-         'aboutUs': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+         'aboutUs': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/aboutUs.js'
         ], 
-        // 'APPaboutUs': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'APPaboutUs': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/APPaboutUs.js'
         // ],  
-        'contactUs': ['webpack-dev-server/client?http://192.168.1.188',
+        'contactUs': ['webpack-dev-server/client?http://192.168.0.188',
             'webpack/hot/only-dev-server',
             './src/js/contactUs.js'
         ],
-        // 'toPayment': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'toPayment': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/toPayment.js'
         // ],
-        // 'service': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'service': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/service.js'
         // ],
-        'register': ['webpack-dev-server/client?http://192.168.1.188',
+        'register': ['webpack-dev-server/client?http://192.168.0.188',
             'webpack/hot/only-dev-server',
             './src/js/register.js'
         ],
-        // 'member': ['webpack-dev-server/client?http://192.168.1.188',
+        // 'member': ['webpack-dev-server/client?http://192.168.0.188',
         //     'webpack/hot/only-dev-server',
         //     './src/js/member.js'
         // ],
-        // 'technologyTrading': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'technologyTrading': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/technologyTrading.js'
         // ],
-        'thinkTank': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'thinkTank': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/thinkTank.js'
         ],
-        // 'financialIndex': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'financialIndex': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/financialIndex.js'
         // ],
-        // 'technologyTrading/achievement': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'technologyTrading/achievement': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/technologyTrading/achievement.js'
         // ],
-        // 'technologyTrading/demand': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'technologyTrading/demand': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/technologyTrading/demand.js'
         // ],
-        'technologyTrading/achievementDetail': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'technologyTrading/achievementDetail': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/technologyTrading/achievementDetail.js'
         ],
-        // 'technologyTrading/assessMent': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'technologyTrading/assessMent': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/technologyTrading/assessMent.js'
         //  ],   
-        // 'technologyTrading/achievementOrder': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'technologyTrading/achievementOrder': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/technologyTrading/achievementOrder.js'
         // ],
-        // 'technologyTrading/demandOrder': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'technologyTrading/demandOrder': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/technologyTrading/demandOrder.js'
         // ],
-        'technologyTrading/demandDetail': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'technologyTrading/demandDetail': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/technologyTrading/demandDetail.js'
         ],
-        'thinkTank/policyDetail': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'thinkTank/policyDetail': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/thinkTank/policyDetail.js'
         ],
-        'thinkTank/thinkerDetail': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'thinkTank/thinkerDetail': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/thinkTank/thinkerDetail.js'
         ],
-        'thinkTank/policyList': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'thinkTank/policyList': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/thinkTank/policyList.js'
         ],
-        // 'financial/investmentInstitution': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'financial/investmentInstitution': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/financial/investmentInstitution.js'
         // ],
-        // 'financial/investmentDetail': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'financial/investmentDetail': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/financial/investmentDetail.js'
         // ],
-        // 'service/highTechCognizance': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'service/highTechCognizance': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/service/highTechCognizance.js'
         // ],
-        // 'service/propertyRight': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'service/propertyRight': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/service/propertyRight.js'
         // ],
-		// 'service/projectDetails': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+		// 'service/projectDetails': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/service/projectDetails.js'
         // ],
-        // 'service/purpose': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'service/purpose': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         //     'webpack/hot/only-dev-server',
         //     './src/js/service/purpose.js'
         // ],
         // newsApp 
-        'news/newsDetailApp': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'news/newsDetailApp': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/news/newsDetailApp.js'
         ],
-        'news/appCognizance': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'news/appCognizance': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/news/appCognizance.js'
         ],
-        'news/agreement': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'news/agreement': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/news/agreement.js'
         ],
         /* 2018-06 新版科技需求 */
-        'newMenu/demand': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/demand': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/demand.js'
         ],
-        'newMenu/achievement': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/achievement': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/achievement.js'
         ],
-        'newMenu/achievementList': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/achievementList': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/achievementList.js'
         ],
-        'newMenu/demandList': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/demandList': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/demandList.js'
         ],
-        'newMenu/services': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/services': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/services.js'
         ],
-        'newMenu/serviceList': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/serviceList': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/serviceList.js'
         ],
-        'newMenu/serviceDetails': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/serviceDetails': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/serviceDetails.js'
         ],
-        'newMenu/shopList': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/shopList': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/shopList.js'
         ],
-        'newMenu/patentList': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/patentList': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/patentList.js'
         ],
-        'newMenu/tradingIndex': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/tradingIndex': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/tradingIndex.js'
         ],
-        'newMenu/patent': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/patent': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/patent.js'
         ],
-        'newMenu/companyProfile': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/companyProfile': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/companyProfile.js'
         ],
-        'newMenu/continueHigh': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/continueHigh': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/continueHigh.js'
         ],
-        'newMenu/practicalPatent': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/practicalPatent': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/continueHigh.js'
         ],
-        'newMenu/militaryProject': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/militaryProject': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/continueHigh.js'
         ],
-        'newMenu/continueHighApp': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/continueHighApp': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/continueHighApp.js'
         ],
-        'newMenu/militaryProjectApp': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/militaryProjectApp': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/continueHighApp.js'
         ],
-        'newMenu/practicalPatentApp': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/practicalPatentApp': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/continueHighApp.js'
         ],
-        'newMenu/safeguarding': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        'newMenu/safeguarding': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         'webpack/hot/only-dev-server',
         './src/js/newMenu/safeguarding.js'
         ],
-        // 'newMenu/app/assessment': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'newMenu/app/assessment': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         // 'webpack/hot/only-dev-server',
         // './src/js/newMenu/app/assessment.js'
         // ],
-        // 'newMenu/app/trusteeship': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'newMenu/app/trusteeship': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         // 'webpack/hot/only-dev-server',
         // './src/js/newMenu/app/trusteeship.js'
         // ],
-        // 'newMenu/app/safeguardApp': ['webpack-dev-server/client?http://192.168.1.188', // WebpackDevServer host and port
+        // 'newMenu/app/safeguardApp': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
         // 'webpack/hot/only-dev-server',
         // './src/js/newMenu/app/safeguardApp.js'
         // ]