rmpropertyedit.js 8.4 KB
Newer Older
doc_wei's avatar
doc_wei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
layui.config({
	base: basePath, 
	version: skyeyeVersion
}).extend({
    window: 'js/winui.window'
}).define(['window', 'jquery', 'winui', 'codemirror', 'xml', 'clike', 'css', 'htmlmixed', 'javascript', 'nginx', 'solr', 'sql', 'vue'], function (exports) {
	winui.renderColor();
	layui.use(['form'], function (form) {
		var index = parent.layer.getFrameIndex(window.name);
	    var $ = layui.$,
	    	form = layui.form;
	    var htmlModelContent, jsModelContent, htmlContent, jsContent, jsRelyOnContent;
	    
		showGrid({
		 	id: "showForm",
16
		 	url: sysMainMation.rmprogramBasePath + "rmproperty004",
doc_wei's avatar
doc_wei 已提交
17 18 19
		 	params: {rowId: parent.rowId},
		 	pagination: false,
		 	template: getFileContent('tpl/rmproperty/rmpropertyeditTemplate.tpl'),
W
weizhiqiang 已提交
20
		 	ajaxSendLoadBefore: function(hdb) {
doc_wei's avatar
doc_wei 已提交
21
		 	},
W
weizhiqiang 已提交
22
		 	ajaxSendAfter:function (json) {
doc_wei's avatar
doc_wei 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
		 		
		 		htmlModelContent = CodeMirror.fromTextArea(document.getElementById("htmlModelContent"), {
		            mode : "xml",  // 模式
		            theme : "eclipse",  // CSS样式选择
		            indentUnit : 4,  // 缩进单位,默认2
		            smartIndent : true,  // 是否智能缩进
		            tabSize : 4,  // Tab缩进,默认4
		            readOnly : true,  // 是否只读,默认false
		            showCursorWhenSelecting : true,
		            lineNumbers : true,  // 是否显示行号
		            styleActiveLine: true, //line选择是是否加亮
		            matchBrackets: true,
		        });
		      	
		      	jsModelContent = CodeMirror.fromTextArea(document.getElementById("jsModelContent"), {
		            mode : "text/javascript",  // 模式
		            theme : "eclipse",  // CSS样式选择
		            indentUnit : 4,  // 缩进单位,默认2
		            smartIndent : true,  // 是否智能缩进
		            tabSize : 4,  // Tab缩进,默认4
		            readOnly : true,  // 是否只读,默认false
		            showCursorWhenSelecting : true,
		            lineNumbers : true,  // 是否显示行号
		            styleActiveLine: true, //line选择是是否加亮
		            matchBrackets: true,
		        });
		      	
		      	htmlContent = CodeMirror.fromTextArea(document.getElementById("htmlContent"), {
		            mode : "xml",  // 模式
		            theme : "eclipse",  // CSS样式选择
		            indentUnit : 4,  // 缩进单位,默认2
		            smartIndent : true,  // 是否智能缩进
		            tabSize : 4,  // Tab缩进,默认4
		            readOnly : false,  // 是否只读,默认false
		            showCursorWhenSelecting : true,
		            lineNumbers : true,  // 是否显示行号
		            styleActiveLine: true, //line选择是是否加亮
		            matchBrackets: true,
		        });
		      	
		      	jsContent = CodeMirror.fromTextArea(document.getElementById("jsContent"), {
		            mode : "text/javascript",  // 模式
		            theme : "eclipse",  // CSS样式选择
		            indentUnit : 4,  // 缩进单位,默认2
		            smartIndent : true,  // 是否智能缩进
		            tabSize : 4,  // Tab缩进,默认4
		            readOnly : false,  // 是否只读,默认false
		            showCursorWhenSelecting : true,
		            lineNumbers : true,  // 是否显示行号
		            styleActiveLine: true, //line选择是是否加亮
		            matchBrackets: true,
		        });
		      	
		      	jsRelyOnContent = CodeMirror.fromTextArea(document.getElementById("jsRelyOnContent"), {
		            mode : "text/javascript",  // 模式
		            theme : "eclipse",  // CSS样式选择
		            indentUnit : 4,  // 缩进单位,默认2
		            smartIndent : true,  // 是否智能缩进
		            tabSize : 4,  // Tab缩进,默认4
		            readOnly : false,  // 是否只读,默认false
		            showCursorWhenSelecting : true,
		            lineNumbers : true,  // 是否显示行号
		            styleActiveLine: true, //line选择是是否加亮
		            matchBrackets: true,
		        });
		      	
		      	$("input:radio[name=propertyOut][value=" + json.bean.propertyOut + "]").prop("checked", true);
		      	$("input:radio[name=selChildData][value=" + json.bean.selChildData + "]").prop("checked", true);
		      	
		      	if(json.bean.selChildData == '1'){//是
		      		$("#dataShowModel").show();
		      		showGrid({
		    		 	id: "displayTemplateId",
doc_wei's avatar
doc_wei 已提交
96
		    		 	url: flowableBasePath + "dsformdisplaytemplate006",
doc_wei's avatar
doc_wei 已提交
97 98 99
		    		 	params: {},
		    		 	pagination: false,
		    		 	template: getFileContent('tpl/template/select-option.tpl'),
W
weizhiqiang 已提交
100
		    		 	ajaxSendLoadBefore: function(hdb) {
doc_wei's avatar
doc_wei 已提交
101 102 103 104 105 106
		    		 	},
		    		 	ajaxSendAfter:function(json1){
		    		 		$("#displayTemplateId").val(json.bean.displayTemplateId);
		    		 		form.render('select');
		    		 	}
		    		});
doc_wei's avatar
doc_wei 已提交
107
		      	} else {
doc_wei's avatar
doc_wei 已提交
108 109 110 111 112 113 114 115 116 117
		      		$("#dataShowModel").hide();
		      	}
		 		
		 		//子查询变化
		 		form.on('radio(selChildData)', function (data) {
		 			var val = data.value;
			    	if(val == '1'){//是
			    		$("#dataShowModel").show();
			    		showGrid({
			    		 	id: "displayTemplateId",
doc_wei's avatar
doc_wei 已提交
118
			    		 	url: flowableBasePath + "dsformdisplaytemplate006",
doc_wei's avatar
doc_wei 已提交
119 120 121
			    		 	params: {},
			    		 	pagination: false,
			    		 	template: getFileContent('tpl/template/select-option.tpl'),
W
weizhiqiang 已提交
122
			    		 	ajaxSendLoadBefore: function(hdb) {
doc_wei's avatar
doc_wei 已提交
123
			    		 	},
W
weizhiqiang 已提交
124
			    		 	ajaxSendAfter:function (json) {
doc_wei's avatar
doc_wei 已提交
125 126 127
			    		 		form.render('select');
			    		 	}
			    		});
W
weizhiqiang 已提交
128
			    	} else if (val == '2'){//否
doc_wei's avatar
doc_wei 已提交
129
			    		$("#dataShowModel").hide();
doc_wei's avatar
doc_wei 已提交
130
			    	} else {
doc_wei's avatar
doc_wei 已提交
131
			    		winui.window.msg('状态值错误', {icon: 2, time: 2000});
doc_wei's avatar
doc_wei 已提交
132 133 134 135 136 137 138 139 140
			    	}
		        });
		 		
		        matchingLanguage();
		 		form.render();
		 		
		 		//展现形式
		      	showGrid({
		    	 	id: "dsFormContentId",
141
		    	 	url: flowableBasePath + "queryDsFormContentMationToShow",
doc_wei's avatar
doc_wei 已提交
142 143
		    	 	params: {},
		    	 	pagination: false,
144
					method: 'GET',
doc_wei's avatar
doc_wei 已提交
145
		    	 	template: getFileContent('tpl/template/select-option.tpl'),
W
weizhiqiang 已提交
146
		    	 	ajaxSendLoadBefore: function(hdb) {
doc_wei's avatar
doc_wei 已提交
147
		    	 	},
W
weizhiqiang 已提交
148
		    	 	ajaxSendAfter:function(data) {
doc_wei's avatar
doc_wei 已提交
149 150 151 152
		    	 		$("#dsFormContentId").val(json.bean.dsFormContentId);
		    	 		form.render('select');
		    	 	}
		        });
153 154

				// 根据类型获取部分功能的使用说明
W
weizhiqiang 已提交
155
				systemCommonUtil.queryExplainMationByType(4, function (json) {
156 157 158 159
					$("#exexplaintormpropertyTitle").html(json.bean.title);
					$("#exexplaintormpropertyContent").html(json.bean.content);
				});

W
weizhiqiang 已提交
160
              	form.on('select(selectParent)', function(data) {
161
              		AjaxPostUtil.request({url: flowableBasePath + "queryDsFormContentMationById", params: {id: data.value}, type: 'json', method: 'GET', callback: function (json) {
162 163 164 165
						htmlModelContent.setValue(json.bean.htmlContent);
						jsModelContent.setValue(json.bean.jsContent);
						htmlContent.setValue(json.bean.htmlContent);
						jsContent.setValue(json.bean.jsContent);
doc_wei's avatar
doc_wei 已提交
166 167 168 169 170 171
            		}});
				});
		 		
		 		form.on('submit(formEditBean)', function (data) {
			        if (winui.verifyForm(data.elem)) {
			        	var params = {
W
weizhiqiang 已提交
172 173 174 175
		        			title: $("#title").val(),
		        			propertyTag: $("#propertyTag").val(),
		        			propertyUnit: encodeURI($("#propertyUnit").val()),
		        			dsFormContentId: $("#dsFormContentId").val(),
doc_wei's avatar
doc_wei 已提交
176 177
		        			propertyOut:data.field.propertyOut,
		        			selChildData:data.field.selChildData,
W
weizhiqiang 已提交
178 179 180
		        			htmlContent: encodeURI(htmlContent.getValue().replace(/\+/g, "%2B").replace(/\&/g, "%26")),
		        			jsContent: encodeURI(jsContent.getValue().replace(/\+/g, "%2B").replace(/\&/g, "%26")),
		        			jsRelyOn: encodeURI(jsRelyOnContent.getValue().replace(/\+/g, "%2B").replace(/\&/g, "%26")),
doc_wei's avatar
doc_wei 已提交
181 182
		        			rowId:parent.rowId
			        	};
W
weizhiqiang 已提交
183
			        	if (data.field.selChildData == '1'){
W
weizhiqiang 已提交
184
			        		if(isNull($("#displayTemplateId").val())) {
doc_wei's avatar
doc_wei 已提交
185
			        			winui.window.msg('请选择子查询数据展示模板', {icon: 2, time: 2000});
doc_wei's avatar
doc_wei 已提交
186
			        			return false;
doc_wei's avatar
doc_wei 已提交
187
			        		} else {
doc_wei's avatar
doc_wei 已提交
188 189
			        			params.displayTemplateId = $("#displayTemplateId").val();
			        		}
doc_wei's avatar
doc_wei 已提交
190
			        	} else {
doc_wei's avatar
doc_wei 已提交
191 192 193
			        		params.displayTemplateId = "";
			        	}
			        	
194
			        	AjaxPostUtil.request({url: sysMainMation.rmprogramBasePath + "rmproperty005", params: params, type: 'json', callback: function (json) {
195 196
							parent.layer.close(index);
							parent.refreshCode = '0';
doc_wei's avatar
doc_wei 已提交
197 198 199 200 201 202 203 204
			 	   		}});
			        }
			        return false;
			    });
		 		
		 	}
	    });
		
W
weizhiqiang 已提交
205
	    // 取消
doc_wei's avatar
doc_wei 已提交
206
	    $("body").on("click", "#cancle", function() {
doc_wei's avatar
doc_wei 已提交
207 208 209 210 211 212
	    	parent.layer.close(index);
	    });
	    
	});
	    
});