documenteditor.html 113.5 KB
Newer Older
NoSubject's avatar
NoSubject 已提交
1
<div style="background-color: #FFF; overflow: hidden">
NoSubject's avatar
NoSubject 已提交
2
	<div title="{{$.lp.base}}" class="MWFTab">
NoSubject's avatar
NoSubject 已提交
3 4
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
			<tr>
NoSubject's avatar
NoSubject 已提交
5
				<td class="editTableTitle">{{$.lp.id}}:</td>
NoSubject's avatar
NoSubject 已提交
6 7 8
				<td class="editTableValue"><input type="text" name="id" value="text{$.id}" class="editTableInput"/></td>
			</tr>
			<tr>
NoSubject's avatar
NoSubject 已提交
9
				<td class="editTableTitle">{{$.lp.name}}:</td>
NoSubject's avatar
NoSubject 已提交
10 11 12
				<td class="editTableValue"><input type="text" name="name" value="text{$.name}" class="editTableInput"/></td>
			</tr>
			<tr>
NoSubject's avatar
NoSubject 已提交
13
				<td class="editTableTitle">{{$.lp.description}}:</td>
NoSubject's avatar
NoSubject 已提交
14 15
				<td class="editTableValue"><input type="text" name="description" value="text{$.description}" class="editTableInput"/></td>
			</tr>
NoSubject's avatar
NoSubject 已提交
16
			<tr>
NoSubject's avatar
NoSubject 已提交
17
				<td class="editTableTitle">{{$.lp.delayedLoading}}:</td>
NoSubject's avatar
NoSubject 已提交
18
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
19 20
					<input type="radio" name="isDelay" value="true" text{($.isDelay)?'checked':''}/>{{$.lp.yes}}
					<input type="radio" name="isDelay" value="false" text{(!$.isDelay)?'checked':''}/>{{$.lp.no}}
NoSubject's avatar
NoSubject 已提交
21 22
				</td>
			</tr>
NoSubject's avatar
NoSubject 已提交
23
		</table>
R
roo00 已提交
24

25
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable" style="display:block">
R
roo00 已提交
26
			<tr>
NoSubject's avatar
NoSubject 已提交
27
				<td class="editTableTitle">{{$.lp.fileTemplate}}:</td>
R
roo00 已提交
28
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
29 30
					<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}documentTempleteSysArea').setStyle('display', 'block'); $('text{$.pid}documentTempleteCustomArea').setStyle('display', 'none')}" name="documentTempleteType" text{($.documentTempleteType!='cus')?'checked':''} type="radio" value="sys"/>{{$.lp.systemTemplate}}
					<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}documentTempleteSysArea').setStyle('display', 'none'); $('text{$.pid}documentTempleteCustomArea').setStyle('display', 'block')}" name="documentTempleteType" text{($.documentTempleteType=='cus')?'checked':''} type="radio" value="cus"/>{{$.lp.customTemplate}}
R
roo00 已提交
31 32 33 34 35 36 37
				</td>
			</tr>
		</table>

		<div id="text{$.pid}documentTempleteSysArea" style="display: text{($.documentTempleteType!='cus')?'block':'none'}">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
38
					<td class="editTableTitle">{{$.lp.selectTemplate}}:</td>
R
roo00 已提交
39 40 41 42 43 44
					<td class="editTableValue">
						<select class="MWFDocumentTempleteSelect" name="documentTempleteName"></select>
					</td>
				</tr>
			</table>
		</div>
45 46 47
		<div id="text{$.pid}documentTempleteCustomArea" style="display: text{($.documentTempleteType=='cus')?'block':'none'}">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
48
					<td class="editTableTitle">{{$.lp.templatePath}}:</td>
49 50 51 52 53 54
					<td class="editTableValue">
						<input type="text" name="documentTempleteUrl" value="text{$.documentTempleteUrl}" class="editTableInput"/>
					</td>
				</tr>
			</table>
		</div>
R
roo00 已提交
55

NoSubject's avatar
NoSubject 已提交
56
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
R
roo00 已提交
57
		<tr>
NoSubject's avatar
NoSubject 已提交
58
			<td class="editTableTitle">{{$.lp.edit}}:</td>
R
roo00 已提交
59
			<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
60 61 62
				<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowEditScriptArea').setStyle('display', 'none')}" name="allowEdit" text{($.allowEdit!='n' && $.allowEdit!='s')?'checked':''} type="radio" value="y"/>{{$.lp.allow}}
				<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowEditScriptArea').setStyle('display', 'none')}" name="allowEdit" text{($.allowEdit=='n')?'checked':''} type="radio" value="n"/>{{$.lp.notAllow}}
				<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowEditScriptArea').setStyle('display', 'block')}" name="allowEdit" text{($.allowEdit=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
R
roo00 已提交
63 64
			</td>
		</tr>
NoSubject's avatar
NoSubject 已提交
65
		</table>
NoSubject's avatar
NoSubject 已提交
66
		<div id="text{$.pid}allowEditScriptArea" style="display: text{($.allowEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="allowEditScript" title="{{$.lp.editScript}} (S)"></div>
R
roo00 已提交
67

R
roo00 已提交
68 69
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
		<tr>
NoSubject's avatar
NoSubject 已提交
70
			<td class="editTableTitle">{{$.lp.printFile}}:</td>
R
roo00 已提交
71
			<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
72 73 74
				<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowPrintScriptArea').setStyle('display', 'none')}" name="allowPrint" text{($.allowPrint!='n' && $.allowPrint!='s')?'checked':''} type="radio" value="y"/>{{$.lp.allow}}
				<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowPrintScriptArea').setStyle('display', 'none')}" name="allowPrint" text{($.allowPrint=='n')?'checked':''} type="radio" value="n"/>{{$.lp.notAllow}}
				<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowPrintScriptArea').setStyle('display', 'block')}" name="allowPrint" text{($.allowPrint=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
R
roo00 已提交
75 76 77
			</td>
		</tr>
		</table>
NoSubject's avatar
NoSubject 已提交
78
		<div id="text{$.pid}allowPrintScriptArea" style="display: text{($.allowPrint=='s')?'block':'none'}" class="MWFFormulaArea" name="allowPrintScript" title="{{$.lp.printScript}} (S)"></div>
79 80 81

		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
			<tr>
NoSubject's avatar
NoSubject 已提交
82
				<td class="editTableTitle">{{$.lp.viewTraces}}:</td>
83
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
84 85 86
					<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowHistoryScriptArea').setStyle('display', 'none')}" name="allowHistory" text{($.allowHistory!='n' && $.allowHistory!='s')?'checked':''} type="radio" value="y"/>{{$.lp.allow}}
					<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowHistoryScriptArea').setStyle('display', 'none')}" name="allowHistory" text{($.allowHistory=='n')?'checked':''} type="radio" value="n"/>{{$.lp.notAllow}}
					<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}allowHistoryScriptArea').setStyle('display', 'block')}" name="allowHistory" text{($.allowHistory=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
87 88 89
				</td>
			</tr>
		</table>
NoSubject's avatar
NoSubject 已提交
90 91 92 93 94 95 96 97 98 99 100 101
		<div id="text{$.pid}allowHistoryScriptArea" style="display: text{($.allowHistory=='s')?'block':'none'}" class="MWFFormulaArea" name="allowHistoryScript" title="$.lp.viewTracesScript (S)"></div>

<!--		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--			<tr>-->
<!--				<td class="editTableTitle">保留历史版本:</td>-->
<!--				<td class="editTableValue">-->
<!--					<input class="editTableRadio" name="saveHistoricalFile" text{($.saveHistoricalFile!='n')?'checked':''} type="radio" value="y"/>保存-->
<!--					<input class="editTableRadio" name="saveHistoricalFile" text{($.saveHistoricalFile=='n')?'checked':''} type="radio" value="n"/>不保存-->
<!--					<br><div>如果选择保存历史版本,如果正文内容与上一版本有差异,系统会在流转时保存一个新版本</div>-->
<!--				</td>-->
<!--			</tr>-->
<!--		</table>-->
R
roo00 已提交
102

NoSubject's avatar
NoSubject 已提交
103 104
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
			<tr>
NoSubject's avatar
NoSubject 已提交
105
				<td class="editTableTitle">{{$.lp.zoom}}:</td>
NoSubject's avatar
NoSubject 已提交
106
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
107 108 109
					<input class="editTableRadio" name="isScale" text{($.isScale=='y')?'checked':''} type="radio" value="y"/>{{$.lp.allow}}
					<input class="editTableRadio" name="isScale" text{($.isScale!='y')?'checked':''} type="radio" value="n"/>{{$.lp.notAllow}}
					<div>{{$.lp.zoomInfo}}</div>
NoSubject's avatar
NoSubject 已提交
110 111 112 113
				</td>
			</tr>
		</table>

114 115
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
			<tr>
NoSubject's avatar
NoSubject 已提交
116
				<td class="editTableTitle">{{$.lp.fullWidth}}:</td>
117
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
118 119 120
					<input class="editTableRadio" name="fullWidth" text{($.fullWidth!=='n')?'checked':''} type="radio" value="y"/>{{$.lp.yes}}
					<input class="editTableRadio" name="fullWidth" text{($.fullWidth=='n')?'checked':''} type="radio" value="n"/>{{$.lp.no}}
					<div>{{$.lp.fullWidthInfo}}</div>
121 122 123
				</td>
			</tr>
		</table>
124 125
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
			<tr>
NoSubject's avatar
NoSubject 已提交
126
				<td class="editTableTitle">{{$.lp.paragraphIndent}}:</td>
127
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
128 129 130
					<input class="editTableRadio" name="textIndent" text{($.textIndent!=='n')?'checked':''} type="radio" value="y"/>{{$.lp.yes}}
					<input class="editTableRadio" name="textIndent" text{($.textIndent=='n')?'checked':''} type="radio" value="n"/>{{$.lp.no}}
					<div>{{$.lp.paragraphIndentInfo}}</div>
131 132 133
				</td>
			</tr>
		</table>
134 135
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
			<tr>
NoSubject's avatar
NoSubject 已提交
136
				<td class="editTableTitle">{{$.lp.doublePage}}:</td>
137
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
138 139 140
					<input class="editTableRadio" name="canDoublePage" text{($.canDoublePage!=='n')?'checked':''} type="radio" value="y"/>{{$.lp.yes}}
					<input class="editTableRadio" name="canDoublePage" text{($.canDoublePage=='n')?'checked':''} type="radio" value="n"/>{{$.lp.no}}
					<div>{{$.lp.doublePageInfo}}</div>
141 142 143
				</td>
			</tr>
		</table>
144 145
		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
			<tr>
NoSubject's avatar
NoSubject 已提交
146
				<td class="editTableTitle">{{$.lp.fullScreen}}:</td>
147
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
148 149 150
					<input class="editTableRadio" name="canFullScreen" text{($.canFullScreen!=='n')?'checked':''} type="radio" value="y"/>{{$.lp.allow}}
					<input class="editTableRadio" name="canFullScreen" text{($.canFullScreen=='n')?'checked':''} type="radio" value="n"/>{{$.lp.notAllow}}
					<div>{{$.lp.fullScreenInfo}}</div>
151 152 153
				</td>
			</tr>
		</table>
154 155

		<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
R
roo00 已提交
156
			<tr>
NoSubject's avatar
NoSubject 已提交
157
				<td class="editTableTitle">{{$.lp.wordConversion}}:</td>
R
roo00 已提交
158
				<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
159 160
					<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}toWordArea').setStyle('display', 'block')}" name="toWord" text{($.toWord=='y')?'checked':''} type="radio" value="y"/>{{$.lp.yes}}
					<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}toWordArea').setStyle('display', 'none')}" name="toWord" text{($.toWord!='y')?'checked':''} type="radio" value="n"/>{{$.lp.no}}
R
roo00 已提交
161 162 163 164 165
				</td>
			</tr>
		</table>
		<div id="text{$.pid}toWordArea" style="display: text{($.toWord=='y')?'block':'none'}">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
166 167 168 169 170 171 172
				<tr>
					<td class="editTableTitle">{{$.lp.wordConversionType}}:</td>
					<td class="editTableValue">
						<input class="editTableRadio" name="wordConversionType" text{($.wordConversionType!='service')?'checked':''} type="radio" value="ooxml"/>OOXML
						<input class="editTableRadio" name="wordConversionType" text{($.wordConversionType=='service')?'checked':''} type="radio" value="service"/>Service
					</td>
				</tr>
R
roo00 已提交
173
				<tr>
NoSubject's avatar
NoSubject 已提交
174
					<td class="editTableTitle">{{$.lp.fileName}}:</td>
R
roo00 已提交
175 176 177
					<td class="editTableValue"><input type="text" name="toWordFilename" value="text{$.toWordFilename}" class="editTableInput"/></td>
				</tr>
				<tr>
NoSubject's avatar
NoSubject 已提交
178
					<td class="editTableTitle">{{$.lp.fileSite}}:</td>
R
roo00 已提交
179 180
					<td class="editTableValue"><input type="text" name="toWordSite" value="text{$.toWordSite || '$doc'}" class="editTableInput"/></td>
				</tr>
NoSubject's avatar
NoSubject 已提交
181 182 183 184 185 186 187 188
<!--				<tr>-->
<!--					<td class="editTableTitle">{{$.lp.addPageNumber}}:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" name="toWordPageNumber" text{($.toWordPageNumber=='y')?'checked':''} type="radio" value="y"/>{{$.lp.yes}}-->
<!--						<input class="editTableRadio" name="toWordPageNumber" text{($.toWordPageNumber!='y')?'checked':''} type="radio" value="n"/>{{$.lp.no}}-->
<!--						<div>{{$.lp.addPageNumberInfo}}</div>-->
<!--					</td>-->
<!--				</tr>-->
189
				<tr>
NoSubject's avatar
NoSubject 已提交
190
					<td class="editTableTitle">{{$.lp.isConversionSeal}}:</td>
191
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
192 193
						<input class="editTableRadio" name="toWordSeal" text{($.toWordSeal!='n')?'checked':''} type="radio" value="y"/>{{$.lp.yes}}
						<input class="editTableRadio" name="toWordSeal" text{($.toWordSeal=='n')?'checked':''} type="radio" value="n"/>{{$.lp.no}}
194 195
					</td>
				</tr>
R
roo00 已提交
196
				<tr>
NoSubject's avatar
NoSubject 已提交
197
					<td class="editTableTitle">{{$.lp.whenConversion}}:</td>
R
roo00 已提交
198
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
199 200
						<input class="editTableRadio" name="toWordTrigger" text{($.toWordTrigger!='save' && $.toWordTrigger!=='open')?'checked':''} type="radio" value="submit"/>{{$.lp.onSubmit}}
						<input class="editTableRadio" name="toWordTrigger" text{($.toWordTrigger=='save')?'checked':''} type="radio" value="save"/>{{$.lp.onSave}}
R
roo00 已提交
201
<!--						<input class="editTableRadio" name="toWordTrigger" text{($.toWordTrigger=='open')?'checked':''} type="radio" value="open"/>打开时-->
R
roo00 已提交
202 203 204
					</td>
				</tr>
				<tr>
NoSubject's avatar
NoSubject 已提交
205
					<td class="editTableTitle">{{$.lp.conversionCondition}}:</td>
R
roo00 已提交
206
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
207 208
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}toWordConditionArea').setStyle('display', 'none')}" name="toWordCondition" text{($.toWordCondition!='condition')?'checked':''} type="radio" value="always"/>{{$.lp.alwaysConvert}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}toWordConditionArea').setStyle('display', 'block')}" name="toWordCondition" text{($.toWordCondition=='condition')?'checked':''} type="radio" value="condition"/>{{$.lp.whenConditionsMet}}
R
roo00 已提交
209 210 211 212 213 214 215 216 217 218 219
					</td>
				</tr>
<!--				<tr>-->
<!--					<td class="editTableTitle">转换服务:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" title="如果您已经连接云服务器" name="toWordService" text{($.toWordService=='cloud')?'checked':''} type="radio" value="cloud"/>云服务-->
<!--						<input class="editTableRadio" name="toWordService" text{($.toWordService!='cloud')?'checked':''} type="radio" value="local"/>本地服务-->
<!--					</td>-->
<!--				</tr>-->
			</table>

NoSubject's avatar
NoSubject 已提交
220
			<div id="text{$.pid}toWordConditionArea" style="display: text{($.toWordCondition=='condition')?'block':'none'}" class="MWFFormulaArea" name="toWordConditionScript" title="{{$.lp.conversionCondition}} (S)"></div>
R
roo00 已提交
221 222

		</div>
NoSubject's avatar
NoSubject 已提交
223

NoSubject's avatar
NoSubject 已提交
224

NoSubject's avatar
NoSubject 已提交
225 226 227 228 229 230
<!--		<div class="MWFMaplist" name="editorProperties" title="属性"></div>-->
<!--		<div style="text-align:center">更多属性帮助请查看 <a target="_blank" href="http://docs.ckeditor.com/">CKEditor Documentation</a></div>-->
<!--		<br/>-->

<!--		<div style="height: 24px; text-align: center; line-height: 24px; border-top-color: rgb(153, 153, 153); border-top-width: 1px; border-top-style: solid; background-color: rgb(238, 238, 238);">默认值</div>-->

NoSubject's avatar
NoSubject 已提交
231
		<div class="MWFMaplist" name="defaultValue" title="{{$.lp.defaultValue}}"></div>
NoSubject's avatar
NoSubject 已提交
232 233
<!--		<div class="MWFScriptArea" name="defaultValueScript" title="默认值脚本 (S)"></div>-->

NoSubject's avatar
NoSubject 已提交
234
		<div class="MWFCssArea" name="css" title="CSS"></div>
NoSubject's avatar
NoSubject 已提交
235 236

		<div class="MWFValidation" name="validationConfig"></div>
NoSubject's avatar
NoSubject 已提交
237
		<div class="MWFScriptArea" name="validation" title="verificationScript (S)"></div>
NoSubject's avatar
NoSubject 已提交
238
	</div>
NoSubject's avatar
NoSubject 已提交
239
	<div title="{{$.lp.config}}" class="MWFTab">
NoSubject's avatar
NoSubject 已提交
240 241
<!--		<div class="MWFRedDocumentEditor" name="config"></div>-->

NoSubject's avatar
NoSubject 已提交
242
<!-----------------------------------------------份数密级紧急度------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
243
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.copiesSecretPriority}}</div>
NoSubject's avatar
NoSubject 已提交
244 245 246
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
247
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
248
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
249 250 251
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesSecretPriorityShowScriptArea').setStyle('display', 'none')}" name="copiesSecretPriorityShow" text{($.copiesSecretPriorityShow!='n' && $.copiesSecretPriorityShow!='s')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesSecretPriorityShowScriptArea').setStyle('display', 'none')}" name="copiesSecretPriorityShow" text{($.copiesSecretPriorityShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesSecretPriorityShowScriptArea').setStyle('display', 'block')}" name="copiesSecretPriorityShow" text{($.copiesSecretPriorityShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
252 253 254
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
255
			<div id="text{$.pid}copiesSecretPriorityShowScriptArea" style="display: text{($.redHeaderShow=='s')?'block':'none'}" class="MWFFormulaArea" name="copiesSecretPriorityShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
256 257 258
		</div>
<!-----------------------------------------------份数密级紧急度------------------------------------------------------------------->

NoSubject's avatar
NoSubject 已提交
259
<!-----------------------------------------------份数------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
260
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.copies}} (copies)</div>
NoSubject's avatar
NoSubject 已提交
261 262 263
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
264
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
265
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
266 267 268 269
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesShowScriptArea').setStyle('display', 'none')}" name="copiesShow" text{($.copiesShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesShowScriptArea').setStyle('display', 'none')}" name="copiesShow" text{($.copiesShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesShowScriptArea').setStyle('display', 'none')}" name="copiesShow" text{($.copiesShow!='y' && $.copiesShow!='n' && $.copiesShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesShowScriptArea').setStyle('display', 'block')}" name="copiesShow" text{($.copiesShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
270 271 272
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
273
			<div id="text{$.pid}copiesShowScriptArea" style="display: text{($.copiesShow=='s')?'block':'none'}" class="MWFFormulaArea" name="copiesShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
274

NoSubject's avatar
NoSubject 已提交
275 276 277 278 279 280 281 282 283 284 285
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesEditScriptArea').setStyle('display', 'none')}" name="copiesEdit" text{($.copiesEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesEditScriptArea').setStyle('display', 'none')}" name="copiesEdit" text{($.copiesEdit!='y' && $.copiesEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesEditScriptArea').setStyle('display', 'block')}" name="copiesEdit" text{($.copiesEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}copiesEditScriptArea" style="display: text{($.copiesEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="copiesEditScript" title="份数编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
286 287 288

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
289
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
290
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
291 292
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesValueDataArea').setStyle('display', 'block'); $('text{$.pid}copiesValueScriptArea').setStyle('display', 'none')}" name="copiesValueType" text{($.copiesValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copiesValueDataArea').setStyle('display', 'none'); $('text{$.pid}copiesValueScriptArea').setStyle('display', 'block')}" name="copiesValueType" text{($.copiesValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
293 294 295 296 297 298
					</td>
				</tr>
			</table>
			<div id="text{$.pid}copiesValueDataArea" style="display: text{($.copiesValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
299
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
300 301 302 303 304
						<td class="editTableValue"><input type="text" name="copiesValueData" value="text{$.copiesValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
305
			<div id="text{$.pid}copiesValueScriptArea" style="display: text{($.copiesValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="copiesValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
306 307 308 309 310
		</div>

<!-----------------------------------------------份数------------------------------------------------------------------->

<!-----------------------------------------------密级------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
311
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.secret}} (secret)</div>
NoSubject's avatar
NoSubject 已提交
312 313 314
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
315
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
316
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
317 318 319 320
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityShowScriptArea').setStyle('display', 'none')}" name="secretShow" text{($.secretShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretShowScriptArea').setStyle('display', 'none')}" name="secretShow" text{($.secretShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretShowScriptArea').setStyle('display', 'none')}" name="secretShow" text{($.secretShow!='y' && $.secretShow!='n' && $.secretShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretShowScriptArea').setStyle('display', 'block')}" name="secretShow" text{($.secretShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
321 322 323
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
324
			<div id="text{$.pid}secretShowScriptArea" style="display: text{($.secretShow=='s')?'block':'none'}" class="MWFFormulaArea" name="secretShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
325

NoSubject's avatar
NoSubject 已提交
326 327 328 329 330 331 332 333 334 335 336
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretEditScriptArea').setStyle('display', 'none')}" name="secretEdit" text{($.secretEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretEditScriptArea').setStyle('display', 'none')}" name="secretEdit" text{($.secretEdit!='y' && $.secretEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretEditScriptArea').setStyle('display', 'block')}" name="secretEdit" text{($.secretEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}secretEditScriptArea" style="display: text{($.secretEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="secretEditScript" title="密级编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
337 338 339

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
340
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
341
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
342 343
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretValueDataArea').setStyle('display', 'block'); $('text{$.pid}secretValueScriptArea').setStyle('display', 'none')}" name="secretValueType" text{($.secretValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}secretValueDataArea').setStyle('display', 'none'); $('text{$.pid}secretValueScriptArea').setStyle('display', 'block')}" name="secretValueType" text{($.secretValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
344 345 346 347 348 349
					</td>
				</tr>
			</table>
			<div id="text{$.pid}secretValueDataArea" style="display: text{($.secretValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
350
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
351 352 353 354 355
						<td class="editTableValue"><input type="text" name="secretValueData" value="text{$.secretValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
356
			<div id="text{$.pid}secretValueScriptArea" style="display: text{($.secretValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="secretValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
357 358 359 360
		</div>
<!-----------------------------------------------密级------------------------------------------------------------------->

<!-----------------------------------------------紧急度------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
361
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.priority}} (priority}</div>
NoSubject's avatar
NoSubject 已提交
362 363 364
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
365
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
366
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
367 368 369 370
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityShowScriptArea').setStyle('display', 'none')}" name="priorityShow" text{($.priorityShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityShowScriptArea').setStyle('display', 'none')}" name="priorityShow" text{($.priorityShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityShowScriptArea').setStyle('display', 'none')}" name="priorityShow" text{($.priorityShow!='y' && $.priorityShow!='n' && $.priorityShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityShowScriptArea').setStyle('display', 'block')}" name="priorityShow" text{($.priorityShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
371 372 373
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
374
			<div id="text{$.pid}priorityShowScriptArea" style="display: text{($.priorityShow=='s')?'block':'none'}" class="MWFFormulaArea" name="priorityShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
375

NoSubject's avatar
NoSubject 已提交
376 377 378 379 380 381 382 383 384 385 386
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityEditScriptArea').setStyle('display', 'none')}" name="priorityEdit" text{($.priorityEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityEditScriptArea').setStyle('display', 'none')}" name="priorityEdit" text{($.priorityEdit!='y' && $.priorityEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityEditScriptArea').setStyle('display', 'block')}" name="priorityEdit" text{($.priorityEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}priorityEditScriptArea" style="display: text{($.priorityEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="priorityEditScript" title="紧急度编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
387 388 389

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
390
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
391
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
392 393
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityValueDataArea').setStyle('display', 'block'); $('text{$.pid}priorityValueScriptArea').setStyle('display', 'none')}" name="priorityValueType" text{($.priorityValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}priorityValueDataArea').setStyle('display', 'none'); $('text{$.pid}priorityValueScriptArea').setStyle('display', 'block')}" name="priorityValueType" text{($.priorityValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
394 395 396 397 398 399
					</td>
				</tr>
			</table>
			<div id="text{$.pid}priorityValueDataArea" style="display: text{($.priorityValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
400
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
401 402 403 404 405
						<td class="editTableValue"><input type="text" name="priorityValueData" value="text{$.priorityValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
406
			<div id="text{$.pid}priorityValueScriptArea" style="display: text{($.priorityValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="priorityValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
407 408 409 410
		</div>
<!-----------------------------------------------紧急度------------------------------------------------------------------->

<!-----------------------------------------------红头------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
411
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.redHeader}} (redHeader)</div>
NoSubject's avatar
NoSubject 已提交
412 413 414
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
415
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
416
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
417 418 419 420
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderShowScriptArea').setStyle('display', 'none')}" name="redHeaderShow" text{($.redHeaderShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderShowScriptArea').setStyle('display', 'none')}" name="redHeaderShow" text{($.redHeaderShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderShowScriptArea').setStyle('display', 'none')}" name="redHeaderShow" text{($.redHeaderShow!='y' && $.redHeaderShow!='n' && $.redHeaderShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderShowScriptArea').setStyle('display', 'block')}" name="redHeaderShow" text{($.redHeaderShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
421 422 423
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
424
			<div id="text{$.pid}redHeaderShowScriptArea" style="display: text{($.redHeaderShow=='s')?'block':'none'}" class="MWFFormulaArea" name="redHeaderShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
425

NoSubject's avatar
NoSubject 已提交
426 427 428 429 430 431 432 433 434 435 436
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderEditScriptArea').setStyle('display', 'none')}" name="redHeaderEdit" text{($.redHeaderEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderEditScriptArea').setStyle('display', 'none')}" name="redHeaderEdit" text{($.redHeaderEdit!='y' && $.redHeaderEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderEditScriptArea').setStyle('display', 'block')}" name="redHeaderEdit" text{($.redHeaderEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}redHeaderEditScriptArea" style="display: text{($.redHeaderEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="redHeaderEditScript" title="红头编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
437 438 439

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
440
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
441
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
442 443
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderValueDataArea').setStyle('display', 'block'); $('text{$.pid}redHeaderValueScriptArea').setStyle('display', 'none')}" name="redHeaderValueType" text{($.redHeaderValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redHeaderValueDataArea').setStyle('display', 'none'); $('text{$.pid}redHeaderValueScriptArea').setStyle('display', 'block')}" name="redHeaderValueType" text{($.redHeaderValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
444 445 446 447 448 449
					</td>
				</tr>
			</table>
			<div id="text{$.pid}redHeaderValueDataArea" style="display: text{($.redHeaderValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
450
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
451 452 453 454 455
						<td class="editTableValue"><input type="text" name="redHeaderValueData" value="text{$.redHeaderValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
456
			<div id="text{$.pid}redHeaderValueScriptArea" style="display: text{($.redHeaderValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="redHeaderValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
457 458 459
		</div>
<!-----------------------------------------------红头------------------------------------------------------------------->

R
roo00 已提交
460
<!-----------------------------------------------红线------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
461
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.redLine}} (redLine)</div>
R
roo00 已提交
462 463 464
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
465
					<td class="editTableTitle">{{$.lp.isShow}}</td>
R
roo00 已提交
466
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
467 468 469
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redLineShowScriptArea').setStyle('display', 'none')}" name="redLineShow" text{($.redLineShow!='n' && $.redLineShow!='s')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redLineShowScriptArea').setStyle('display', 'none')}" name="redLineShow" text{($.redLineShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}redLineShowScriptArea').setStyle('display', 'block')}" name="redLineShow" text{($.redLineShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
R
roo00 已提交
470 471 472
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
473
			<div id="text{$.pid}redLineShowScriptArea" style="display: text{($.redHeaderShow=='s')?'block':'none'}" class="MWFFormulaArea" name="redLineShowScript" title="{{$.lp.showScript}} (S)"></div>
R
roo00 已提交
474 475 476
		</div>
<!-----------------------------------------------红头------------------------------------------------------------------->

NoSubject's avatar
NoSubject 已提交
477
<!-----------------------------------------------文号------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
478
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.fileNo}} (fileno)</div>
NoSubject's avatar
NoSubject 已提交
479 480 481
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
482
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
483
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
484 485 486 487
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoShowScriptArea').setStyle('display', 'none')}" name="filenoShow" text{($.filenoShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoShowScriptArea').setStyle('display', 'none')}" name="filenoShow" text{($.filenoShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoShowScriptArea').setStyle('display', 'none')}" name="filenoShow" text{($.filenoShow!='y' && $.filenoShow!='n' && $.filenoShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoShowScriptArea').setStyle('display', 'block')}" name="filenoShow" text{($.filenoShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
488 489 490
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
491
			<div id="text{$.pid}filenoShowScriptArea" style="display: text{($.filenoShow=='s')?'block':'none'}" class="MWFFormulaArea" name="filenoShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
492

NoSubject's avatar
NoSubject 已提交
493 494 495 496 497 498 499 500 501 502 503
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoEditScriptArea').setStyle('display', 'none')}" name="filenoEdit" text{($.filenoEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoEditScriptArea').setStyle('display', 'none')}" name="filenoEdit" text{($.filenoEdit!='y' && $.filenoEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoEditScriptArea').setStyle('display', 'block')}" name="filenoEdit" text{($.filenoEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}filenoEditScriptArea" style="display: text{($.filenoEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="filenoEditScript" title="文号编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
504 505 506

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
507
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
508
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
509 510
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoValueDataArea').setStyle('display', 'block'); $('text{$.pid}filenoValueScriptArea').setStyle('display', 'none')}" name="filenoValueType" text{($.filenoValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}filenoValueDataArea').setStyle('display', 'none'); $('text{$.pid}filenoValueScriptArea').setStyle('display', 'block')}" name="filenoValueType" text{($.filenoValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
511 512 513 514 515 516
					</td>
				</tr>
			</table>
			<div id="text{$.pid}filenoValueDataArea" style="display: text{($.filenoValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
517
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
518 519 520 521 522
						<td class="editTableValue"><input type="text" name="filenoValueData" value="text{$.filenoValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
523
			<div id="text{$.pid}filenoValueScriptArea" style="display: text{($.filenoValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="filenoValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
524 525 526 527
		</div>
<!-----------------------------------------------文号------------------------------------------------------------------->

<!-----------------------------------------------签发人------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
528
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.signer}} (signer)</div>
NoSubject's avatar
NoSubject 已提交
529 530 531
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
532
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
533
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
534 535 536 537
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerShowScriptArea').setStyle('display', 'none')}" name="signerShow" text{($.signerShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerShowScriptArea').setStyle('display', 'none')}" name="signerShow" text{($.signerShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerShowScriptArea').setStyle('display', 'none')}" name="signerShow" text{($.signerShow!='y' && $.signerShow!='n' && $.signerShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerShowScriptArea').setStyle('display', 'block')}" name="signerShow" text{($.signerShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
538 539 540
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
541
			<div id="text{$.pid}signerShowScriptArea" style="display: text{($.signerShow=='s')?'block':'none'}" class="MWFFormulaArea" name="signerShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
542

NoSubject's avatar
NoSubject 已提交
543 544 545 546 547 548 549 550 551 552 553
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerEditScriptArea').setStyle('display', 'none')}" name="signerEdit" text{($.signerEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerEditScriptArea').setStyle('display', 'none')}" name="signerEdit" text{($.signerEdit!='y' && $.signerEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerEditScriptArea').setStyle('display', 'block')}" name="signerEdit" text{($.signerEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}signerEditScriptArea" style="display: text{($.signerEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="signerEditScript" title="签发人编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
554 555 556

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
557
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
558
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
559 560
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerValueDataArea').setStyle('display', 'block'); $('text{$.pid}signerValueScriptArea').setStyle('display', 'none')}" name="signerValueType" text{($.signerValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}signerValueDataArea').setStyle('display', 'none'); $('text{$.pid}signerValueScriptArea').setStyle('display', 'block')}" name="signerValueType" text{($.signerValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
561 562 563 564 565 566
					</td>
				</tr>
			</table>
			<div id="text{$.pid}signerValueDataArea" style="display: text{($.signerValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
567
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
568 569 570 571 572
						<td class="editTableValue"><input type="text" name="signerValueData" value="text{$.signerValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
573
			<div id="text{$.pid}signerValueScriptArea" style="display: text{($.signerValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="signerValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
574 575 576 577
		</div>
<!-----------------------------------------------签发人------------------------------------------------------------------->

<!-----------------------------------------------文件标题------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
578
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.subject}} (subject)</div>
NoSubject's avatar
NoSubject 已提交
579 580 581
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
582
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
583
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
584 585 586 587
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectShowScriptArea').setStyle('display', 'none')}" name="subjectShow" text{($.subjectShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectShowScriptArea').setStyle('display', 'none')}" name="subjectShow" text{($.subjectShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectShowScriptArea').setStyle('display', 'none')}" name="subjectShow" text{($.subjectShow!='y' && $.subjectShow!='n' && $.subjectShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectShowScriptArea').setStyle('display', 'block')}" name="subjectShow" text{($.subjectShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
588 589 590
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
591
			<div id="text{$.pid}subjectShowScriptArea" style="display: text{($.subjectShow=='s')?'block':'none'}" class="MWFFormulaArea" name="subjectShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
592

R
roo00 已提交
593 594
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
595
					<td class="editTableTitle">{{$.lp.allowEdit}}:</td>
R
roo00 已提交
596
					<td class="editTableValue">
597 598 599
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectEditScriptArea').setStyle('display', 'none'); $('text{$.pid}subjectEditBindFormDataArea').setStyle('display', 'block');}" name="subjectEdit" text{($.subjectEdit=='y')?'checked':''} type="radio" value="y"/>{{$.lp.allow}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectEditScriptArea').setStyle('display', 'none'); $('text{$.pid}subjectEditBindFormDataArea').setStyle('display', 'none');}" name="subjectEdit" text{($.subjectEdit!='y' && $.subjectEdit!='s')?'checked':''} type="radio" value="n"/>{{$.lp.notAllow}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectEditScriptArea').setStyle('display', 'block'); $('text{$.pid}subjectEditBindFormDataArea').setStyle('display', 'block');}" name="subjectEdit" text{($.subjectEdit=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
600
						<br>
NoSubject's avatar
NoSubject 已提交
601
						{{$.lp.editSubjectInfo}}
602 603 604 605 606
						<div id="text{$.pid}subjectEditBindFormDataArea" style="display: text{($.subjectEditBindFormData=='y'||$.subjectEditBindFormData=='s')?'block':'none'}">
							<b>{{$.lp.subjectEditBindFormData}}:</b>
							<input type="text" name="subjectEditBindFormData" value="text{$.subjectEditBindFormData}" class="editTableInput"/>
						</div>

R
roo00 已提交
607 608 609
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
610
			<div id="text{$.pid}subjectEditScriptArea" style="display: text{($.subjectEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="subjectEditScript" title="{{$.lp.editScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
611

612

NoSubject's avatar
NoSubject 已提交
613 614
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
615
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
616
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
617 618
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectValueDataArea').setStyle('display', 'block'); $('text{$.pid}subjectValueScriptArea').setStyle('display', 'none')}" name="subjectValueType" text{($.subjectValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}subjectValueDataArea').setStyle('display', 'none'); $('text{$.pid}subjectValueScriptArea').setStyle('display', 'block')}" name="subjectValueType" text{($.subjectValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
619 620 621 622 623 624
					</td>
				</tr>
			</table>
			<div id="text{$.pid}subjectValueDataArea" style="display: text{($.subjectValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
625
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
626 627 628 629 630
						<td class="editTableValue"><input type="text" name="subjectValueData" value="text{$.subjectValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
631
			<div id="text{$.pid}subjectValueScriptArea" style="display: text{($.subjectValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="subjectValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
632 633 634 635
		</div>
<!-----------------------------------------------文件标题------------------------------------------------------------------->

<!-----------------------------------------------主送------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
636
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.mainSend}} (mainSend)</div>
NoSubject's avatar
NoSubject 已提交
637 638 639
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
640
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
641
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
642 643 644 645
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendShowScriptArea').setStyle('display', 'none')}" name="mainSendShow" text{($.mainSendShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendShowScriptArea').setStyle('display', 'none')}" name="mainSendShow" text{($.mainSendShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendShowScriptArea').setStyle('display', 'none')}" name="mainSendShow" text{($.mainSendShow!='y' && $.mainSendShow!='n' && $.mainSendShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendShowScriptArea').setStyle('display', 'block')}" name="mainSendShow" text{($.mainSendShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
646 647 648
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
649
			<div id="text{$.pid}mainSendShowScriptArea" style="display: text{($.mainSendShow=='s')?'block':'none'}" class="MWFFormulaArea" name="mainSendShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
650

NoSubject's avatar
NoSubject 已提交
651 652 653 654 655 656 657 658 659 660 661
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendEditScriptArea').setStyle('display', 'none')}" name="mainSendEdit" text{($.mainSendEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendEditScriptArea').setStyle('display', 'none')}" name="mainSendEdit" text{($.mainSendEdit!='y' && $.mainSendEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendEditScriptArea').setStyle('display', 'block')}" name="mainSendEdit" text{($.mainSendEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}mainSendEditScriptArea" style="display: text{($.mainSendEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="mainSendEditScript" title="主送编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
662 663 664

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
665
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
666
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
667 668
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendValueDataArea').setStyle('display', 'block'); $('text{$.pid}mainSendValueScriptArea').setStyle('display', 'none')}" name="mainSendValueType" text{($.mainSendValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}mainSendValueDataArea').setStyle('display', 'none'); $('text{$.pid}mainSendValueScriptArea').setStyle('display', 'block')}" name="mainSendValueType" text{($.mainSendValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
669 670 671 672 673 674
					</td>
				</tr>
			</table>
			<div id="text{$.pid}mainSendValueDataArea" style="display: text{($.mainSendValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
675
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
676 677 678 679 680
						<td class="editTableValue"><input type="text" name="mainSendValueData" value="text{$.mainSendValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
681
			<div id="text{$.pid}mainSendValueScriptArea" style="display: text{($.mainSendValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="mainSendValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
682 683 684 685
		</div>
<!-----------------------------------------------主送------------------------------------------------------------------->

<!-----------------------------------------------附件------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
686
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.attachment}} (attachment)</div>
NoSubject's avatar
NoSubject 已提交
687 688 689
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
690
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
691
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
692 693 694 695
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentShowScriptArea').setStyle('display', 'none')}" name="attachmentShow" text{($.attachmentShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentShowScriptArea').setStyle('display', 'none')}" name="attachmentShow" text{($.attachmentShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentShowScriptArea').setStyle('display', 'none')}" name="attachmentShow" text{($.attachmentShow!='y' && $.attachmentShow!='n' && $.attachmentShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentShowScriptArea').setStyle('display', 'block')}" name="attachmentShow" text{($.attachmentShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
696 697 698
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
699
			<div id="text{$.pid}attachmentShowScriptArea" style="display: text{($.attachmentShow=='s')?'block':'none'}" class="MWFFormulaArea" name="attachmentShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
700

NoSubject's avatar
NoSubject 已提交
701 702 703 704 705 706 707 708 709 710 711
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentEditScriptArea').setStyle('display', 'none')}" name="attachmentEdit" text{($.attachmentEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentEditScriptArea').setStyle('display', 'none')}" name="attachmentEdit" text{($.attachmentEdit!='y' && $.attachmentEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentEditScriptArea').setStyle('display', 'block')}" name="attachmentEdit" text{($.attachmentEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}attachmentEditScriptArea" style="display: text{($.attachmentEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="attachmentEditScript" title="附件编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
712 713 714

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
715
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
716
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
717 718
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentValueDataArea').setStyle('display', 'block'); $('text{$.pid}attachmentValueScriptArea').setStyle('display', 'none')}" name="attachmentValueType" text{($.attachmentValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}attachmentValueDataArea').setStyle('display', 'none'); $('text{$.pid}attachmentValueScriptArea').setStyle('display', 'block')}" name="attachmentValueType" text{($.attachmentValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
719 720 721 722 723 724
					</td>
				</tr>
			</table>
			<div id="text{$.pid}attachmentValueDataArea" style="display: text{($.attachmentValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
725
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
726 727 728 729 730
						<td class="editTableValue"><input type="text" name="attachmentValueData" value="text{$.attachmentValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
731
			<div id="text{$.pid}attachmentValueScriptArea" style="display: text{($.attachmentValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="attachmentValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
732 733 734 735
		</div>
<!-----------------------------------------------附件------------------------------------------------------------------->

<!-----------------------------------------------成文单位------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
736
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.issuanceUnit}} (issuanceUnit)</div>
NoSubject's avatar
NoSubject 已提交
737 738 739
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
740
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
741
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
742 743 744 745
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitShowScriptArea').setStyle('display', 'none')}" name="issuanceUnitShow" text{($.issuanceUnitShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitShowScriptArea').setStyle('display', 'none')}" name="issuanceUnitShow" text{($.issuanceUnitShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitShowScriptArea').setStyle('display', 'none')}" name="issuanceUnitShow" text{($.issuanceUnitShow!='y' && $.issuanceUnitShow!='n' && $.issuanceUnitShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitShowScriptArea').setStyle('display', 'block')}" name="issuanceUnitShow" text{($.issuanceUnitShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
746 747 748
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
749
			<div id="text{$.pid}issuanceUnitShowScriptArea" style="display: text{($.issuanceUnitShow=='s')?'block':'none'}" class="MWFFormulaArea" name="issuanceUnitShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
750

751 752
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
753
					<td class="editTableTitle">{{$.lp.allowEdit}}:</td>
754
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
755 756 757
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitEditScriptArea').setStyle('display', 'none')}" name="issuanceUnitEdit" text{($.issuanceUnitEdit=='y')?'checked':''} type="radio" value="y"/>{{$.lp.allow}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitEditScriptArea').setStyle('display', 'none')}" name="issuanceUnitEdit" text{($.issuanceUnitEdit!='y' && $.issuanceUnitEdit!='s')?'checked':''} type="radio" value="n"/>{{$.lp.notAllow}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitEditScriptArea').setStyle('display', 'block')}" name="issuanceUnitEdit" text{($.issuanceUnitEdit=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
758 759 760
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
761
			<div id="text{$.pid}issuanceUnitEditScriptArea" style="display: text{($.issuanceUnitEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="issuanceUnitEditScript" title="{{$.lp.editScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
762 763 764

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
765
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
766
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
767 768
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitValueDataArea').setStyle('display', 'block'); $('text{$.pid}issuanceUnitValueScriptArea').setStyle('display', 'none')}" name="issuanceUnitValueType" text{($.issuanceUnitValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceUnitValueDataArea').setStyle('display', 'none'); $('text{$.pid}issuanceUnitValueScriptArea').setStyle('display', 'block')}" name="issuanceUnitValueType" text{($.issuanceUnitValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
769 770 771 772 773 774
					</td>
				</tr>
			</table>
			<div id="text{$.pid}issuanceUnitValueDataArea" style="display: text{($.issuanceUnitValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
775
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
776 777 778 779 780
						<td class="editTableValue"><input type="text" name="issuanceUnitValueData" value="text{$.issuanceUnitValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
781
			<div id="text{$.pid}issuanceUnitValueScriptArea" style="display: text{($.issuanceUnitValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="issuanceUnitValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
782 783 784 785
		</div>
<!-----------------------------------------------成文单位------------------------------------------------------------------->

<!-----------------------------------------------成文日期------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
786
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.issuanceDate}} (issuanceDate)</div>
NoSubject's avatar
NoSubject 已提交
787 788 789
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
790
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
791
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
792 793 794 795
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateShowScriptArea').setStyle('display', 'none')}" name="issuanceDateShow" text{($.issuanceDateShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateShowScriptArea').setStyle('display', 'none')}" name="issuanceDateShow" text{($.issuanceDateShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateShowScriptArea').setStyle('display', 'none')}" name="issuanceDateShow" text{($.issuanceDateShow!='y' && $.issuanceDateShow!='n' && $.issuanceDateShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateShowScriptArea').setStyle('display', 'block')}" name="issuanceDateShow" text{($.issuanceDateShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
796 797 798
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
799
			<div id="text{$.pid}issuanceDateShowScriptArea" style="display: text{($.issuanceDateShow=='s')?'block':'none'}" class="MWFFormulaArea" name="issuanceDateShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
800

NoSubject's avatar
NoSubject 已提交
801 802 803 804 805 806 807 808 809 810 811
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateEditScriptArea').setStyle('display', 'none')}" name="issuanceDateEdit" text{($.issuanceDateEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateEditScriptArea').setStyle('display', 'none')}" name="issuanceDateEdit" text{($.issuanceDateEdit!='y' && $.issuanceDateEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateEditScriptArea').setStyle('display', 'block')}" name="issuanceDateEdit" text{($.issuanceDateEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}issuanceDateEditScriptArea" style="display: text{($.issuanceDateEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="issuanceDateEditScript" title="成文日期编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
812 813 814

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
815
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
816
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
817 818
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateValueDataArea').setStyle('display', 'block'); $('text{$.pid}issuanceDateValueScriptArea').setStyle('display', 'none')}" name="issuanceDateValueType" text{($.issuanceDateValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}issuanceDateValueDataArea').setStyle('display', 'none'); $('text{$.pid}issuanceDateValueScriptArea').setStyle('display', 'block')}" name="issuanceDateValueType" text{($.issuanceDateValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
819 820 821 822 823 824
					</td>
				</tr>
			</table>
			<div id="text{$.pid}issuanceDateValueDataArea" style="display: text{($.issuanceDateValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
825
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
826 827 828 829 830
						<td class="editTableValue"><input type="text" name="issuanceDateValueData" value="text{$.issuanceDateValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
831
			<div id="text{$.pid}issuanceDateValueScriptArea" style="display: text{($.issuanceDateValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="issuanceDateValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
832 833 834 835
		</div>
<!-----------------------------------------------成文日期------------------------------------------------------------------->

<!-----------------------------------------------附注------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
836
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.annotation}} (annotation)</div>
NoSubject's avatar
NoSubject 已提交
837 838 839
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
840
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
841
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
842 843 844 845
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationShowScriptArea').setStyle('display', 'none')}" name="annotationShow" text{($.annotationShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationShowScriptArea').setStyle('display', 'none')}" name="annotationShow" text{($.annotationShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationShowScriptArea').setStyle('display', 'none')}" name="annotationShow" text{($.annotationShow!='y' && $.annotationShow!='n' && $.annotationShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationShowScriptArea').setStyle('display', 'block')}" name="annotationShow" text{($.annotationShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
846 847 848
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
849
			<div id="text{$.pid}annotationShowScriptArea" style="display: text{($.annotationShow=='s')?'block':'none'}" class="MWFFormulaArea" name="annotationShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
850

NoSubject's avatar
NoSubject 已提交
851 852 853 854 855 856 857 858 859 860 861
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationEditScriptArea').setStyle('display', 'none')}" name="annotationEdit" text{($.annotationEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationEditScriptArea').setStyle('display', 'none')}" name="annotationEdit" text{($.annotationEdit!='y' && $.annotationEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationEditScriptArea').setStyle('display', 'block')}" name="annotationEdit" text{($.annotationEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}annotationEditScriptArea" style="display: text{($.annotationEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="annotationEditScript" title="附注编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
862 863 864

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
865
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
866
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
867 868
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationValueDataArea').setStyle('display', 'block'); $('text{$.pid}annotationValueScriptArea').setStyle('display', 'none')}" name="annotationValueType" text{($.annotationValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}annotationValueDataArea').setStyle('display', 'none'); $('text{$.pid}annotationValueScriptArea').setStyle('display', 'block')}" name="annotationValueType" text{($.annotationValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
869 870 871 872 873 874
					</td>
				</tr>
			</table>
			<div id="text{$.pid}annotationValueDataArea" style="display: text{($.annotationValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
875
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
876 877 878 879 880
						<td class="editTableValue"><input type="text" name="annotationValueData" value="text{$.annotationValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
881
			<div id="text{$.pid}annotationValueScriptArea" style="display: text{($.annotationValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="annotationValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
882 883 884 885
		</div>
<!-----------------------------------------------附注------------------------------------------------------------------->

<!-----------------------------------------------抄送------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
886
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.copyto}} (copyto)</div>
NoSubject's avatar
NoSubject 已提交
887 888 889
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
890
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
891
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
892 893 894 895
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoShowScriptArea').setStyle('display', 'none')}" name="copytoShow" text{($.copytoShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoShowScriptArea').setStyle('display', 'none')}" name="copytoShow" text{($.copytoShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoShowScriptArea').setStyle('display', 'none')}" name="copytoShow" text{($.copytoShow!='y' && $.copytoShow!='n' && $.copytoShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoShowScriptArea').setStyle('display', 'block')}" name="copytoShow" text{($.copytoShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
896 897 898
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
899
			<div id="text{$.pid}copytoShowScriptArea" style="display: text{($.copytoShow=='s')?'block':'none'}" class="MWFFormulaArea" name="copytoShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
900

NoSubject's avatar
NoSubject 已提交
901 902 903 904 905 906 907 908 909 910 911
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoEditScriptArea').setStyle('display', 'none')}" name="copytoEdit" text{($.copytoEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoEditScriptArea').setStyle('display', 'none')}" name="copytoEdit" text{($.copytoEdit!='y' && $.copytoEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoEditScriptArea').setStyle('display', 'block')}" name="copytoEdit" text{($.copytoEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}copytoEditScriptArea" style="display: text{($.copytoEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="copytoEditScript" title="抄送编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
912 913 914

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
915
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
916
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
917 918
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoValueDataArea').setStyle('display', 'block'); $('text{$.pid}copytoValueScriptArea').setStyle('display', 'none')}" name="copytoValueType" text{($.copytoValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copytoValueDataArea').setStyle('display', 'none'); $('text{$.pid}copytoValueScriptArea').setStyle('display', 'block')}" name="copytoValueType" text{($.copytoValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
919 920 921 922 923 924
					</td>
				</tr>
			</table>
			<div id="text{$.pid}copytoValueDataArea" style="display: text{($.copytoValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
925
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
926 927 928 929 930
						<td class="editTableValue"><input type="text" name="copytoValueData" value="text{$.copytoValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
931
			<div id="text{$.pid}copytoValueScriptArea" style="display: text{($.copytoValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="copytoValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
932 933 934
		</div>
<!-----------------------------------------------抄送------------------------------------------------------------------->

R
roo00 已提交
935
<!-----------------------------------------------发------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
936
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.copyto2}} (copyto2)</div>
R
roo00 已提交
937 938 939
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
940
					<td class="editTableTitle">{{$.lp.isShow}}</td>
R
roo00 已提交
941
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
942 943 944 945
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2ShowScriptArea').setStyle('display', 'none')}" name="copyto2Show" text{($.copyto2Show=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2ShowScriptArea').setStyle('display', 'none')}" name="copyto2Show" text{($.copyto2Show=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2ShowScriptArea').setStyle('display', 'none')}" name="copyto2Show" text{($.copyto2Show!='y' && $.copyto2Show!='n' && $.copyto2Show!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2ShowScriptArea').setStyle('display', 'block')}" name="copyto2Show" text{($.copyto2Show=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
R
roo00 已提交
946 947 948
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
949
			<div id="text{$.pid}copyto2ShowScriptArea" style="display: text{($.copyto2Show=='s')?'block':'none'}" class="MWFFormulaArea" name="copyto2ShowScript" title="{{$.lp.showScript}} (S)"></div>
R
roo00 已提交
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964

			<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
			<!--				<tr>-->
			<!--					<td class="editTableTitle">允许编辑:</td>-->
			<!--					<td class="editTableValue">-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2EditScriptArea').setStyle('display', 'none')}" name="copyto2Edit" text{($.copyto2Edit=='y')?'checked':''} type="radio" value="y"/>允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2EditScriptArea').setStyle('display', 'none')}" name="copyto2Edit" text{($.copyto2Edit!='y' && $.copyto2Edit!='s')?'checked':''} type="radio" value="n"/>不允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2EditScriptArea').setStyle('display', 'block')}" name="copyto2Edit" text{($.copyto2Edit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
			<!--					</td>-->
			<!--				</tr>-->
			<!--			</table>-->
			<!--			<div id="text{$.pid}copyto2EditScriptArea" style="display: text{($.copyto2Edit=='s')?'block':'none'}" class="MWFFormulaArea" name="copyto2EditScript" title="抄送编辑脚本 (S)"></div>-->

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
965
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
R
roo00 已提交
966
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
967 968
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2ValueDataArea').setStyle('display', 'block'); $('text{$.pid}copyto2ValueScriptArea').setStyle('display', 'none')}" name="copyto2ValueType" text{($.copyto2ValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}copyto2ValueDataArea').setStyle('display', 'none'); $('text{$.pid}copyto2ValueScriptArea').setStyle('display', 'block')}" name="copyto2ValueType" text{($.copyto2ValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
R
roo00 已提交
969 970 971 972 973 974
					</td>
				</tr>
			</table>
			<div id="text{$.pid}copyto2ValueDataArea" style="display: text{($.copyto2ValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
975
						<td class="editTableTitle">{{$.lp.formData}}:</td>
R
roo00 已提交
976 977 978 979 980
						<td class="editTableValue"><input type="text" name="copyto2ValueData" value="text{$.copyto2ValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
981
			<div id="text{$.pid}copyto2ValueScriptArea" style="display: text{($.copyto2ValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="copyto2ValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
R
roo00 已提交
982 983 984
		</div>
<!-----------------------------------------------抄送------------------------------------------------------------------->

NoSubject's avatar
NoSubject 已提交
985
<!-----------------------------------------------印发单位------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
986
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.editionUnit}} (editionUnit)</div>
NoSubject's avatar
NoSubject 已提交
987 988 989
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
990
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
991
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
992 993 994 995
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitShowScriptArea').setStyle('display', 'none')}" name="editionUnitShow" text{($.editionUnitShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitShowScriptArea').setStyle('display', 'none')}" name="editionUnitShow" text{($.editionUnitShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitShowScriptArea').setStyle('display', 'none')}" name="editionUnitShow" text{($.editionUnitShow!='y' && $.editionUnitShow!='n' && $.editionUnitShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitShowScriptArea').setStyle('display', 'block')}" name="editionUnitShow" text{($.editionUnitShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
996 997 998
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
999
			<div id="text{$.pid}editionUnitShowScriptArea" style="display: text{($.editionUnitShow=='s')?'block':'none'}" class="MWFFormulaArea" name="editionUnitShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
1000

NoSubject's avatar
NoSubject 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitEditScriptArea').setStyle('display', 'none')}" name="editionUnitEdit" text{($.editionUnitEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitEditScriptArea').setStyle('display', 'none')}" name="editionUnitEdit" text{($.editionUnitEdit!='y' && $.editionUnitEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitEditScriptArea').setStyle('display', 'block')}" name="editionUnitEdit" text{($.editionUnitEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}editionUnitEditScriptArea" style="display: text{($.editionUnitEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="editionUnitEditScript" title="印发单位编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
1012 1013 1014

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1015
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
1016
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1017 1018
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitValueDataArea').setStyle('display', 'block'); $('text{$.pid}editionUnitValueScriptArea').setStyle('display', 'none')}" name="editionUnitValueType" text{($.editionUnitValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionUnitValueDataArea').setStyle('display', 'none'); $('text{$.pid}editionUnitValueScriptArea').setStyle('display', 'block')}" name="editionUnitValueType" text{($.editionUnitValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
1019 1020 1021 1022 1023 1024
					</td>
				</tr>
			</table>
			<div id="text{$.pid}editionUnitValueDataArea" style="display: text{($.editionUnitValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
1025
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
1026 1027 1028 1029 1030
						<td class="editTableValue"><input type="text" name="editionUnitValueData" value="text{$.editionUnitValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
1031
			<div id="text{$.pid}editionUnitValueScriptArea" style="display: text{($.editionUnitValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="editionUnitValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
1032 1033 1034 1035
		</div>
<!-----------------------------------------------印发单位------------------------------------------------------------------->

<!-----------------------------------------------印发日期------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
1036
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.editionDate}} (editionDate)</div>
NoSubject's avatar
NoSubject 已提交
1037 1038 1039
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1040
					<td class="editTableTitle">{{$.lp.isShow}}</td>
NoSubject's avatar
NoSubject 已提交
1041
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1042 1043 1044 1045
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateShowScriptArea').setStyle('display', 'none')}" name="editionDateShow" text{($.editionDateShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateShowScriptArea').setStyle('display', 'none')}" name="editionDateShow" text{($.editionDateShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateShowScriptArea').setStyle('display', 'none')}" name="editionDateShow" text{($.editionDateShow!='y' && $.editionDateShow!='n' && $.editionDateShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateShowScriptArea').setStyle('display', 'block')}" name="editionDateShow" text{($.editionDateShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
NoSubject's avatar
NoSubject 已提交
1046 1047 1048
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
1049
			<div id="text{$.pid}editionDateShowScriptArea" style="display: text{($.editionDateShow=='s')?'block':'none'}" class="MWFFormulaArea" name="editionDateShowScript" title="{{$.lp.showScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
1050

NoSubject's avatar
NoSubject 已提交
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
<!--				<tr>-->
<!--					<td class="editTableTitle">允许编辑:</td>-->
<!--					<td class="editTableValue">-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateEditScriptArea').setStyle('display', 'none')}" name="editionDateEdit" text{($.editionDateEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateEditScriptArea').setStyle('display', 'none')}" name="editionDateEdit" text{($.editionDateEdit!='y' && $.editionDateEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateEditScriptArea').setStyle('display', 'block')}" name="editionDateEdit" text{($.editionDateEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
<!--					</td>-->
<!--				</tr>-->
<!--			</table>-->
<!--			<div id="text{$.pid}editionDateEditScriptArea" style="display: text{($.editionDateEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="editionDateEditScript" title="印发单位编辑脚本 (S)"></div>-->
NoSubject's avatar
NoSubject 已提交
1062 1063 1064

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1065
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
NoSubject's avatar
NoSubject 已提交
1066
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1067 1068
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateValueDataArea').setStyle('display', 'block'); $('text{$.pid}editionDateValueScriptArea').setStyle('display', 'none')}" name="editionDateValueType" text{($.editionDateValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}editionDateValueDataArea').setStyle('display', 'none'); $('text{$.pid}editionDateValueScriptArea').setStyle('display', 'block')}" name="editionDateValueType" text{($.editionDateValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
NoSubject's avatar
NoSubject 已提交
1069 1070 1071 1072 1073 1074
					</td>
				</tr>
			</table>
			<div id="text{$.pid}editionDateValueDataArea" style="display: text{($.editionDateValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
1075
						<td class="editTableTitle">{{$.lp.formData}}:</td>
NoSubject's avatar
NoSubject 已提交
1076 1077 1078 1079 1080
						<td class="editTableValue"><input type="text" name="editionDateValueData" value="text{$.editionDateValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
1081
			<div id="text{$.pid}editionDateValueScriptArea" style="display: text{($.editionDateValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="editionDateValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
NoSubject's avatar
NoSubject 已提交
1082 1083 1084
		</div>
<!-----------------------------------------------印发日期------------------------------------------------------------------->

R
roo00 已提交
1085
<!-----------------------------------------------会议出席------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
1086
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.meetingAttend}} (meetingAttend)</div>
R
roo00 已提交
1087 1088 1089
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1090
					<td class="editTableTitle">{{$.lp.isShow}}</td>
R
roo00 已提交
1091
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1092 1093 1094 1095
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendShowScriptArea').setStyle('display', 'none')}" name="meetingAttendShow" text{($.meetingAttendShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendShowScriptArea').setStyle('display', 'none')}" name="meetingAttendShow" text{($.meetingAttendShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendShowScriptArea').setStyle('display', 'none')}" name="meetingAttendShow" text{($.meetingAttendShow!='y' && $.meetingAttendShow!='n' && $.meetingAttendShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendShowScriptArea').setStyle('display', 'block')}" name="meetingAttendShow" text{($.meetingAttendShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
R
roo00 已提交
1096 1097 1098
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
1099
			<div id="text{$.pid}meetingAttendShowScriptArea" style="display: text{($.meetingAttendShow=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingAttendShowScript" title="{{$.lp.showScript}} (S)"></div>
R
roo00 已提交
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114

			<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
			<!--				<tr>-->
			<!--					<td class="editTableTitle">允许编辑:</td>-->
			<!--					<td class="editTableValue">-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendEditScriptArea').setStyle('display', 'none')}" name="meetingAttendEdit" text{($.meetingAttendEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendEditScriptArea').setStyle('display', 'none')}" name="meetingAttendEdit" text{($.meetingAttendEdit!='y' && $.meetingAttendEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendEditScriptArea').setStyle('display', 'block')}" name="meetingAttendEdit" text{($.meetingAttendEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
			<!--					</td>-->
			<!--				</tr>-->
			<!--			</table>-->
			<!--			<div id="text{$.pid}meetingAttendEditScriptArea" style="display: text{($.meetingAttendEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingAttendEditScript" title="会议出席编辑脚本 (S)"></div>-->

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1115
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
R
roo00 已提交
1116
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1117 1118
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendValueDataArea').setStyle('display', 'block'); $('text{$.pid}meetingAttendValueScriptArea').setStyle('display', 'none')}" name="meetingAttendValueType" text{($.meetingAttendValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingAttendValueDataArea').setStyle('display', 'none'); $('text{$.pid}meetingAttendValueScriptArea').setStyle('display', 'block')}" name="meetingAttendValueType" text{($.meetingAttendValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
R
roo00 已提交
1119 1120 1121 1122 1123 1124
					</td>
				</tr>
			</table>
			<div id="text{$.pid}meetingAttendValueDataArea" style="display: text{($.meetingAttendValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
1125
						<td class="editTableTitle">{{$.lp.formData}}:</td>
R
roo00 已提交
1126 1127 1128 1129 1130
						<td class="editTableValue"><input type="text" name="meetingAttendValueData" value="text{$.meetingAttendValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
1131
			<div id="text{$.pid}meetingAttendValueScriptArea" style="display: text{($.meetingAttendValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="meetingAttendValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
R
roo00 已提交
1132 1133 1134 1135
		</div>
<!-----------------------------------------------会议出席------------------------------------------------------------------->

<!-----------------------------------------------会议请假------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
1136
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.meetingLeave}} (meetingLeave)</div>
R
roo00 已提交
1137 1138 1139
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1140
					<td class="editTableTitle">{{$.lp.isShow}}</td>
R
roo00 已提交
1141
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1142 1143 1144 1145
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveShowScriptArea').setStyle('display', 'none')}" name="meetingLeaveShow" text{($.meetingLeaveShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveShowScriptArea').setStyle('display', 'none')}" name="meetingLeaveShow" text{($.meetingLeaveShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveShowScriptArea').setStyle('display', 'none')}" name="meetingLeaveShow" text{($.meetingLeaveShow!='y' && $.meetingLeaveShow!='n' && $.meetingLeaveShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveShowScriptArea').setStyle('display', 'block')}" name="meetingLeaveShow" text{($.meetingLeaveShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
R
roo00 已提交
1146 1147 1148
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
1149
			<div id="text{$.pid}meetingLeaveShowScriptArea" style="display: text{($.meetingLeaveShow=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingLeaveShowScript" title="{{$.lp.showScript}} (S)"></div>
R
roo00 已提交
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164

			<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
			<!--				<tr>-->
			<!--					<td class="editTableTitle">允许编辑:</td>-->
			<!--					<td class="editTableValue">-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveEditScriptArea').setStyle('display', 'none')}" name="meetingLeaveEdit" text{($.meetingLeaveEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveEditScriptArea').setStyle('display', 'none')}" name="meetingLeaveEdit" text{($.meetingLeaveEdit!='y' && $.meetingLeaveEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveEditScriptArea').setStyle('display', 'block')}" name="meetingLeaveEdit" text{($.meetingLeaveEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
			<!--					</td>-->
			<!--				</tr>-->
			<!--			</table>-->
			<!--			<div id="text{$.pid}meetingLeaveEditScriptArea" style="display: text{($.meetingLeaveEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingLeaveEditScript" title="会议请假编辑脚本 (S)"></div>-->

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1165
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
R
roo00 已提交
1166
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1167 1168
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveValueDataArea').setStyle('display', 'block'); $('text{$.pid}meetingLeaveValueScriptArea').setStyle('display', 'none')}" name="meetingLeaveValueType" text{($.meetingLeaveValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingLeaveValueDataArea').setStyle('display', 'none'); $('text{$.pid}meetingLeaveValueScriptArea').setStyle('display', 'block')}" name="meetingLeaveValueType" text{($.meetingLeaveValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
R
roo00 已提交
1169 1170 1171 1172 1173 1174
					</td>
				</tr>
			</table>
			<div id="text{$.pid}meetingLeaveValueDataArea" style="display: text{($.meetingLeaveValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
1175
						<td class="editTableTitle">{{$.lp.formData}}:</td>
R
roo00 已提交
1176 1177 1178 1179 1180
						<td class="editTableValue"><input type="text" name="meetingLeaveValueData" value="text{$.meetingLeaveValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
1181
			<div id="text{$.pid}meetingLeaveValueScriptArea" style="display: text{($.meetingLeaveValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="meetingLeaveValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
R
roo00 已提交
1182 1183 1184 1185
		</div>
<!-----------------------------------------------会议请假------------------------------------------------------------------->

<!-----------------------------------------------会议列席------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
1186
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.meetingSit}} (meetingSit)</div>
R
roo00 已提交
1187 1188 1189
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1190
					<td class="editTableTitle">{{$.lp.isShow}}</td>
R
roo00 已提交
1191
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1192 1193 1194 1195
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitShowScriptArea').setStyle('display', 'none')}" name="meetingSitShow" text{($.meetingSitShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitShowScriptArea').setStyle('display', 'none')}" name="meetingSitShow" text{($.meetingSitShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitShowScriptArea').setStyle('display', 'none')}" name="meetingSitShow" text{($.meetingSitShow!='y' && $.meetingSitShow!='n' && $.meetingSitShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitShowScriptArea').setStyle('display', 'block')}" name="meetingSitShow" text{($.meetingSitShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
R
roo00 已提交
1196 1197 1198
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
1199
			<div id="text{$.pid}meetingSitShowScriptArea" style="display: text{($.meetingSitShow=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingSitShowScript" title="{{$.lp.showScript}} (S)"></div>
R
roo00 已提交
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214

			<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
			<!--				<tr>-->
			<!--					<td class="editTableTitle">允许编辑:</td>-->
			<!--					<td class="editTableValue">-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitEditScriptArea').setStyle('display', 'none')}" name="meetingSitEdit" text{($.meetingSitEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitEditScriptArea').setStyle('display', 'none')}" name="meetingSitEdit" text{($.meetingSitEdit!='y' && $.meetingSitEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitEditScriptArea').setStyle('display', 'block')}" name="meetingSitEdit" text{($.meetingSitEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
			<!--					</td>-->
			<!--				</tr>-->
			<!--			</table>-->
			<!--			<div id="text{$.pid}meetingSitEditScriptArea" style="display: text{($.meetingSitEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingSitEditScript" title="会议列席编辑脚本 (S)"></div>-->

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1215
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
R
roo00 已提交
1216
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1217 1218
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitValueDataArea').setStyle('display', 'block'); $('text{$.pid}meetingSitValueScriptArea').setStyle('display', 'none')}" name="meetingSitValueType" text{($.meetingSitValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingSitValueDataArea').setStyle('display', 'none'); $('text{$.pid}meetingSitValueScriptArea').setStyle('display', 'block')}" name="meetingSitValueType" text{($.meetingSitValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
R
roo00 已提交
1219 1220 1221 1222 1223 1224
					</td>
				</tr>
			</table>
			<div id="text{$.pid}meetingSitValueDataArea" style="display: text{($.meetingSitValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
1225
						<td class="editTableTitle">{{$.lp.formData}}:</td>
R
roo00 已提交
1226 1227 1228 1229 1230
						<td class="editTableValue"><input type="text" name="meetingSitValueData" value="text{$.meetingSitValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
1231
			<div id="text{$.pid}meetingSitValueScriptArea" style="display: text{($.meetingSitValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="meetingSitValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
R
roo00 已提交
1232 1233
		</div>
<!-----------------------------------------------会议列席------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
1234

1235
<!-----------------------------------------------会议记录------------------------------------------------------------------->
NoSubject's avatar
NoSubject 已提交
1236
		<div onclick="var node = this.getNext(); node.setStyle('display', ((node.getStyle('display')=='none') ? 'block' : 'none'));" style="cursor: pointer; height: 24px; padding-left:5px; text-align: left; line-height: 24px; border-top: 1px solid #cccccc; border-bottom: 1px solid #999999; font-weight: bold; background-color: #eeeeee;">{{$.lp.meetingRecord}} (meetingRecord)</div>
1237 1238 1239
		<div style="display: none">
			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1240
					<td class="editTableTitle">{{$.lp.isShow}}</td>
1241
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1242 1243 1244 1245
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordShowScriptArea').setStyle('display', 'none')}" name="meetingRecordShow" text{($.meetingRecordShow=='y')?'checked':''} type="radio" value="y"/>{{$.lp.show}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordShowScriptArea').setStyle('display', 'none')}" name="meetingRecordShow" text{($.meetingRecordShow=='n')?'checked':''} type="radio" value="n"/>{{$.lp.hide}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordShowScriptArea').setStyle('display', 'none')}" name="meetingRecordShow" text{($.meetingRecordShow!='y' && $.meetingRecordShow!='n' && $.meetingRecordShow!='s')?'checked':''} type="radio" value="a"/>{{$.lp.auto}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordShowScriptArea').setStyle('display', 'block')}" name="meetingRecordShow" text{($.meetingRecordShow=='s')?'checked':''} type="radio" value="s"/>{{$.lp.byScript}}
1246 1247 1248
					</td>
				</tr>
			</table>
NoSubject's avatar
NoSubject 已提交
1249
			<div id="text{$.pid}meetingRecordShowScriptArea" style="display: text{($.meetingRecordShow=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingRecordShowScript" title="{{$.lp.showScript}} (S)"></div>
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264

			<!--			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
			<!--				<tr>-->
			<!--					<td class="editTableTitle">允许编辑:</td>-->
			<!--					<td class="editTableValue">-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordEditScriptArea').setStyle('display', 'none')}" name="meetingRecordEdit" text{($.meetingRecordEdit=='y')?'checked':''} type="radio" value="y"/>允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordEditScriptArea').setStyle('display', 'none')}" name="meetingRecordEdit" text{($.meetingRecordEdit!='y' && $.meetingRecordEdit!='s')?'checked':''} type="radio" value="n"/>不允许-->
			<!--						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordEditScriptArea').setStyle('display', 'block')}" name="meetingRecordEdit" text{($.meetingRecordEdit=='s')?'checked':''} type="radio" value="s"/>根据脚本-->
			<!--					</td>-->
			<!--				</tr>-->
			<!--			</table>-->
			<!--			<div id="text{$.pid}meetingRecordEditScriptArea" style="display: text{($.meetingRecordEdit=='s')?'block':'none'}" class="MWFFormulaArea" name="meetingRecordEditScript" title="会议记录编辑脚本 (S)"></div>-->

			<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
				<tr>
NoSubject's avatar
NoSubject 已提交
1265
					<td class="editTableTitle">{{$.lp.bindValue}}:</td>
1266
					<td class="editTableValue">
NoSubject's avatar
NoSubject 已提交
1267 1268
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordValueDataArea').setStyle('display', 'block'); $('text{$.pid}meetingRecordValueScriptArea').setStyle('display', 'none')}" name="meetingRecordValueType" text{($.meetingRecordValueType!='script')?'checked':''} type="radio" value="data"/>{{$.lp.formData}}
						<input class="editTableRadio" onclick="if (this.checked) {$('text{$.pid}meetingRecordValueDataArea').setStyle('display', 'none'); $('text{$.pid}meetingRecordValueScriptArea').setStyle('display', 'block')}" name="meetingRecordValueType" text{($.meetingRecordValueType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.script}}
1269 1270 1271 1272 1273 1274
					</td>
				</tr>
			</table>
			<div id="text{$.pid}meetingRecordValueDataArea" style="display: text{($.meetingRecordValueType!='script')?'block':'none'}">
				<table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
					<tr>
NoSubject's avatar
NoSubject 已提交
1275
						<td class="editTableTitle">{{$.lp.formData}}:</td>
1276 1277 1278 1279 1280
						<td class="editTableValue"><input type="text" name="meetingRecordValueData" value="text{$.meetingRecordValueData}" class="editTableInput"/></td>
					</tr>
				</table>
			</div>

NoSubject's avatar
NoSubject 已提交
1281
			<div id="text{$.pid}meetingRecordValueScriptArea" style="display: text{($.meetingRecordValueType=='script')?'block':'none'}" class="MWFFormulaArea" name="meetingRecordValueScript" title="{{$.lp.bindValueScript}} (S)"></div>
1282 1283 1284
		</div>
<!-----------------------------------------------会议记录------------------------------------------------------------------->

NoSubject's avatar
NoSubject 已提交
1285
		<div class="MWFMaplist" name="customFields" title="{{$.lp.customElement}}"></div>
1286

NoSubject's avatar
NoSubject 已提交
1287
	</div>
NoSubject's avatar
NoSubject 已提交
1288
	<div title="{{$.lp.event}}"  class="MWFTab" style="overflow: hidden">
NoSubject's avatar
NoSubject 已提交
1289 1290 1291 1292 1293 1294 1295 1296
		<div class="MWFEventsArea" name="events"></div>
	</div>
	<div title="HTML"  class="MWFTab">
		<div class="MWFHTMLArea" style="font-family: Verdana, Geneva, sans-serif; font-size:14px"></div>
	</div>
	<div title="JSON"  class="MWFTab">
		<div class="MWFJSONArea" style="font-family: Verdana, Geneva, sans-serif; font-size:14px"></div>
	</div>
R
roo00 已提交
1297
</div>