Browse Source

资源修改

jack 7 years ago
parent
commit
02e6c7f6d3

+ 16 - 10
cmp-portal/js/resourceIssue.js

200
	/*关键词*/
200
	/*关键词*/
201
	$("#keywordName").bind({
201
	$("#keywordName").bind({
202
		focus: function() {
202
		focus: function() {
203
			$("#keywordPrompt").show();
203
			$("#keywordPrompt").show().text('最多可添加5个关键词、每个关键词最多10个字');
204
			$("#keyList").show();
204
			$("#keyList").show();
205
		},
205
		},
206
		blur: function() {
206
		blur: function() {
219
					"success": function(data) {
219
					"success": function(data) {
220
						console.log(data);
220
						console.log(data);
221
						if(data.success) {
221
						if(data.success) {
222
							if(data.data == null) {
222
							if(data.data.length==0) {
223
								$("#keyList ul").html("");
223
								$("#keyList ul").html("");
224
							} else {
224
							} else {
225
								var oSr = "";
225
								var oSr = "";
226
								for(var i = 0; i < data.data.length; i++) {
226
								for(var i = 0; i < data.data.length; i++) {
227
									oSr += '<li><p class="h2Font">' + data.data[i].name + '</p></li>'
227
									oSr += '<li><p class="h2Font">' + data.data[i].caption + '</p></li>'
228
								}
228
								}
229
								$("#department ul").html(oSr);
229
								$("#keyList ul").html(oSr);
230
							}
230
							}
231
						}
231
						}
232
					},
232
					},
233
					"data": {
233
					"data": {
234
						"key": $(this).val(),
235
						rows: 3
234
						"key": $(this).val()
236
					},
235
					},
237
					dataType: "json",
236
					dataType: "json",
238
					'error': function() {
237
					'error': function() {
242
			}
241
			}
243
		}
242
		}
244
	})
243
	})
244
	$("#keyList ul").on("click","li",function(){
245
		 keyWord($(this).find("p").text());
246
		 $("#keyList ul").html("");
247
	})
245
	/*添加关键词*/
248
	/*添加关键词*/
246
	$("#addKeyword").click(function() {
249
	$("#addKeyword").click(function() {
247
		var oKeywordName = $("#keywordName").val();
250
		 keyWord($("#keywordName").val());
251
	})
252
	function keyWord(atl) {
253
		var oKeywordName = atl;
248
		var keywordListLength = $("#keywordList").find("li");
254
		var keywordListLength = $("#keywordList").find("li");
249
		if(oKeywordName.length == 0) {
255
		if(oKeywordName.length == 0) {
250
			$.MsgBox.Alert('提示', '关键词输入不能为空');
256
			$("#keywordPrompt").text('关键词输入不能为空');
251
			return;
257
			return;
252
		}
258
		}
253
		for(var i = 0; i < keywordListLength.length; i++) {
259
		for(var i = 0; i < keywordListLength.length; i++) {
254
			if(oKeywordName == keywordListLength.find("p").eq(i).text()) {
260
			if(oKeywordName == keywordListLength.find("p").eq(i).text()) {
255
				$.MsgBox.Alert('提示', '该关键词已存在');
261
				$("#keywordPrompt").text('该关键词已存在');
256
				return;
262
				return;
257
			}
263
			}
258
		}
264
		}
262
		if((keywordListLength.length + 1) == 5) {
268
		if((keywordListLength.length + 1) == 5) {
263
			$("#keywordHide").hide();
269
			$("#keywordHide").hide();
264
		}
270
		}
265
	})
271
	}
266
	/*删除关键词*/
272
	/*删除关键词*/
267
	$("#keywordList").on("click", ".closeThis", function() {
273
	$("#keywordList").on("click", ".closeThis", function() {
268
		$(this).parent().remove();
274
		$(this).parent().remove();

+ 1 - 1
cmp-portal/js/resourceList.js

6
		var resourceNameVa=$("#resouceName").val();
6
		var resourceNameVa=$("#resouceName").val();
7
		var $info={};
7
		var $info={};
8
		$info.orgId=id;
8
		$info.orgId=id;
9
		$info.pageSize=3;
9
		$info.pageSize=10;
10
		if(resourceNameVa !="") {
10
		if(resourceNameVa !="") {
11
			$info.key=resourceNameVa;
11
			$info.key=resourceNameVa;
12
		}
12
		}

+ 1 - 0
js/attention-list.js

61
			dataType: 'json', //数据格式类型
61
			dataType: 'json', //数据格式类型
62
			type: 'get', //http请求类型
62
			type: 'get', //http请求类型
63
			success: function(data) {
63
			success: function(data) {
64
				console.log(data);
64
				$("#resources").html("");
65
				$("#resources").html("");
65
				if(data.success && data.data.data != "") {
66
				if(data.success && data.data.data != "") {
66
					var datalistd = data.data.data;
67
					var datalistd = data.data.data;

+ 1 - 1
js/resourceImport.js

7
		var resourceNameVa=$("#resouceName").val();
7
		var resourceNameVa=$("#resouceName").val();
8
		var $info={};
8
		var $info={};
9
		$info.professorId=userid;
9
		$info.professorId=userid;
10
		$info.pageSize=3;
10
		$info.pageSize=10;
11
		if(resourceNameVa !="") {
11
		if(resourceNameVa !="") {
12
			$info.key=resourceNameVa;
12
			$info.key=resourceNameVa;
13
		}
13
		}

+ 17 - 11
js/resourceIssue.js

205
	/*关键词*/
205
	/*关键词*/
206
	$("#keywordName").bind({
206
	$("#keywordName").bind({
207
		focus: function() {
207
		focus: function() {
208
			$("#keywordPrompt").show();
208
			$("#keywordPrompt").show().text('最多可添加5个关键词、每个关键词最多10个字');
209
			$("#keyList").show();
209
			$("#keyList").show();
210
		},
210
		},
211
		blur: function() {
211
		blur: function() {
212
			$("#keywordPrompt").hide();
212
			$("#keywordPrompt").text('');
213
			setTimeout(function(){
213
			setTimeout(function(){
214
				$("#keyList").show();
214
				$("#keyList").show();
215
			},200)
215
			},200)
224
					"success": function(data) {
224
					"success": function(data) {
225
						console.log(data);
225
						console.log(data);
226
						if(data.success) {
226
						if(data.success) {
227
							if(data.data==null) {
227
							if(data.data.length==0) {
228
								$("#keyList ul").html("");
228
								$("#keyList ul").html("");
229
							}else{
229
							}else{
230
								var oSr="";
230
								var oSr="";
231
								for(var i=0;i<data.data.length;i++) {
231
								for(var i=0;i<data.data.length;i++) {
232
									oSr+='<li><p class="h2Font">'+data.data[i].name+'</p></li>'
232
									oSr+='<li><p class="h2Font">'+data.data[i].caption+'</p></li>'
233
								}
233
								}
234
								$("#department ul").html(oSr);
234
								$("#keyList ul").html(oSr);
235
							}
235
							}
236
						}
236
						}
237
					},
237
					},
238
					"data": {
238
					"data": {
239
						"key":$(this).val(),
240
						rows: 3
239
						"key":$(this).val()
241
					},
240
					},
242
					dataType: "json",
241
					dataType: "json",
243
					'error':function() {
242
					'error':function() {
246
			});
245
			});
247
			}
246
			}
248
		}
247
		}
248
	});
249
	$("#keyList ul").on("click","li",function(){
250
		 keyWord($(this).find("p").text());
251
		 $("#keyList ul").html("");
249
	})
252
	})
250
	/*添加关键词*/
253
	/*添加关键词*/
251
	$("#addKeyword").click(function() {
254
	$("#addKeyword").click(function() {
252
		var oKeywordName = $("#keywordName").val();
255
		 keyWord($("#keywordName").val());
256
	})
257
	function keyWord(atl) {
258
		var oKeywordName = atl;
253
		var keywordListLength = $("#keywordList").find("li");
259
		var keywordListLength = $("#keywordList").find("li");
254
		if(oKeywordName.length == 0) {
260
		if(oKeywordName.length == 0) {
255
			$.MsgBox.Alert('提示', '关键词输入不能为空');
261
			$("#keywordPrompt").text('关键词输入不能为空');
256
			return;
262
			return;
257
		}
263
		}
258
		for(var i = 0; i < keywordListLength.length; i++) {
264
		for(var i = 0; i < keywordListLength.length; i++) {
259
			if(oKeywordName == keywordListLength.find("p").eq(i).text()) {
265
			if(oKeywordName == keywordListLength.find("p").eq(i).text()) {
260
				$.MsgBox.Alert('提示', '该关键词已存在');
266
				$("#keywordPrompt").text('该关键词已存在');
261
				return;
267
				return;
262
			}
268
			}
263
		}
269
		}
267
		if((keywordListLength.length + 1) == 5) {
273
		if((keywordListLength.length + 1) == 5) {
268
			$("#keywordHide").hide();
274
			$("#keywordHide").hide();
269
		}
275
		}
270
	})
276
	}
271
	/*删除关键词*/
277
	/*删除关键词*/
272
	$("#keywordList").on("click", ".closeThis", function() {
278
	$("#keywordList").on("click", ".closeThis", function() {
273
		$(this).parent().remove();
279
		$(this).parent().remove();

+ 1 - 1
js/resourceList.js

7
		var resourceNameVa=$("#resouceName").val();
7
		var resourceNameVa=$("#resouceName").val();
8
		var $info={};
8
		var $info={};
9
		$info.professorId=userid;
9
		$info.professorId=userid;
10
		$info.pageSize=3;
10
		$info.pageSize=10;
11
		if(resourceNameVa !="") {
11
		if(resourceNameVa !="") {
12
			$info.key=resourceNameVa;
12
			$info.key=resourceNameVa;
13
		}
13
		}