mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
40 lines
579 B
JavaScript
40 lines
579 B
JavaScript
/**
|
|
* Created by 7d-vision on 2016/11/7.
|
|
*/
|
|
(function ($) {
|
|
|
|
$.buildForm = function ( formObj ) {
|
|
var formHtml = '<div class="box" id="formBox"><div class="box-body">';
|
|
|
|
formHtml += '</div></div>';
|
|
return formHtml;
|
|
};
|
|
|
|
function buildInput( inputObj ) {
|
|
|
|
}
|
|
|
|
function buildButton( buttonObj ) {
|
|
|
|
}
|
|
|
|
function buildTextarea() {
|
|
|
|
}
|
|
|
|
function buildSelect() {
|
|
|
|
}
|
|
|
|
function buildEditors() {
|
|
|
|
}
|
|
|
|
function buildUpload() {
|
|
|
|
}
|
|
|
|
function buildCode() {
|
|
|
|
}
|
|
})(jQuery); |