From a4497ecba195a1ac4a81fbbd2a541a7f109609de Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期五, 04 八月 2023 17:03:34 +0800 Subject: [PATCH] 后台代码 --赛事模块 --- cloud-server-management/src/main/webapp/WEB-INF/view/system/tShop/TShop_edit.html | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tShop/TShop_edit.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tShop/TShop_edit.html index e92282e..87505b3 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tShop/TShop_edit.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tShop/TShop_edit.html @@ -1,9 +1,11 @@ @layout("/common/_container.html"){ +<script type="text/javascript" src="http://webapi.amap.com/maps?v=1.4.15&key=77b37f0753049c4e712ea79a24e0719c"></script> <div class="ibox float-e-margins"> <div class="ibox-content"> <div class="form-horizontal" id="carInfoForm"> <input hidden id="id" value="${item.id}"> + <div class="form-group" id="provinceCode"> <label class="col-sm-3 control-label">所在省:</label> <div class="col-sm-9"> @@ -11,7 +13,6 @@ <option value="">选择省</option> @for(obj in list){ <option value="${obj.code}" ${obj.code == item.provinceCode ? 'selected=selected' : ''}>${obj.name}</option> - <option value="${obj.code}">${obj.name}</option> @} </select> </div> @@ -40,7 +41,17 @@ </div> <#input id="name" name="门店名称" type="text" value="${item.name}"/> <#input id="phone" name="联系电话" type="text" value="${item.phone}"/> - <#input id="address" name="门店地址" type="text" value="${item.address}"/> + <div class="form-group"> + <label class="col-sm-3 control-label">门店地址:</label> + <div class="col-sm-9"> + <input class="form-control" id="address" name="address" type="text" value="${item.address}" onchange="TCarInfoDlg.searchByStationName(this,1)"> + + </div> + </div> + <div class="col-sm-10" style="margin-left: 397px;width: 70%;" > + <!-- 创建地图容器--> + <div id="container" style="height: 500px;" ></div> + </div> <#input id="time" name="营业时间" type="text" value="${time}"/> <#input id="intro" name="门店介绍" type="text" value="${item.introduce}"/> <#input id="userName" name="管理员姓名" type="text" value="${city.name}"/> @@ -69,5 +80,6 @@ }); </script> <script type="application/javascript"> + </script> @} -- Gitblit v1.7.1