mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 10:37:55 +08:00
转移.net core 3.1,为.NET 5做准备
This commit is contained in:
62
OpenAuth.Mvc/wwwroot/userJs/verification.js
Normal file
62
OpenAuth.Mvc/wwwroot/userJs/verification.js
Normal file
@@ -0,0 +1,62 @@
|
||||
layui.config({
|
||||
base: "/js/"
|
||||
}).use(['form', 'vue', 'ztree', 'layer', 'utils', 'element', 'slimscroll', 'jquery', 'droptree', 'openauth', 'flow/gooflow', 'flowlayout'], function () {
|
||||
var form = layui.form, element = layui.element,
|
||||
layer = (top == undefined || top.layer === undefined )? layui.layer : top.layer,
|
||||
$ = layui.jquery;
|
||||
var openauth = layui.openauth;
|
||||
var index = layer.getFrameIndex(window.name); //获取窗口索引
|
||||
|
||||
var id = $.getUrlParam("id"); //ID
|
||||
$("#FlowInstanceId").val(id);
|
||||
|
||||
|
||||
$.getJSON('/FlowInstances/get?id=' + id,
|
||||
function (data) {
|
||||
var obj = data.Result;
|
||||
var schemeContent = JSON.parse(obj.SchemeContent);
|
||||
var flowDesignPanel = $('#flowPanel').flowdesign({
|
||||
haveTool: false
|
||||
, isprocessing: true
|
||||
, activityId: obj.ActivityId
|
||||
, nodeData: schemeContent.nodes
|
||||
, flowcontent:schemeContent
|
||||
});
|
||||
|
||||
if (data.Result.FrmType == 0) {
|
||||
$("#frmPreview").html(data.Result.FrmPreviewHtml);
|
||||
} else {
|
||||
$("#frmPreview").html("复杂表单暂时只能在<a href='http://demo.openauth.me:1803'>企业版</a>查看,开源版预计会在以后的开源版本中发布");
|
||||
}
|
||||
|
||||
//让层自适应iframe
|
||||
layer.iframeAuto(index);
|
||||
|
||||
$(".GooFlow_work").slimScroll({
|
||||
height: 'auto'
|
||||
});
|
||||
});
|
||||
|
||||
//提交数据
|
||||
form.on('submit(formSubmit)',
|
||||
function (data) {
|
||||
$.post("/FlowInstances/Verification",
|
||||
data.field,
|
||||
function (result) {
|
||||
layer.msg(result.Message);
|
||||
},
|
||||
"json");
|
||||
|
||||
return false; //阻止表单跳转。
|
||||
});
|
||||
|
||||
//$(window).resize(function() {
|
||||
// flowDesignPanel.reinitSize($(window).width()-30, $(window).height()-100);
|
||||
//});
|
||||
|
||||
//该函数供给父窗口确定时调用
|
||||
submit = function () {
|
||||
//只能用隐藏的submit btn才行,用form.submit()时data.field里没有数据
|
||||
$("#btnSubmit").click();
|
||||
}
|
||||
})
|
Reference in New Issue
Block a user