rpt_tpl_detail_field_location.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <div class="tab-pane" id="rpttplfieldlocation" role="tabpanel">
  2. <div class="main-data">
  3. <div class="p-3">
  4. <div class="row">
  5. <div class="form-group col-md-8" style="max-height: 410px;">
  6. <div class="ztree-warp" style="height: 410px;">
  7. <ul id="tpl_data_info_reversed" class="ztree"></ul>
  8. </div>
  9. </div>
  10. <div class="form-group col-md-4" style="max-height: 410px;">
  11. <div class="tab-bar">
  12. <div class="form-group">
  13. <div class="ztree-warp" style="height: 130px;">
  14. <ul id="tpl_discrete_fields_params_reversed" class="ztree"></ul>
  15. </div>
  16. <br/>
  17. <div class="ztree-warp" style="height: 240px;">
  18. <ul id="tpl_data_selected_field_map_reversed" class="ztree"></ul>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="row" id="element_font">
  25. <div class="form-group col-md-3">
  26. <label>字体选择</label>
  27. <select class="form-control" id="elementFonts" onchange="rpt_tpl_cfg_helper.fontChange(this)" disabled></select>
  28. </div>
  29. <div class="form-group col-md-3">
  30. <label>字体名称</label>
  31. <input class="form-control" id="eleFontName" value="" onchange="rpt_tpl_cfg_helper.fontNameChange(this)" disabled>
  32. </div>
  33. <div class="form-group col-md-2">
  34. <label>字体大小</label>
  35. <input class="form-control input-sm" id="eleFontSize" type="number" value="12" step="1" min="6" max="56" onchange="rpt_tpl_cfg_helper.fontSizeChange(this)" disabled>
  36. </div>
  37. <div class="form-group col-md-4">
  38. <label>字体其他特性</label>
  39. <div class="form-check">
  40. <label class="form-check-label">
  41. <input type="checkbox" class="form-check-input" id="eleFontBold" onchange="rpt_tpl_cfg_helper.fontBoldChange(this)" disabled>
  42. 粗体
  43. </label>&nbsp&nbsp
  44. <label class="form-check-label">
  45. <input type="checkbox" class="form-check-input" id="eleFontItalic" onchange="rpt_tpl_cfg_helper.fontItalicChange(this)" disabled>
  46. 斜体
  47. </label>&nbsp&nbsp
  48. <label class="form-check-label">
  49. <input type="checkbox" class="form-check-input" id="eleFontUnderline" onchange="rpt_tpl_cfg_helper.fontUnderlineChange(this)" disabled>
  50. 下划线
  51. </label>
  52. </div>
  53. </div>
  54. </div>
  55. <div class="row" id="element_border">
  56. <div class="form-group col-md-3">
  57. <label>边框样式</label>
  58. <select class="form-control" id="elementBorders" onchange="rpt_tpl_cfg_helper.borderChange(this)"></select>
  59. </div>
  60. <div class="form-group col-md-2">
  61. <label>左边</label>
  62. <input class="form-control input-sm" id="eleBorderLeft" type="number" value="0" step="1" min="0" max="3" disabled>
  63. </div>
  64. <div class="form-group col-md-2">
  65. <label>右边</label>
  66. <input class="form-control input-sm" id="eleBorderRight" type="number" value="0" step="1" min="0" max="3" disabled>
  67. </div>
  68. <div class="form-group col-md-2">
  69. <label>上边</label>
  70. <input class="form-control input-sm" id="eleBorderTop" type="number" value="0" step="1" min="0" max="3" disabled>
  71. </div>
  72. <div class="form-group col-md-2">
  73. <label>下边</label>
  74. <input class="form-control input-sm" id="eleBorderBottom" type="number" value="0" step="1" min="0" max="3" disabled>
  75. </div>
  76. </div>
  77. <div class="row" id="element_control">
  78. <div class="form-group col-md-3">
  79. <label>控制选择</label>
  80. <select class="form-control" id="elementControls" onchange="rpt_tpl_cfg_helper.controlChange(this)"></select>
  81. </div>
  82. <div class="form-group col-md-2">
  83. <label>横向对齐</label>
  84. <select class="form-control" id="elementAlignmentHorizon" onchange="rpt_tpl_cfg_helper.changeAlignment(this, 'horizon')" disabled></select>
  85. </div>
  86. <div class="form-group col-md-2">
  87. <label>纵向对齐</label>
  88. <select class="form-control" id="elementAlignmentVertical" onchange="rpt_tpl_cfg_helper.changeAlignment(this, 'vertical')" disabled></select>
  89. </div>
  90. <div class="form-group col-md-5">
  91. <label>控制其他特性</label>
  92. <div class="form-check">
  93. <label class="form-check-label">
  94. <input type="checkbox" class="form-check-input" id="eleShrink" onchange="" disabled>
  95. 自动缩放
  96. </label>&nbsp&nbsp
  97. <label class="form-check-label">
  98. <input type="checkbox" class="form-check-input" id="eleShowZero" onchange="" disabled>
  99. 显示0
  100. </label>&nbsp&nbsp
  101. <label class="form-check-label">
  102. <input type="checkbox" class="form-check-input" id="eleAutoWrap" onchange="" disabled>
  103. 自动折行
  104. </label>
  105. </div>
  106. </div>
  107. </div>
  108. <div class="row" id="element_area_1">
  109. <div class="form-group col-md-2">
  110. <label>左</label><label>&nbsp&nbsp&nbsp</label>
  111. <label class="form-check-label">
  112. <input type="checkbox" class="form-check-input" id="isPercentage_Left" onchange="rpt_tpl_cfg_helper.changeAreaCalcType(this, 'Left')">
  113. 百分比
  114. </label>
  115. <input class="form-control input-sm" id="elementArea_Left" type="number" value="0" step="1" min="0" max="100" onchange="rpt_tpl_cfg_helper.changeArea(this, 'Left')" onkeyup="rpt_tpl_cfg_helper.changeArea(this, 'Left')">
  116. </div>
  117. <div class="form-group col-md-2">
  118. <label>右</label><label>&nbsp&nbsp&nbsp</label>
  119. <label class="form-check-label">
  120. <input type="checkbox" class="form-check-input" id="isPercentage_Right" onchange="rpt_tpl_cfg_helper.changeAreaCalcType(this, 'Right')">
  121. 百分比
  122. </label>
  123. <input class="form-control input-sm" id="elementArea_Right" type="number" value="0" step="1" min="0" max="100" onchange="rpt_tpl_cfg_helper.changeArea(this, 'Right')" onkeyup="rpt_tpl_cfg_helper.changeArea(this, 'Right')">
  124. </div>
  125. <div class="form-group col-md-2">
  126. <label>上</label><label>&nbsp&nbsp&nbsp</label>
  127. <label class="form-check-label">
  128. <input type="checkbox" class="form-check-input" id="isPercentage_Top" onchange="rpt_tpl_cfg_helper.changeAreaCalcType(this, 'Top')">
  129. 百分比
  130. </label>
  131. <input class="form-control input-sm" id="elementArea_Top" type="number" value="0" step="1" min="0" max="100" onchange="rpt_tpl_cfg_helper.changeArea(this, 'Top')" onkeyup="rpt_tpl_cfg_helper.changeArea(this, 'Top')">
  132. </div>
  133. <div class="form-group col-md-2">
  134. <label>下</label><label>&nbsp&nbsp&nbsp</label>
  135. <label class="form-check-label">
  136. <input type="checkbox" class="form-check-input" id="isPercentage_Bottom" onchange="rpt_tpl_cfg_helper.changeAreaCalcType(this, 'Bottom')">
  137. 百分比
  138. </label>
  139. <input class="form-control input-sm" id="elementArea_Bottom" type="number" value="0" step="1" min="0" max="100" onchange="rpt_tpl_cfg_helper.changeArea(this, 'Bottom')" onkeyup="rpt_tpl_cfg_helper.changeArea(this, 'Bottom')">
  140. </div>
  141. <div class="form-group col-md-2">
  142. <label>&nbsp&nbsp&nbsp</label>
  143. <div class="form-check">
  144. <label class="form-check-label">
  145. <input type="checkbox" class="form-check-input" id="eleAutoHeight" onchange="rpt_tpl_cfg_helper.changeAutoHeight(this)">
  146. 自动行高
  147. </label>&nbsp&nbsp
  148. </div>
  149. </div>
  150. </div>
  151. <div class="row" id="element_pre_suff">
  152. <div class="input-group col-3">
  153. <div class="input-group-addon">前缀</div>
  154. <input class="form-control" id="elePrefix" value="" onkeyup="rpt_tpl_cfg_helper.changePreSuff(this, 'Prefix')">
  155. </div>
  156. <div class="input-group col-3">
  157. <div class="input-group-addon">后缀</div>
  158. <input class="form-control" id="eleSuffix" value="" onkeyup="rpt_tpl_cfg_helper.changePreSuff(this, 'Suffix')">
  159. </div>
  160. <div class="input-group col-3">
  161. <div class="input-group-addon">格式</div>
  162. <input class="form-control" id="eleFormat" value="" onkeyup="rpt_tpl_cfg_helper.changeFormat(this)">
  163. </div>
  164. <div class="input-group col-3">
  165. <div class="input-group-addon">默认值</div>
  166. <input class="form-control" id="eleDftValue" value="" onkeyup="rpt_tpl_cfg_helper.changeDftValue(this)">
  167. </div>
  168. </div>
  169. </div>
  170. </div>
  171. </div>