You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
631 B
26 lines
631 B
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
{include file="public/head"}
|
|
<title>{$title|default=''}</title>
|
|
</head>
|
|
<body>
|
|
<div id="form-add" class="mp-form" v-cloak>
|
|
<form-builder></form-builder>
|
|
</div>
|
|
<script>
|
|
var _vm ;
|
|
mpFrame.start(function(Vue){
|
|
require(['axios','system/util/mpFormBuilder'],function(axios,mpFormBuilder){
|
|
Vue.use(mpFormBuilder,$eb,<?php echo $rules; ?>,{
|
|
action:'{$action}'
|
|
});
|
|
new Vue({
|
|
el:"#form-add",
|
|
mounted:function(){
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
|