21 lines
526 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 版 本 PIT-ADMS V7.0.3 敏捷开发框架
* Copyright (c) 2013-2018 Hexagon PPM
* 创建人:力软-前端开发组
* 日 期2018.04.28
* 描 述:自定义表单预览
*/
var keyValue = request('keyValue');
var bootstrap = function ($, learun) {
"use strict";
var formData;
var page = {
init: function () {
if (!!keyValue) {
formData = top[keyValue];
$('body').lrCustmerFormRender(formData);
}
}
};
page.init();
}