修改铭牌选择问题

This commit is contained in:
liaozetao
2024-05-23 16:41:45 +08:00
parent 49dc775fff
commit afe984fe84

View File

@@ -412,7 +412,7 @@ export default {
}
$('#nameplateType1').attr("disabled", "true");
if (json.isCustomWord == 0) {
if (json.isCustomWord == 1) {
$('input[name="isCustomWord"]').get(0).checked = true;
$('#fixedWord-div').removeClass("hidden");
} else {
@@ -586,7 +586,7 @@ export default {
});
//是否自定义文案变化
$('input[type=radio][name=isCustomWord]').change(function () {
if ($(this).val() == 0) {
if ($(this).val() == 1) {
$('#fixedWord-div').removeClass("hidden");
} else {
$('#fixedWord-div').addClass("hidden");