瀏覽代碼

资源修改

jack 7 年之前
父節點
當前提交
02e6c7f6d3
共有 6 個文件被更改,包括 37 次插入24 次删除
  1. 16 10
      cmp-portal/js/resourceIssue.js
  2. 1 1
      cmp-portal/js/resourceList.js
  3. 1 0
      js/attention-list.js
  4. 1 1
      js/resourceImport.js
  5. 17 11
      js/resourceIssue.js
  6. 1 1
      js/resourceList.js

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

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

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

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

+ 1 - 0
js/attention-list.js

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

+ 1 - 1
js/resourceImport.js

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

+ 17 - 11
js/resourceIssue.js

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

+ 1 - 1
js/resourceList.js

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