|
@@ -416,9 +416,7 @@ public class TextdictInfoController extends BladeController {
|
|
|
|
|
|
} else if (textdictInfo.getTextId().equals("textarea")) { // 文本域
|
|
|
int rowspan = element.attr("ROWSPAN").equals("") ? 0 : Integer.parseInt(element.attr("ROWSPAN"));
|
|
|
-
|
|
|
element.empty().append("<el-input :rows=" + rowspan * 2 + " id=" + keyname + " @mouseup.left=" + leftCli + " @keydown.shift.up='keyupShiftUp' @keydown.shift.down='keyupShiftDown' @keydown.shift.left='keyupShiftLeft' @keydown.shift.right='keyupShiftRight' type='textarea' placeholder=" + placeholder + " v-model=" + vmode + " keyname=" + keyname + " weighing=" + weighing + " @contextmenu.prevent.native='contextmenuClick(" + parm + ")' @mouseup.right='RightClick(" + parm + ")' trIndex=" + trindex + " tdIndex=" + tdindex + " x1=" + x1 + " x2=" + x2 + " y1=" + y1 + " y2=" + y2 + " style='width:100%;height:100%' > </el-input>");
|
|
|
-
|
|
|
} else if (textdictInfo.getTextId().equals("select")) { // 下拉框
|
|
|
String selectText = " <el-select id=" + keyname + " v-model=" + vmode + " @keydown.shift.up='keyupShiftUp' @keydown.shift.down='keyupShiftDown' @keydown.shift.left='keyupShiftLeft' @keydown.shift.right='keyupShiftRight' @mouseup.right='RightClick(" + parm +")' keyname=" + keyname + " weighing=" + weighing + " placeholder=" + placeholder + " trIndex=" + trindex + " tdIndex=" + tdindex + " x1=" + x1 + " x2=" + x2 + " y1=" + y1 + " y2=" + y2 + ">"; //v-model="+keyname+"
|
|
|
List<TextdictInfo_vo> optionList = textdictInfo.getTextInfo();
|
|
@@ -454,7 +452,7 @@ public class TextdictInfoController extends BladeController {
|
|
|
}
|
|
|
} else if (textdictInfo.getTextId().equals("date")) { // 日期--年月日时分秒
|
|
|
List<DateFormat> dateFormat = textdictInfo.getDateFormat();
|
|
|
- String dataf = "yyyy年MM月dd日";
|
|
|
+ String dataf = "YYYY年MM月DD日";
|
|
|
String dateType = "date";
|
|
|
if(dateFormat!=null && dateFormat.size()>=1){
|
|
|
Map<String, String> dateForm = ExcelInfoUtils.getDateFormat(dateFormat);
|