浏览代码

Merge branch 'master' of http://git.jishutao.com/jishutao/portal

dengzhiguo 7 年之前
父节点
当前提交
a010696444
共有 9 个文件被更改,包括 131 次插入82 次删除
  1. 1 0
      package.json
  2. 4 3
      src/css/member.css
  3. 4 1
      src/css/public.css
  4. 1 9
      src/css/thinkTank/thinkerDetail.css
  5. 48 60
      src/js/member.js
  6. 57 2
      src/js/thinkTank/thinkerDetail.js
  7. 9 0
      src/js/tools.js
  8. 1 1
      webpack.config.js
  9. 6 6
      webpack/entry.config.js

+ 1 - 0
package.json

@@ -10,6 +10,7 @@
     "dllpro": "webpack --progress --colors --config ./webpack-dll.config.js --env.deploy prod --env.host 'http://static.goafanti.com'",
     "build": "node bin/clean.js && webpack --progress --colors --env.deploy dev",
     "buildtest": "node bin/clean.js && webpack --progress --colors --env.deploy test",
+    "buildstage": "node bin/clean.js && webpack --progress --colors --env.deploy stage",
     "pro": "node bin/clean.js && webpack --progress --colors --env.deploy prod",
     "dev": "webpack-dev-server --port 80 --devtool eval --progress --colors --hot --content-base build --env.deploy dev --env.watch watch"
   },

+ 4 - 3
src/css/member.css

@@ -9,11 +9,12 @@
 .member_on h5{font-weight: normal;font-size:16px ;color: #f18101;margin-left: 10px;}
 .member_on .blur{color: #0f72ba;}
 .member_on{width: 386px;}
+.member_on .member_business_list { min-height: 320px}
 .member_on .member_business_list p{font-size: 14px;color: #5f5e5e;line-height: 36px;color: #5f5e5e;}
 
-.member_on ul{overflow: hidden;margin-left: 13px;margin-bottom: 100px;margin-top: 23px;}
-.member_on ul li{float: left;width: 110px;height: 48px;border: 1px solid #CCCCCC;line-height: 48px;text-align: center;margin: 5px;}
-.member_on .member_left{margin-top: 60px;}
+.member_on ul{overflow: hidden;margin-left: 13px;margin-bottom: 100px;margin-top: 20px;}
+.member_on ul li{cursor: pointer;float: left;width: 110px;height: 48px;border: 1px solid #CCCCCC;line-height: 48px;text-align: center;margin: 5px;}
+.member_on .member_left{margin-top: 20px;}
 
 .member_on ul .then{border: 1px solid #f18101;}
 .member_on ul .then span{width: 70px;height: 20px;background: #ff6000;display: inline-block;color: #ffffff;line-height: 20px;font-size: 12px;margin-left: -38px;vertical-align: top;}

+ 4 - 1
src/css/public.css

@@ -89,7 +89,7 @@ header .nav_right a:hover{color: #2a6597;}
 /*右侧挂件*/
 
 .pub_fix{width: 70px;position: fixed;right: 20px;bottom: 80px;border-radius: 10px;border: 1px solid #e0e0e0;overflow: hidden;
-    text-align: center;height: 466px;background: #ffffff;z-index: 999;}
+    text-align: center;height: auto;background: #ffffff;z-index: 999;}
 
 .pub_fix .index_blur{width: 100%;height: 30px;line-height: 30px;background: #4c7fa9;display: inline-block;}
 .pub_fix .index_orange{width: 100%;height: 30px;line-height: 30px;background: #ffd68f;display: inline-block;}
@@ -138,3 +138,6 @@ header .nav_right a:hover{color: #2a6597;}
 .smg{display: none;width: 200px;height: 30px;color: #0C79FF;background: rgba(255,255,255,.7);border-radius: 10px;position: fixed;top:10%;left: 50%;margin-left: -75px;color: blue;z-index: 999999;}
 .smg input{width: 200px;height: 30px;border: none;background: none;text-align: center;font-size: 16px;}
 
+/* msg tools*/
+.message{position:fixed;top: 80px;text-align: center; width: 100%; display: none;z-index: 9999}
+.message span{background:rgba(0, 0, 0, 0.6);  padding: 8px 20px; color: #fff; border-radius: 6px}

+ 1 - 9
src/css/thinkTank/thinkerDetail.css

@@ -74,12 +74,4 @@ top:7px;left: 60px;}
 .bottompeople_text>h5{margin: 0;font-weight: bold;line-height: 30px;}
 .bottom_cont>div>div.bottom_conttext{width:190px;height:100px;color:#5F5E5E;position: absolute;top:20px;left:20px;}
 
-
-
-
-
-
-
-
-
-
+#consultBtn { cursor: pointer;}

+ 48 - 60
src/js/member.js

@@ -3,6 +3,9 @@ import 'bootstrap/dist/js/bootstrap.js';
 import '../css/public.css';
 import '../css/member.css';
 import './public.js';
+import {
+    message
+} from './tools.js';
 
 function loadBenefit(callback) {
     $.ajax({
@@ -10,7 +13,7 @@ function loadBenefit(callback) {
         dataType: "json",
         url: globalConfig.context + "/open/html/json/member_benefit",
         success: function (data) {
-            
+            callback(data)
         },
     });
 }
@@ -26,70 +29,57 @@ function loadData(pageNo) {
             var theArr = [];
             if (data.data && data.data.length) {
                 //黄金会员
-                let thisdata = data.data[0];
-                let theBusiness = [];
-                let theCost = [];
-                for (let item in thisdata.business) {
-                    theBusiness.push('<li data-toggle="modal" data-target="#myModal" data-mouth="' + item + '" data-money="' + thisdata.cost[item] + '" data-rank="' + thisdata.memberRank + '" data-gradename="' + thisdata.gradeName + '">' + thisdata.cost[item] + '/' + item + '个月</li>')
+                let thisdata1 = data.data[0],
+                    thisdata2 = data.data[1];
+                let theBusiness1 = [],
+                    theBusiness2 = [];
+                let theCost1 = [],
+                    theCost2 = [];
+                loadBenefit((x) => {
+                    let BenefitObj = x;
+                    for (let item in thisdata1.business) {
+                        if (thisdata1.business[item] == "1") {
+                            theBusiness1.push('<p>' + BenefitObj[item] + '</p>')
+                        }
+                    };
+                    for (let item in thisdata2.business) {
+                        if (thisdata2.business[item] == "1") {
+                            theBusiness2.push('<p>' + BenefitObj[item] + '</p>')
+                        }
+                    };
+                    $('#member1business').append(theBusiness1.join(''));
+                    $('#member2business').append(theBusiness2.join(''));
+                });
+                for (let item in thisdata1.cost) {
+                    theCost1.push('<li data-mouth="' + item + '" data-money="' + thisdata1.cost[item] + '" data-rank="' + thisdata1.memberRank + '" data-gradename="' + thisdata1.gradeName + '">' + thisdata1.cost[item] + '/' + item + '个月</li>')
                 };
-                for (let item in thisdata.cost) {
-                    theCost.push('<li data-toggle="modal" data-target="#myModal" data-mouth="' + item + '" data-money="' + thisdata.cost[item] + '" data-rank="' + thisdata.memberRank + '" data-gradename="' + thisdata.gradeName + '">' + thisdata.cost[item] + '/' + item + '个月</li>')
+                for (let item in thisdata2.cost) {
+                    theCost2.push('<li data-mouth="' + item + '" data-money="' + thisdata2.cost[item] + '" data-rank="' + thisdata2.memberRank + '" data-gradename="' + thisdata2.gradeName + '">' + thisdata2.cost[item] + '/' + item + '个月</li>')
                 };
-                $('#member1cost').append(theCost.join(''));
+                $('#member1cost').append(theCost1.join(''));
+                $('#member2cost').append(theCost2.join(''));
 
-                for (let i = 0; i < data.data.length; i++) {
-                    let thisdata = data.data[i];
-                    let theCost = [];
-                    for (let item in thisdata.cost) {
-                        theCost.push('<p><a class="toCostLink" href="" data-toggle="modal" data-target="#myModal" data-mouth="' + item + '" data-money="' + thisdata.cost[item] + '" data-rank="' + thisdata.memberRank + '" data-gradename="' + thisdata.gradeName + '">' + thisdata.cost[item] + '/' + item + '月</a></p>')
-                    };
-                    theArr.push([
-                        '<li style="width:' + thewidth + '">',
-                        '<div>',
-                        '<div class="level">',
-                        '<img src="' + globalConfig.avatarUploadHost + "/rank/level_" + thisdata.memberRank + '.png" alt="">',
-                        thisdata.gradeName,
-                        '</div>',
-                        '<div class="top">',
-                        '<i class="topImg"></i>',
-                        '<span>提供的专属服务</span>',
-                        '</div>',
-                        '<div class="server">',
-                        thisdata.business && thisdata.business['1001'] == 1 ? '<p>科技成果,专家信息定点推送</p>' : '',
-                        thisdata.business && thisdata.business['1002'] == 1 ? '<p>查看专家的联系方式</p>' : '',
-                        thisdata.business && thisdata.business['1003'] == 1 ? '<p>任何业务申请,付费业享受会员专属折扣。</p>' : '',
-                        thisdata.business && thisdata.business['1004'] == 1 ? '<p>一对一的技术经纪人服务,进行技术成果媒合服务</p>' : '',
-                        thisdata.business && thisdata.business['1005'] == 1 ? '<p>一对一的科技咨询师服务</p>' : '',
-                        thisdata.business && thisdata.business['1006'] == 1 ? '<p>一对一的专业技术顾问,搜集技术情报,提供研发高参</p>' : '',
-                        thisdata.business && thisdata.business['1007'] == 1 ? '<p>免费参加现场业务培训会</p>' : '',
-                        thisdata.business && thisdata.business['1008'] == 1 ? '<p>免前期费用做科技类扶持资金项目申报</p>' : '',
-                        '</div>',
-                        '<div class="money">',
-                        theCost.join(''),
-                        '</div>',
-                        '</div>',
-                        '</li>'
-                    ].join(''));
-                };
             } else {
-                $('#msg').val(data.error[0].message);
-                msg();
+                message(data.error[0].message);
             };
-            $('#member-list').empty();
-            $('#member-list').append(theArr.join(''));
 
-            $('.toCostLink').on('click', function (e) {
+            $('.member_on ul').on('click', 'li', function (e) {
                 e.preventDefault();
                 if (userData && userData.mobile) {
-                    mouth = this.dataset.mouth;
-                    money = this.dataset.money;
-                    rank = this.dataset.rank;
-                    gradeName = this.dataset.gradename;
-                    $('#modal-content').append("确认提交 " + money + " 元/ " + mouth + " 月的 " + gradeName + " 订单吗?");
+                    if (userData.lvl > 0) {
+                        mouth = this.dataset.mouth;
+                        money = this.dataset.money;
+                        rank = this.dataset.rank;
+                        gradeName = this.dataset.gradename;
+                        $('#modal-content').append("确认提交 " + money + " 元/ " + mouth + " 月的 " + gradeName + " 订单吗?");
+                        $('#myModal').modal('show');
+                    } else {
+                        message('请先进行实名认证,通过以后才能申请高级会员!');
+                        setTimeout("window.location.href = globalConfig.context + '/user/account/index.html#normal'", 3000);
+                        return;
+                    }
                 } else {
-                    $('#msg').val('获取用户信息失败,请重新登录!');
-                    msg();
-                    setTimeout("window.location.href = globalConfig.context + '/user/login.html'", 3000);
+                    $('.login').fadeIn(800)
                 }
             });
 
@@ -106,11 +96,9 @@ function loadData(pageNo) {
                     },
                     success: function (data) {
                         if (data.error && data.error.length) {
-                            $('#msg').val(data.error[0].message);
-                            msg();
+                            message(data.error[0].message);
                         } else {
-                            $('#msg').val('提交会员服务订单成功!');
-                            msg();
+                            message('提交会员服务订单成功!');
                             setTimeout("window.location.href = globalConfig.context + '/user/account/index.html#serviceList'", 3000);
                         }
                     },

+ 57 - 2
src/js/thinkTank/thinkerDetail.js

@@ -1,7 +1,62 @@
 import '../../css/bootstrap.less';
 import 'bootstrap/dist/js/bootstrap.js';
 import '../../css/public.css';
-import '../../css/main_banner.css';
 import '../../js/public.js';
-import '../../js/main_banner.js';
 import '../../css/thinkTank/thinkerDetail.css';
+import {
+    message
+} from '../tools.js';
+
+var addConsultorder = function () {
+    let userId = $('#userId').val();
+    $.ajax({
+        method: "post",
+        dataType: "json",
+        crossDomain: false,
+        url: globalConfig.context + '/api/user/consultorder/add',
+        data: {
+            toUserId: userId
+        },
+        success: function (data) {
+            if (data.error && data.error.length) {
+                message(data.error[0].message);
+            } else {
+                message('提交会员服务订单成功!');
+                setTimeout("window.location.href = globalConfig.context + '/user/account/index.html#consultList'", 3000);
+            };
+        }.bind(this),
+    });
+};
+var consultClick = function () {
+    $.ajax({
+        method: "get",
+        dataType: "json",
+        url: globalConfig.context + "/api/user/consultorder/price"
+    }).done(function (data) {
+        if (data.error && data.error.length) {
+            message(data.error[0].message);
+        } else {
+            $('#modal-content').empty();
+            $('#modal-content').append("预约该专家的线下咨询需要支付 " + data.data + " 元的咨询费,是否确认提交预约订单?");
+            $('#myModal').modal('show');
+        }
+    });
+};
+
+$(function () {
+    $('#consultBtn').click(function () {
+        if (userData && userData.mobile) {
+            if (userData.lvl > 0) {
+                consultClick()
+            } else {
+                message('请先进行实名认证,通过以后才能申请高级会员!');
+                setTimeout("window.location.href = globalConfig.context + '/user/account/index.html#normal'", 3000);
+            }
+        } else {
+            $('.login').fadeIn(800)
+        }
+    });
+    $('#submitOrder').click(function () {
+        addConsultorder()
+    });
+})

+ 9 - 0
src/js/tools.js

@@ -0,0 +1,9 @@
+module.exports = {
+    message(text) {
+        $('.message span').html(text);
+        $(".message").fadeToggle("slow");
+        setTimeout(function () {
+            $(".message").fadeOut()
+        }, 3000);
+    }
+}

+ 1 - 1
webpack.config.js

@@ -167,7 +167,7 @@ module.exports = (function () {
             staticHost = 'http://static.jishutao.com';
             break;
         case 'stage':
-            staticHost = 'http://aftts.hnzhiming.com';
+            staticHost = 'http://afts.hnzhiming.com';
             break;
         case 'prod':
             staticHost = 'http://s.jishutao.com';

+ 6 - 6
webpack/entry.config.js

@@ -11,7 +11,7 @@ module.exports = {
         'technologyTrading/achievement': './src/js/technologyTrading/achievement.js',
         'technologyTrading/demand': './src/js/technologyTrading/demand.js',
         'technologyTrading/achievementDetail': './src/js/technologyTrading/achievementDetail.js',
-        'technologyTrading/demandDetail': './src/js/technologyTrading/demandDetail.js',        
+        'technologyTrading/demandDetail': './src/js/technologyTrading/demandDetail.js',
         'thinkTank/policyDetail': './src/js/thinkTank/policyDetail.js',
         'thinkTank/policyList': './src/js/thinkTank/policyList.js',
         'thinkTank/thinkerDetail': './src/js/thinkTank/thinkerDetail.js',
@@ -26,9 +26,9 @@ module.exports = {
             './src/js/index.js'
         ],
         'toPayment': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
-        'webpack/hot/only-dev-server',
-        './src/js/toPayment.js'
-    ],
+            'webpack/hot/only-dev-server',
+            './src/js/toPayment.js'
+        ],
         'service': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/service.js'
@@ -68,7 +68,7 @@ module.exports = {
         'technologyTrading/demandDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/technologyTrading/demandDetail.js'
-        ],      
+        ],
         'thinkTank/policyDetail': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port
             'webpack/hot/only-dev-server',
             './src/js/thinkTank/policyDetail.js'
@@ -99,4 +99,4 @@ module.exports = {
         ]
 
     }
-};
+};