黄海 7 months ago
commit f4a0746968

@ -25,44 +25,61 @@
var $ = layui.jquery;
// $.ajax({
// type: "GET",
// dataType: "json",
// async: false,
// url: "/QingLong/global/getGlobalByCodes",
// success: function (res) {
// if (res.success) {
// var iframe = '<iframe src="http://10.10.14.207:8080/ui/chat/' + appId + '" style="width: 100%; height: 100%;" frameborder="0" allow="microphone"></iframe>';
// } else {
// var loadIndex = layer.msg('AI助手初始化中...', {
// icon: 16,
// shade: 0.01
// });
$.ajax({
type: "GET",
dataType: "json",
async: false,
url: "/QingLong/maxkb/getApplication",
success: function (res) {
if (res.success) {
var appId = res.data;
var iframe = '<iframe src="http://10.10.14.207:8080/ui/chat/' + appId + '" style="width: 100%; height: 100%;" frameborder="0" allow="microphone"></iframe>';
$('body').append(iframe);
} else {
var loadIndex = layer.msg('AI助手初始化中...', {
icon: 16,
shade: 0.01
});
$.ajax({
url: '/QingLong/maxkb/createApplication',
type: 'post',
async: false,
success: function (result) {
if (result.success) {
layer.close(loadIndex);
var appId = res.data;
var iframe = '<iframe src="http://10.10.14.207:8080/ui/chat/' + appId + '" style="width: 100%; height: 100%;" frameborder="0" allow="microphone"></iframe>';
$('body').append(iframe);
} else {
layer.close(loadIndex);
layer.msg(result.message, {
icon: 2,
time: 2000
});
}
}
});
}
}
});
// var iframe = '<iframe src="http://10.10.14.207:8080/ui/chat/' + appId + '" style="width: 100%; height: 100%;" frameborder="0" allow="microphone"></iframe>';
// }
// }
// var loadIndex = layer.msg('AI助手初始化中...', {
// icon: 16,
// shade: 0.05
// });
var loadIndex = layer.msg('AI助手初始化中...', {
icon: 16,
shade: 0.05
});
// 模拟关闭
setTimeout(function () {
layer.close(loadIndex);
var appId = "5b45c7e216579a41";
var iframe = '<iframe src="http://10.10.14.207:8080/ui/chat/' + appId + '" style="width: 100%; height: 99.5%;" frameborder="0" allow="microphone"></iframe>';
$('body').append(iframe);
// // 模拟关闭
// setTimeout(function () {
// layer.close(loadIndex);
// var appId = "5b45c7e216579a41";
// var iframe = '<iframe src="http://10.10.14.207:8080/ui/chat/' + appId + '" style="width: 100%; height: 99.5%;" frameborder="0" allow="microphone"></iframe>';
// $('body').append(iframe);
}, 1000);
// }, 1000);
});

Loading…
Cancel
Save