1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <!--suppress JSAnnotator -->
- <html lang="zh-CN">
- <head>
- {include file="public/head"}
- <title>{$title}</title>
- </head>
- <body>
- <div id="form-add" class="mp-form" v-cloak="">
- <form-builder></form-builder>
- </div>
- <script>
- var _vm ;
- var rules = {$rules};
- // console.log(rules);
- _mpApi = parent._mpApi;
- mpFrame.start(function(Vue){
- require(['axios','system/util/mpFormBuilder'],function(axios,mpFormBuilder){
- Vue.use(mpFormBuilder,_mpApi,rules,{
- action:'{$save}'
- });
- new Vue({
- el:"#form-add",
- mounted:function(){
- }
- })
- });
- });
- </script>
- </body>
|