From 95ec3536dfd071443a5704dc28eb30fd19b4ae98 Mon Sep 17 00:00:00 2001 From: nickchange <126672920+nickchange@users.noreply.github.com> Date: 星期三, 11 十月 2023 19:41:49 +0800 Subject: [PATCH] 10.13 --- cloud-server-management/src/main/webapp/WEB-INF/view/system/tCompetition/TCompetition_add.html | 26 ++++++++++++++++++++------ 1 files changed, 20 insertions(+), 6 deletions(-) diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCompetition/TCompetition_add.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCompetition/TCompetition_add.html index 92cd00c..95a8459 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCompetition/TCompetition_add.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCompetition/TCompetition_add.html @@ -48,17 +48,31 @@ <div class="form-horizontal" id="carInfoForm"> - <div class="form-group" id="provinceCode"> - <label class="col-sm-3 control-label">举办省:</label> + + <div class="form-group" > + <label class="col-sm-3 control-label">所属运营商:</label> <div class="col-sm-9"> - <select class="form-control" id="pCode" name="pCode" onchange="TCarInfoDlg.oneChange(this)"> - <option value="">选择省</option> - @for(obj in list){ - <option value="${obj.code}">${obj.name}</option> + <select class="form-control" id="account" name="account" onchange="TCarInfoDlg.oneChange1(this)"> + <option value="">选择运营商</option> + @for(i in yysList){ + <option value="${i.id}">${i.name}</option> @} </select> </div> </div> + + + <div class="form-group" id="provinceCode"> + <label class="col-sm-3 control-label">所在省:</label> + <div class="col-sm-9"> + <select class="form-control" id="pCode" name="pCode" onchange="TCarInfoDlg.oneChange2(this)"> + </select> + </div> + </div> + + + + <div class="form-group" id="cityCode"> <label class="col-sm-3 control-label">举办市:</label> <div class="col-sm-9"> -- Gitblit v1.7.1