zhaomin лет назад: 4
Родитель
Сommit
a83620506e

+ 9 - 0
CallCenterWeb.UI/.project

@@ -123,5 +123,14 @@
123 123
 				<arguments>1.0-name-matches-false-false-node_modules</arguments>
124 124
 			</matcher>
125 125
 		</filter>
126
+		<filter>
127
+			<id>1625706589579</id>
128
+			<name></name>
129
+			<type>26</type>
130
+			<matcher>
131
+				<id>org.eclipse.ui.ide.multiFilter</id>
132
+				<arguments>1.0-name-matches-false-false-node_modules</arguments>
133
+			</matcher>
134
+		</filter>
126 135
 	</filteredResources>
127 136
 </projectDescription>

+ 2 - 0
CallCenterWeb.UI/commonTpl/companyNameOrderDetails.html

@@ -39,6 +39,7 @@
39 39
 						<tr>
40 40
 							<th data-field="Operator" data-align="center">操作人</th>
41 41
 							<th data-field="WarehousingDate" data-align="center">操作时间</th>
42
+							<th data-field="Warehousing" data-align="center">操作内容</th>
42 43
 							<th data-field="remark" data-align="center">备注</th>
43 44
 							<th data-field="fieldId" data-align="center" data-formatter="formatterPhoto">照片</th>
44 45
 						</tr>
@@ -51,6 +52,7 @@
51 52
 						<tr>
52 53
 							<th data-field="Operator" data-align="center">操作人</th>
53 54
 							<th data-field="WarehousingDate" data-align="center">操作时间</th>
55
+							<th data-field="Warehousing" data-align="center">操作内容</th>
54 56
 							<th data-field="remark" data-align="center">备注</th>
55 57
 							<th data-field="fieldId" data-align="center" data-formatter="formatterPhoto">照片</th>
56 58
 						</tr>

+ 3 - 1
WeChat/Script/Common/huayi.config.js

@@ -2,7 +2,9 @@
2 2
     var huayi = {};
3 3
 }
4 4
 huayi.config = {
5
-    callcenter_url: "http://117.160.143.195:4669/",//生产环境 前端Web站IP和端口
5
+   
6
+    //callcenter_url: "http://117.160.143.195:4669/",//生产环境 前端Web站IP和端口
7
+    callcenter_url: "http://192.168.8.9:1031/",//生产环境 前端Web站IP和端口
6 8
     //callcenter_url: "http://117.158.196.116:4617/",//生产环境 前端Web站IP和端口
7 9
 
8 10
 };

+ 2 - 1
WeChat/content/js/borrowDetail.js

@@ -33,7 +33,8 @@ $(".allot").click(function(){
33 33
 })
34 34
 function Ajax() {
35 35
 	$.ajax({
36
-		url: huayi.config.callcenter_url + 'archives/GetModelarchives',
36
+		// url: huayi.config.callcenter_url + 'archives/GetModelarchives',
37
+		url: huayi.config.callcenter_url + 'archives/GetModelarchivesNew',
37 38
 		data: {
38 39
 			id: id, //工单编号
39 40
 			openid: openid, //微信openid,

+ 4 - 2
WeChat/content/js/borrowList.js

@@ -55,7 +55,8 @@ $(function () {
55 55
 function Ajax() {
56 56
 	//$(".order").remove();
57 57
 	$.ajax({
58
-		url: huayi.config.callcenter_url + 'archives/GetList',
58
+		// url: huayi.config.callcenter_url + 'archives/GetList',
59
+		url: huayi.config.callcenter_url + 'archives/GetListByCompany',
59 60
 		data: {
60 61
 			openid: openid, //微信openid,
61 62
 //			openid: 'oXF5e1mWpX5DajW5_yjNLPKb8ThE',
@@ -71,6 +72,7 @@ function Ajax() {
71 72
 			if(data.data.rows && data.data.rows.length > 0) {
72 73
 				$(".noinfor").text("");
73 74
 				$(data.data.rows).each(function(i, n) {
75
+					console.log(n);
74 76
 					$('<li class="mui-table-view-cell">' +
75 77
 						'<div class="mui-input-row mui-checkbox mui-left">'+
76 78
 						'<input name="checkbox1" data-item="' + n.id + '" value="'+n.stateName+'" type="checkbox" class="selected"></div>'+
@@ -80,7 +82,7 @@ function Ajax() {
80 82
 						'</h4><h5>' + n.OperationDate +
81 83
 						'</h5></div>'+
82 84
 						'<div class="mui-table-cell mui-col-xs-4 mui-text-right">'+
83
-						'<span class="mui-h5">'+n.stateName+
85
+						'<span class="mui-h5">'+n.statename+
84 86
 						'</span></div></div></li>').appendTo('#OA_task');
85 87
 				});
86 88
 				//工单跳转

+ 7 - 6
WeChat/login.html

@@ -42,8 +42,8 @@
42 42
 			//var openid = helper.cookies.get("openid");
43 43
 			var menucode = helper.request.queryString("menuCode");
44 44
 			var code = helper.request.queryString("code");
45
-			var openid = helper.request.queryString("openid");
46
-			//var openid = "oXF5e1mWpX5DajW5_yjNLPKb8ThE";
45
+			//var openid = helper.request.queryString("openid");
46
+			var openid = "oXF5e1mWpX5DajW5_yjNLPKb8ThE";
47 47
 			var typeUser = helper.cookies.get("typeUser");
48 48
 			if (typeUser) {
49 49
 				typeUser = helper.cookies.get("typeUser");
@@ -80,6 +80,7 @@
80 80
 				login();
81 81
 			})
82 82
 			function login () {
83
+				debugger
83 84
 				//请求
84 85
 				$.ajax({
85 86
 					type: "post",
@@ -91,20 +92,20 @@
91 92
 						Password: $("#password").val(),
92 93
 						UserType:typeUser, 
93 94
 						openid: openid,
94
-						//openid: 'oXF5e1mWpX5DajW5_yjNLPKb8ThE', //微信openid 测试用
95
+						openid: 'oXF5e1mWpX5DajW5_yjNLPKb8ThE', //微信openid 测试用
95 96
 					},
96 97
 					success: function(data) {
97 98
 						if(data.state == "success") {
98 99
 							var UserWord=$("#password").val();
99 100
 							helper.cookies.set("typeUser", typeUser, 365);
100 101
 							helper.cookies.set("UserWord", UserWord, 365);
101
-							debugger
102
+							// debugger
102 103
 							if (openid) {
103 104
 								helper.cookies.set("openid", openid, 365);
104
-								debugger
105
+								// debugger
105 106
 								if (typeUser=="5") {
106 107
 									if(data.data.usertype==2){
107
-										debugger
108
+										// debugger
108 109
 										window.location.replace('content/AdminList.html');
109 110
 										helper.cookies.set("username", data.data.username, 7);
110 111
 									}else{