问题修复

This commit is contained in:
hayu 2024-07-31 16:23:45 +08:00
parent 699fe7a49a
commit 24d777675f
2 changed files with 1 additions and 18 deletions

View File

@ -30,6 +30,7 @@
WHERE
is_hg=0
and tsd.dev_type_name is not null
and te.`status`=4
<if test="sampleTools != null and sampleTools != ''">
and tsd.dev_type_name like concat('%',#{sampleTools}, '%')
</if>

View File

@ -171,11 +171,6 @@
passwordError.textContent = passwordTip;
return false;
}
// formdata.oldPassword = encryptCBC(formdata.oldPassword);
// formdata.loginName = encryptCBC(formdata.loginName);
// formdata.username = encryptCBC(formdata.username);
// formdata.password = encryptCBC(formdata.newPassword);
console.log(formdata)
var params={
encryptedData:encryptCBC(JSON.stringify(formdata))
@ -194,19 +189,6 @@
}, function (xhr) {
error(xhr)
});
// $.ajax({
// type : 'put',
// url : ctxPath + '/users/password',
// contentType: "application/json; charset=utf-8",
// data: JSON.stringify(formdata),
// success : function(data) {
// layer.msg("修改成功", {shift: -1, time: 1000}, function(){
// location.href = ctxPath + "/pages/user/userList.html";
// });
// }
// });
})
}