From 7fed6abb28ea81e81198d8e58abd76f483289098 Mon Sep 17 00:00:00 2001 From: qiankunpingtai Date: Sun, 5 May 2019 11:58:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BA=94=E7=94=A8=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E9=80=89=E6=8B=A9=E6=A1=86=E6=B2=A1=E6=9C=89=E9=80=89?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp_web/pages/manage/app.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/erp_web/pages/manage/app.html b/erp_web/pages/manage/app.html index fd3e4407..f4614768 100644 --- a/erp_web/pages/manage/app.html +++ b/erp_web/pages/manage/app.html @@ -425,13 +425,13 @@ $("#URL").val(rowsdata.url); $("#Width").val(rowsdata.width); $("#Height").val(rowsdata.height); - $("#ReSize").attr("checked", rowsdata.resize == 'true' ? true : false); - $("#OpenMax").attr("checked", rowsdata.openmax == 'true' ? true : false); - $("#Flash").attr("checked", rowsdata.flash == 'true' ? true : false); + $("#ReSize").attr("checked", rowsdata.resize === true ? true : false); + $("#OpenMax").attr("checked", rowsdata.openmax === true ? true : false); + $("#Flash").attr("checked", rowsdata.flash === true ? true : false); $("#ZL").val(rowsdata.zl); $("#Sort").val(rowsdata.sort); $("#Remark").val(rowsdata.remark); - $("#Enabled").attr("checked", rowsdata.enabled == 'true' ? true : false); + $("#Enabled").attr("checked", rowsdata.enabled === true ? true : false); orgApp = rowsdata.name; $('#appDlg').dialog('open').dialog('setTitle', ' 编辑应用信息');