Compare commits
4 Commits
a2a02a35f5
...
7935d60668
| Author | SHA1 | Date |
|---|---|---|
|
|
7935d60668 | 2 weeks ago |
|
|
829196f7f4 | 2 weeks ago |
|
|
61164e395b | 3 weeks ago |
|
|
fd8ff44d15 | 3 weeks ago |
2 changed files with 28 additions and 0 deletions
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
package apelet.association.controller.plugin.formPlugin; |
||||
|
||||
import apelet.association.utils.CreatNumberUtils; |
||||
import apelet.common.core.object.ObjectValue; |
||||
import apelet.common.online.abstractplugin.ExecutePluginParent; |
||||
import apelet.common.online.model.constant.AttributeEnum; |
||||
public class ClueManageFormPlugin extends ExecutePluginParent { |
||||
@Override |
||||
public void formCreated(String widgetVariableName, ObjectValue objectValue) { |
||||
super.formCreated(widgetVariableName, objectValue); |
||||
// this.setAttribute("seekInfo","11");
|
||||
// this.setWidgetAttribute("number", AttributeEnum.VALUE_CHANGE, "123");
|
||||
CreatNumberUtils creatNumberUtils = new CreatNumberUtils(); |
||||
this.setWidgetAttribute("billstatus", AttributeEnum.VALUE_CHANGE,"1"); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
package apelet.association.utils; |
||||
|
||||
import java.time.LocalDate; |
||||
import java.time.format.DateTimeFormatter; |
||||
|
||||
public class CreatNumberUtils { |
||||
public String creatNumber() { |
||||
return LocalDate.now().format(DateTimeFormatter.ofPattern("yyyyMMdd")); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue