Files
OMS/app/wap/view/store/user_info.html
2026-01-04 17:22:44 +08:00

92 lines
3.7 KiB
HTML

<!--
Copyright 2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="author" content="tyler chao">
<meta name="keywords" content="keywords">
<meta name="description" content="description">
<title>基本信息</title>
<link rel="stylesheet" href="<{$env.app.res_url}>/css/mobile.min.css">
<link rel="stylesheet" href="<{$env.app.res_url}>/css/main.min.css">
<style type="text/css">
.form-inline label, .form-inline input {
line-height: 2rem; height:2rem;
}
</style>
</head>
<body>
<{if $show_header}>
<header class="fixed">
<div class="top-bar" data-topbar>
<div class="pos-left">
<a href="javascript:history.back();" class="icon-arrow-back"></a>
</div>
<h1>基本信息</h1>
<div class="pos-right"><a href="" class="icon-refresh"></a></div>
</div>
</header>
<{/if}>
<main id="main" class="container no-margin">
<h2 class="title aline"><i class="icon-man text-reverse"></i> <{$userInfo.name}>,工号:<{$userInfo.op_no}></h2>
<form action="<{$delivery_link.info}>" method="post" data-validator="ajax" class="form-inline">
<div class="form-row">
<div class="grid-3"><label for="">修改昵称:</label></div>
<div class="grid-1"><input name="name" type="text" id="name" maxlength="16" required data-alerts="请填写您要修改的昵称" value="<{$userInfo.name}>"></div>
</div>
<div class="form-row">
<div class="grid-3"><label for="">门店编码:</label></div>
<div class="grid-1"><label for=""><{$storeInfo.store_bn}></label></div>
</div>
<div class="form-row">
<div class="grid-3"><label for="">门店名称:</label></div>
<div class="grid-1"><label for=""><{$storeInfo.name}></label></div>
</div>
<div class="form-row">
<div class="grid-3"><label for="">所属省市区:</label></div>
<div class="grid-1"><label for=""><{$storeInfo.district}></label></div>
</div>
<div class="form-row">
<div class="grid-3"><label for="">联系人:</label></div>
<div class="grid-1"><input name="contacter" type="text" id="contacter" value="<{$storeInfo.contacter}>" maxlength="16" required data-alerts="请填写联系人"></div>
</div>
<div class="form-row">
<div class="grid-3"><label for="">手机号码:</label></div>
<div class="grid-1"><input name="mobile" type="text" id="mobile" value="<{$storeInfo.mobile}>" maxlength="11" required data-alerts="请填写手机号码"></div>
</div>
<div class="form-row">
<div class="grid-3"><label for="">门店地址:</label></div>
<div class="grid-1">
<textarea name="addr" id="addr" rows="3" required data-alerts="请填写门店地址"><{$storeInfo.addr}></textarea>
</div>
</div>
<div class="action-bar">
<button type="submit" class="primary expand">保存</button>
</div>
</form>
</main>
<{include file="store/footer.html"}>
</body>
</html>