|
|
@@ -320,6 +320,10 @@ public class LinkdataInfoController extends BladeController {
|
|
|
element1.attr("placeholder", enName).attr("keyName", dataInfo2).attr("id", dataInfo2);
|
|
|
element1.attr("weighing", "100");
|
|
|
element1.attr("v-model", "formData." + dataInfo2);
|
|
|
+ // 修正鼠标左键点击事件
|
|
|
+ if ("el-input".equals(element1.tagName())) {
|
|
|
+ element1.removeAttr("@mouseup.left").attr("@mouseup.left", "inputLeftClick($event,'" + dataInfo2 + "')");
|
|
|
+ }
|
|
|
element.attr("@click", "getInformation('" + enName + "'," + linkdataInfo.getTrIndex() + "," + linkdataInfo.getTdIndex() + ")");
|
|
|
}
|
|
|
|