rmpropertyedit.js 8.5 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
		    		 	params: {},
		    		 	pagination: false,
99
						method: 'GET',
doc_wei's avatar
doc_wei 已提交
100
		    		 	template: getFileContent('tpl/template/select-option.tpl'),
W
weizhiqiang 已提交
101
		    		 	ajaxSendLoadBefore: function(hdb) {
doc_wei's avatar
doc_wei 已提交
102 103 104 105 106 107
		    		 	},
		    		 	ajaxSendAfter:function(json1){
		    		 		$("#displayTemplateId").val(json.bean.displayTemplateId);
		    		 		form.render('select');
		    		 	}
		    		});
doc_wei's avatar
doc_wei 已提交
108
		      	} else {
doc_wei's avatar
doc_wei 已提交
109 110 111 112 113 114 115 116 117 118
		      		$("#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 已提交
119
			    		 	url: flowableBasePath + "dsformdisplaytemplate006",
doc_wei's avatar
doc_wei 已提交
120 121
			    		 	params: {},
			    		 	pagination: false,
122
							method: 'GET',
doc_wei's avatar
doc_wei 已提交
123
			    		 	template: getFileContent('tpl/template/select-option.tpl'),
W
weizhiqiang 已提交
124
			    		 	ajaxSendLoadBefore: function(hdb) {
doc_wei's avatar
doc_wei 已提交
125
			    		 	},
W
weizhiqiang 已提交
126
			    		 	ajaxSendAfter:function (json) {
doc_wei's avatar
doc_wei 已提交
127 128 129
			    		 		form.render('select');
			    		 	}
			    		});
W
weizhiqiang 已提交
130
			    	} else if (val == '2'){//否
doc_wei's avatar
doc_wei 已提交
131
			    		$("#dataShowModel").hide();
doc_wei's avatar
doc_wei 已提交
132
			    	} else {
doc_wei's avatar
doc_wei 已提交
133
			    		winui.window.msg('状态值错误', {icon: 2, time: 2000});
doc_wei's avatar
doc_wei 已提交
134 135 136 137 138 139 140 141 142
			    	}
		        });
		 		
		        matchingLanguage();
		 		form.render();
		 		
		 		//展现形式
		      	showGrid({
		    	 	id: "dsFormContentId",
143
		    	 	url: flowableBasePath + "queryDsFormContentMationToShow",
doc_wei's avatar
doc_wei 已提交
144 145
		    	 	params: {},
		    	 	pagination: false,
146
					method: 'GET',
doc_wei's avatar
doc_wei 已提交
147
		    	 	template: getFileContent('tpl/template/select-option.tpl'),
W
weizhiqiang 已提交
148
		    	 	ajaxSendLoadBefore: function(hdb) {
doc_wei's avatar
doc_wei 已提交
149
		    	 	},
W
weizhiqiang 已提交
150
		    	 	ajaxSendAfter:function(data) {
doc_wei's avatar
doc_wei 已提交
151 152 153 154
		    	 		$("#dsFormContentId").val(json.bean.dsFormContentId);
		    	 		form.render('select');
		    	 	}
		        });
155 156

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

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