Files
OMS/app/tbo2o/view/admin/shop/shop_setting.html
2026-01-04 19:08:31 +08:00

87 lines
3.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright 2012-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.
-->
<div class="gridlist-action data-action" id="dataAction" style="margin-bottom:10px;padding:5px; border:0;">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td nowrap="nowrap" style="width:auto;">
<div class="tabs-wrap select-tabs delivery-cfg-tab">
<ul style="margin-top:2px;padding:0;">
<li class="tab current" >
<span><a href="javascript:void(0);"><{t}>基本配置<{/t}></a></span>
</li>
</ul>
</div>
</td>
</tr>
</table>
</div>
<form action='index.php?app=tbo2o&ctl=admin_shop&act=setting' method='post'>
<div class='delivery-cfg-item'>
<div class='tableform'>
<div class="division">
<table width="100%" cellspacing="0" cellpadding="0" border="0" class='delivery-cfg-table' >
<tbody>
<tr>
<th><{t}>主店铺:<{/t}></th>
<td>
<{if $data.shop_id}>
<{input type="select" name="shop_id" id="shop_id" rows=$shopList valueColumn="shop_id" labelColumn="name" value="{$data.shop_id}" required='required' vtype="required" disabled="true" }>
<{else}>
<{input type="select" name="shop_id" id="shop_id" rows=$shopList valueColumn="shop_id" labelColumn="name" value="{$data.shop_id}" required='required' vtype="required" }>
<{/if}>
</td>
</tr>
<tr>
<th>&nbsp;</th>
<td><font color="red">*温馨提示一套OMS只管控一家淘宝或天猫店铺。</font></td>
</tr>
<tr>
<th><{t}>电商仓编码:<{/t}></th>
<td>
<{input type="text" name="branch_bn" value="{$data.branch_bn}" required='required' }>
<font color="red">*必填选项,涉及电商仓库存回写</font>
</td>
</tr>
<tr>
<th><{t}>商户名称:<{/t}></th>
<td>
<{input type="text" name="company_name" id="company_name" value="{$data.company_name}" required='required' }>
<{help}>必填选项<{/help}>
</td>
</tr>
<tr>
<th><{t}>商户介绍:<{/t}></th>
<td>
<{input type="textarea" name="company_content" id="company_content" class="info-text" style="height:200px;width:40%;" value="{$data.company_content}" }>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="table-action">
<{button label="提交" type="submit" name="submit" id="btn_submit" }><input type="hidden" name="id" value="<{$data.id}>" />
</div>
</form>
<script>
window.addEvent('domready',function(e)
{
});
</script>