风险整改分析
This commit is contained in:
parent
188d726024
commit
073d35c14e
|
|
@ -39,7 +39,7 @@ function getTypeDetails() {
|
||||||
$('#rectTime').val(recDate);
|
$('#rectTime').val(recDate);
|
||||||
let rectImgPath = obj.rectImgPath;
|
let rectImgPath = obj.rectImgPath;
|
||||||
let html = '';
|
let html = '';
|
||||||
if (rectImgPath.length > 0) {
|
if (rectImgPath && rectImgPath.length > 0) {
|
||||||
$.each(rectImgPath, function (index, item) {
|
$.each(rectImgPath, function (index, item) {
|
||||||
let path = photoUrl + item + '?token=' + token;
|
let path = photoUrl + item + '?token=' + token;
|
||||||
html += '<img src="' + path + '">'
|
html += '<img src="' + path + '">'
|
||||||
|
|
|
||||||
|
|
@ -232,6 +232,9 @@ function getReqParams(page, limit, type) {
|
||||||
function queryTable(type) {
|
function queryTable(type) {
|
||||||
if (type === 2) {
|
if (type === 2) {
|
||||||
$('#proName').val('');
|
$('#proName').val('');
|
||||||
|
$('#riskLevel').val('');
|
||||||
|
$('#isRect').val('');
|
||||||
|
layui.form.render();
|
||||||
}
|
}
|
||||||
let pattern = new RegExp("[%_<>]");
|
let pattern = new RegExp("[%_<>]");
|
||||||
if (pattern.test($("#proName").val())) {
|
if (pattern.test($("#proName").val())) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue