|
@@ -19,6 +19,7 @@ const {
|
|
|
} = require('./promise.js');
|
|
|
const $ = require("jquery");
|
|
|
require("./jquery-migrate");
|
|
|
+require("./PIE");
|
|
|
const jqprint = require("../js/jquery.PrintArea")
|
|
|
let printing = require('./../images/printing.png');
|
|
|
let printing2 = require('./../images/printing2.png');
|
|
@@ -286,7 +287,7 @@ function copy(name) {
|
|
|
$(".copy").click(function () {
|
|
|
var texts = document.getElementById("result_title").innerText;
|
|
|
if (texts == '') {
|
|
|
- Toast('结果为空,无法复制', 500, 'warn')
|
|
|
+ Toast('结果为空,无法复制', 500000000000, 'warn')
|
|
|
return
|
|
|
}
|
|
|
var inputs = document.getElementById("inputs");
|
|
@@ -294,7 +295,7 @@ function copy(name) {
|
|
|
console.log(inputs.value)
|
|
|
inputs.select(); // 选中文本
|
|
|
document.execCommand("copy"); // 执行浏览器复制命令
|
|
|
- Toast('复制成功', 500, 'success')
|
|
|
+ Toast('复制成功', 50000000000, 'success')
|
|
|
setTimeout(() => {
|
|
|
window.close()
|
|
|
}, 500)
|
|
@@ -399,7 +400,7 @@ function getResult(pushInfo, textType) {
|
|
|
$(".foot").css('display', 'block')
|
|
|
}
|
|
|
} else {
|
|
|
- Toast('温馨提示:必填选项不能为空~', 500, 'warn')
|
|
|
+ Toast('温馨提示:必填选项不能为空~', 500000000000000, 'warn')
|
|
|
}
|
|
|
})
|
|
|
$(".printing").hover(
|