邏輯圖后臺(tái)也只給了三種判斷審核中,審核通過,審核不通過我現(xiàn)在這樣去顯示內(nèi)容,后期會(huì)不好出現(xiàn)bug,show應(yīng)該放在前面,還是最后面?if(object.certificate_state == 1){
$("u-Authentication").hide();//認(rèn)證頁面
$("u-InTheReview").show();//審核中
$("u-Approved").hide();//審核通過
$("u-AuditDidNotPass").hide();//審核不通過}else if(object.certificate_state == 2){
$("u-Authentication").hide();//認(rèn)證頁面
$("u-InTheReview").hide();//審核中
$("u-Approved").show();//審核通過
$("u-AuditDidNotPass").hide();//審核不通過}else if(object.certificate_state == 3){
$("u-Authentication").hide();//認(rèn)證頁面
$("u-InTheReview").hide();//審核中
$("u-Approved").hide();//審核通過
$("u-AuditDidNotPass").show();//審核不通過}else{
$("u-Authentication").show();//認(rèn)證頁面
$("u-InTheReview").hide();//審核中
$("u-Approved").hide();//審核通過
$("u-AuditDidNotPass").hide();//審核不通過}現(xiàn)在改成這樣了
show()和hide()應(yīng)該怎么顯示?會(huì)不會(huì)出現(xiàn)bug,能不能提前有個(gè)解決方案(防患于未然)?
寶慕林4294392
2018-10-01 15:35:37