|
|
@@ -38,26 +38,29 @@ function Ajax() {
|
|
38
|
38
|
$("#companyName").text(result.F_CompanyName); //公司名称
|
|
39
|
39
|
$("#customerCode").text(result.F_CustomerCode); //公司编号
|
|
40
|
40
|
$("#companyAddress").text(result.F_CompanyAddress); //公司地址
|
|
41
|
|
- if (result.F_CycleStart) {
|
|
42
|
|
- $("#cycleTime").text(result.F_CycleStart+"-"+result.F_CycleEnd); //服务周期
|
|
43
|
|
- }else{
|
|
44
|
|
- $("#cycleTime").text("暂无"); //代理费到期日期
|
|
45
|
|
- }
|
|
|
41
|
+
|
|
|
42
|
+ $("#cycleTime").text(result.F_Cycle); //服务周期
|
|
|
43
|
+// if (result.F_CycleStart) {
|
|
|
44
|
+// $("#cycleTime").text(result.F_CycleStart+"-"+result.F_CycleEnd); //服务周期
|
|
|
45
|
+// }else{
|
|
|
46
|
+// $("#cycleTime").text("暂无"); //代理费到期日期
|
|
|
47
|
+// }
|
|
46
|
48
|
if (result.F_FeeExpires) {
|
|
47
|
49
|
$("#feeExpires").text(result.F_FeeExpires); //代理费到期日期
|
|
48
|
50
|
}else{
|
|
49
|
51
|
$("#feeExpires").text("暂无"); //代理费到期日期
|
|
50
|
52
|
}
|
|
51
|
|
- if (result.F_ChargeType==1) {
|
|
52
|
|
- ChargeType="月度"
|
|
53
|
|
- } else if(result.F_ChargeType==2){
|
|
54
|
|
- ChargeType="季度"
|
|
55
|
|
- }else if(result.F_ChargeType==3){
|
|
56
|
|
- ChargeType="年度"
|
|
57
|
|
- }else{
|
|
58
|
|
- ChargeType="暂无"
|
|
59
|
|
- }
|
|
60
|
|
- $("#chargeType").text(ChargeType); //收费标准
|
|
|
53
|
+// if (result.F_ChargeType==1) {
|
|
|
54
|
+// ChargeType="月度"
|
|
|
55
|
+// } else if(result.F_ChargeType==2){
|
|
|
56
|
+// ChargeType="季度"
|
|
|
57
|
+// }else if(result.F_ChargeType==3){
|
|
|
58
|
+// ChargeType="年度"
|
|
|
59
|
+// }else{
|
|
|
60
|
+// ChargeType="暂无"
|
|
|
61
|
+// }
|
|
|
62
|
+// $("#chargeType").text(ChargeType); //收费标准
|
|
|
63
|
+ $("#chargeType").text(result.F_FeeStandard); //收费标准
|
|
61
|
64
|
|
|
62
|
65
|
},
|
|
63
|
66
|
error: function(xhr, type, errorThrown) {
|