xiuli.gao 6 years ago
parent
commit
b60b644857

+ 1 - 1
fund_h5_01/choose_city.html

@@ -6,7 +6,7 @@
6 6
     <title>选择城市</title>
7 7
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
8 8
     <link rel="stylesheet" href="./css/reset.css?vv=10">
9
-    <link rel="stylesheet" href="./css/choose_city.css?vv=13">
9
+    <link rel="stylesheet" href="./css/choose_city.css?vv=14">
10 10
     <link rel="stylesheet" href="./css/choice_city.css?v=10">
11 11
     <script src="./js/jquery.min.js"></script>
12 12
     <div style="display: none;">

+ 1 - 0
fund_h5_01/css/choose_city.css

@@ -248,6 +248,7 @@ nav p {
248 248
     z-index: 10;
249 249
     padding-top:0.1rem ;
250 250
     background: #F3F3F3;
251
+    border-bottom: 0.02rem solid #F3F3F3;
251 252
 }
252 253
 .search{
253 254
     height: 0.5rem;

+ 1 - 1
fund_h5_01/fund_h5_api.html

@@ -108,7 +108,7 @@
108 108
     </div>
109 109
     <script src="./js/auto_size.js"></script>
110 110
     <script src="./js/tips.js?v=2"></script>
111
-    <script src="./js/fund_h5_api.js?v=23"></script>
111
+    <script src="./js/fund_h5_api.js?v=24"></script>
112 112
 </body>
113 113
 
114 114
 </html>

+ 16 - 0
fund_h5_01/js/fund_h5_api.js

@@ -591,6 +591,14 @@ function checkTaskStatus(tid) {
591 591
     getting.done(function(task) {
592 592
         if (task.status === 'done') {
593 593
         	console.log("成功")
594
+        	$.ajax({
595
+				type:"get",
596
+				url: returnUrl + token +"&tid=" + tid + "&city=" + qs.name,
597
+				dataType:'json',
598
+				success: function (res) {
599
+					console.log(res)
600
+				}
601
+			})
594 602
             process.stop(100);
595 603
             $("#tid").val('');
596 604
             showLoading(false);
@@ -626,6 +634,14 @@ function checkTaskStatus(tid) {
626 634
 
627 635
         if (task.status == "suspended") {
628 636
         	console.log("填写有误")
637
+        	$.ajax({
638
+				type:"get",
639
+				url: returnUrl + token +"&tid=" + tid + "&city=" + qs.name,
640
+				dataType:'json',
641
+				success: function (res) {
642
+					console.log(res)
643
+				}
644
+			})
629 645
             process.stop(0);
630 646
             showLoading(false);
631 647
             enableCommitButton(false);