|
|
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShopAdd.aspx.cs" Inherits="TradeManage.SysManage.ShopAdd" %>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
<head runat="server">
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
|
<title></title>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="../css2/icon.css">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="../css2/DataGrid.css" />
|
|
|
|
|
<link href="../css2/gray/easyui.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
<link rel="stylesheet" href="../font-awesome/css/font-awesome.min.css" />
|
|
|
|
|
<link href="../css2/New.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
<script src="../Scripts/jquery.min.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/MicrosoftAjax.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/jquery.easyui.min.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/DataGrid.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/FixTable.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/DataPager.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/jquery.bgiframe.min.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/jquery.url.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/Global.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/WindowLoad.js" type="text/javascript"></script>
|
|
|
|
|
<script src="../Scripts/DatePicker/WdatePicker.js" type="text/javascript"></script>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="../Scripts/fancybox/jquery.fancybox-1.3.4.css"
|
|
|
|
|
media="screen" />
|
|
|
|
|
<script src="../Scripts/MaskedTextBox.js" type="text/javascript"></script>
|
|
|
|
|
<script type="text/javascript" src="../Scripts/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
|
|
|
|
<script type="text/javascript" src="../Scripts/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
var Model = null;
|
|
|
|
|
var datagrid1 = new nblf.ui.DataGrid("DataGrid1");
|
|
|
|
|
|
|
|
|
|
var WindowLoadModel = new WindowLoad();
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
|
|
|
|
|
WindowLoadModel.ApplicationPath = "../";
|
|
|
|
|
WindowLoadModel.Load();
|
|
|
|
|
ajaxInit(WindowLoadModel);
|
|
|
|
|
CreateDataGrid();
|
|
|
|
|
GetCompanyList();
|
|
|
|
|
GetBasePlat();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ReadData();
|
|
|
|
|
$("#btn_sure").bind("click", function () {
|
|
|
|
|
$.fancybox.close();
|
|
|
|
|
First = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#select_company').bind("change", function () {
|
|
|
|
|
ReadData();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#cmd_Alibaba_Add").click(function () {
|
|
|
|
|
Model = null;
|
|
|
|
|
$("#txt_ShopName").val("");
|
|
|
|
|
ShowFancybox2();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#cmdSave").click(function () {
|
|
|
|
|
Save();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#" + datagrid1.TableID + " input[CommandName]").live("click", function () {
|
|
|
|
|
var index = $(this).parentsUntil("tr").parent().attr("index");
|
|
|
|
|
Model = datagrid1.Get_Model(index);
|
|
|
|
|
var ColName = $(this).attr("CommandName");
|
|
|
|
|
|
|
|
|
|
if (ColName == "cmdEdit") {
|
|
|
|
|
ShowFancybox("Window_Shop");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ColName == "cmdDel") {
|
|
|
|
|
Delete(Model.ShopId);
|
|
|
|
|
}
|
|
|
|
|
if (ColName == "cmdSelect") {
|
|
|
|
|
ShopId = Model.ShopId;
|
|
|
|
|
BindUserInfo(Model.CompanyId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function ShowFancybox2() {
|
|
|
|
|
$.fancybox({
|
|
|
|
|
'autoScale': false,
|
|
|
|
|
'transitionIn': 'elastic',
|
|
|
|
|
'transitionOut': 'elastic',
|
|
|
|
|
'href': '#Window_Shop',
|
|
|
|
|
'onStart': function () {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
function GetCompanyList() {
|
|
|
|
|
|
|
|
|
|
$("#select_Company2").append("<option value='0'>选择</option>")
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: "../SysManageServiceNew.asmx/GetListCompany3",
|
|
|
|
|
// data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
|
|
|
dataType: "json",
|
|
|
|
|
async: false,
|
|
|
|
|
success: function (data) {
|
|
|
|
|
if (data.d != null) {
|
|
|
|
|
$(data.d).each(function () {
|
|
|
|
|
$("#select_company").append("<option value='" + this.ID + "'>" + this.Name + "</option>")
|
|
|
|
|
$("#select_Company2").append("<option value='" + this.ID + "'>" + this.Name + "</option>")
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
var IsAdmin = 0;
|
|
|
|
|
function fopen() {
|
|
|
|
|
|
|
|
|
|
$.fancybox({
|
|
|
|
|
'width': '40%',
|
|
|
|
|
'height': '40%',
|
|
|
|
|
'autoScale': false,
|
|
|
|
|
'transitionIn': 'elastic',
|
|
|
|
|
'transitionOut': 'elastic',
|
|
|
|
|
'href': '#test1',
|
|
|
|
|
'onComplete': function () {
|
|
|
|
|
IsAdmin = 0;
|
|
|
|
|
$("#trqk").hide();
|
|
|
|
|
$("#btn_Detele").hide();
|
|
|
|
|
$("#txt_Username").val("");
|
|
|
|
|
$("#txt_PassWord").val("");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function GetBasePlat() {
|
|
|
|
|
|
|
|
|
|
$("#select_Plat").append("<option value='0'>-选择-</option>");
|
|
|
|
|
$("#select_plat1").append("<option value='0'>-全部-</option>");
|
|
|
|
|
var param = new Object();
|
|
|
|
|
param.CompanyID = 0;
|
|
|
|
|
param.KeyName = "ptlx";
|
|
|
|
|
WindowLoadModel.Show();
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: "../UserService.asmx/GetPlatBaseCode",
|
|
|
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
|
|
|
async:false,
|
|
|
|
|
success: function (data) {
|
|
|
|
|
WindowLoadModel.Hide();
|
|
|
|
|
|
|
|
|
|
if (data.d != null) {
|
|
|
|
|
$(data.d).each(function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#select_Plat").append("<option value='" + this.SortNo + "'>" + this.Name + "</option>");
|
|
|
|
|
$("#select_plat1").append("<option value='" + this.SortNo + "'>" + this.Name + "</option>");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#region 读取亚马逊国家列表
|
|
|
|
|
function GetList_API_Country() {
|
|
|
|
|
var param = new Object();
|
|
|
|
|
param.PlatType = 2;
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: "SysManageService.asmx/GetList_API_Country",
|
|
|
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
|
|
|
async: false,
|
|
|
|
|
success: function (data) {
|
|
|
|
|
var html = new Sys.StringBuilder();
|
|
|
|
|
$(data.d).each(function () {
|
|
|
|
|
html.append("<option LoginUrl='" + this.LoginUrl + "' value='" + this.Name + "'>" + this.Name + "</option>");
|
|
|
|
|
});
|
|
|
|
|
$("#list_Amazon_Country").html(html.toString());
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//#endregion
|
|
|
|
|
//#region 初始化DataGrid_速卖通
|
|
|
|
|
function CreateDataGrid() {
|
|
|
|
|
|
|
|
|
|
var col = new nblf.ui.DataGridColumn();
|
|
|
|
|
col.HeaderText = "客户单位";
|
|
|
|
|
col.CellTemplate = "<span>{Bind DeptName}</span>";
|
|
|
|
|
Array.add(datagrid1.Columns, col);
|
|
|
|
|
col = new nblf.ui.DataGridColumn();
|
|
|
|
|
col.HeaderText = "平台";
|
|
|
|
|
col.CellTemplate = "<span>{Bind PlatName}</span>";
|
|
|
|
|
Array.add(datagrid1.Columns, col);
|
|
|
|
|
|
|
|
|
|
col = new nblf.ui.DataGridColumn();
|
|
|
|
|
col.HeaderText = "店铺名称";
|
|
|
|
|
col.CellTemplate = "<span>{Bind ShopName}</span>";
|
|
|
|
|
Array.add(datagrid1.Columns, col);
|
|
|
|
|
|
|
|
|
|
col = new nblf.ui.DataGridColumn();
|
|
|
|
|
col.HeaderText = "添加日期";
|
|
|
|
|
col.CellTemplate = "<span>{Bind InDate,yyyy-MM-dd}</span>";
|
|
|
|
|
Array.add(datagrid1.Columns, col);
|
|
|
|
|
|
|
|
|
|
col = new nblf.ui.DataGridColumn();
|
|
|
|
|
col.HeaderText = "操作";
|
|
|
|
|
col.Width = "250px";
|
|
|
|
|
col.CellTemplate = "</input> <input CommandName='cmdEdit' class='btnClass dgbtnEdit' type='button' value='修改'></input> <input CommandName='cmdDel' class='btnClass dgbtnDel' type='button' value='删除'></input>";
|
|
|
|
|
Array.add(datagrid1.Columns, col);
|
|
|
|
|
|
|
|
|
|
datagrid1.IsFixHeader = false;
|
|
|
|
|
datagrid1.ShowIndexColumn = false;
|
|
|
|
|
datagrid1.AllowPaging = false;
|
|
|
|
|
datagrid1.Width = "100%";
|
|
|
|
|
datagrid1.SelectMode = nblf.ui.SelectMode.None;
|
|
|
|
|
datagrid1.Init();
|
|
|
|
|
// datagrid1.add_PageIndexChanged(function () { ReadData(); });
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
//#region 读取数据
|
|
|
|
|
function ReadData() {
|
|
|
|
|
var param = new Object();
|
|
|
|
|
|
|
|
|
|
var stype = $('#select_plat1').val();
|
|
|
|
|
|
|
|
|
|
param.PlatType = stype;
|
|
|
|
|
param.CompanyID = $('#select_company').val();
|
|
|
|
|
param.ShopName = "";
|
|
|
|
|
|
|
|
|
|
param.PageIndex =1;
|
|
|
|
|
param.PageSize =200;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WindowLoadModel.Show();
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: "../SysManageServiceNew.asmx/GetListJC_ShopForHWC",
|
|
|
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
|
|
|
success: function (data) {
|
|
|
|
|
WindowLoadModel.Hide();
|
|
|
|
|
datagrid1.DataBind(data.d.DataSource);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//#endregion
|
|
|
|
|
//#region 删除
|
|
|
|
|
function Delete(ShopId) {
|
|
|
|
|
if (window.confirm("确定要删除吗?") == false) return;
|
|
|
|
|
var param = new Object();
|
|
|
|
|
param.ShopId = ShopId;
|
|
|
|
|
WindowLoadModel.Show();
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: "SysManageService.asmx/Delete_JC_Shop",
|
|
|
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
|
|
|
success: function (data) {
|
|
|
|
|
WindowLoadModel.Hide();
|
|
|
|
|
ReadData(); //刷新DataGrid
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#region 弹出
|
|
|
|
|
function ShowFancybox(id) {
|
|
|
|
|
$.fancybox({
|
|
|
|
|
'autoScale': false,
|
|
|
|
|
'transitionIn': 'elastic',
|
|
|
|
|
'transitionOut': 'elastic',
|
|
|
|
|
'href': '#' + id,
|
|
|
|
|
'onStart': function () {
|
|
|
|
|
if (Model == null) return;
|
|
|
|
|
if (id == "Window_Shop") {
|
|
|
|
|
$("#select_Plat").val(Model.PlatType);
|
|
|
|
|
$("#select_Company2").val(Model.CompanyId);
|
|
|
|
|
$("#txt_ShopName").val(Model.ShopName);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Save_Shop() {
|
|
|
|
|
|
|
|
|
|
if ($("#select_Company2").val() == "0") {
|
|
|
|
|
alert("请选择客户单位");
|
|
|
|
|
$("#select_Company2").focus();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if ($("#select_Plat").val() == "0") {
|
|
|
|
|
alert("请选择平台类型");
|
|
|
|
|
$("#select_Plat").focus();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if ($("#txt_ShopName").val() == "") {
|
|
|
|
|
alert("店铺名称没填");
|
|
|
|
|
$("#txt_ShopName").focus();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var stype = $('#rad :checked').attr("sno");
|
|
|
|
|
|
|
|
|
|
if (Model == null) Model = new Object();
|
|
|
|
|
Model.ShopName = $("#txt_ShopName").val();
|
|
|
|
|
Model.PlatType = $("#select_Plat").val();
|
|
|
|
|
Model.CompanyId = $("#select_Company2").val();
|
|
|
|
|
|
|
|
|
|
//Model.Master = $("#txt_Master").val();
|
|
|
|
|
// Model.Buyer = $("#txt_Buyer").val();
|
|
|
|
|
// Model.ShopUser = $("#txt_ShopUser").val();
|
|
|
|
|
|
|
|
|
|
var param = new Object();
|
|
|
|
|
param.Model = Model;
|
|
|
|
|
WindowLoadModel.Show();
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: "../SysManageServiceNew.asmx/Save_ShopHWC",
|
|
|
|
|
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
|
|
|
|
|
success: function (data) {
|
|
|
|
|
WindowLoadModel.Hide();
|
|
|
|
|
if (data.d != "成功")
|
|
|
|
|
{
|
|
|
|
|
alert(data.d);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
ReadData();
|
|
|
|
|
alert("保存成功");
|
|
|
|
|
$.fancybox.close();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body class="headbody">
|
|
|
|
|
<table class="tableAll" style="width: 100%;">
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1" width="10%">客户单位</td> <td width="18%">
|
|
|
|
|
<select id="select_company" class="selectClass" style="width: 200px" name="D1">
|
|
|
|
|
|
|
|
|
|
</select></td> <td class="f1" width="10%">平台</td> <td width="18%"><select id="select_plat1" class="selectClass" name="D4" style="width:120px;">
|
|
|
|
|
|
|
|
|
|
</select></td> <td class="f1" width="10%"> </td> <td width="18%">
|
|
|
|
|
</td> <td><input type="button" class="btnClass btnClassFind" value="查询" id="btn_sch" onclick="ReadData();"/></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="7">
|
|
|
|
|
<table id="tb_Alibaba" class="tableAll" style="width: 100%;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 250px;" />
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 200px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="5">
|
|
|
|
|
<input id="cmd_Alibaba_Add" class="btnClass btnClassAdd" type="button" value="新增" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" colspan="5">
|
|
|
|
|
<div id="DataGrid1" class="DataGridStyle"></div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<table id="tb_Amazon" class="tableAll" style="width: 100%;display:none;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 250px;" />
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 200px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="5">
|
|
|
|
|
<input id="cmd_Amazon_Add" class="btnClass btnClassAdd" type="button" value="新增" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" colspan="5">
|
|
|
|
|
<div id="DataGrid2" class="DataGridStyle"></div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<table id="tb_Ebay" class="tableAll" style="width: 100%;display:none;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 250px;" />
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 200px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="5">
|
|
|
|
|
<input id="cmd_Ebay_Add" class="btnClass btnClassAdd" type="button" value="新增" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" colspan="5">
|
|
|
|
|
<div id="DataGrid3" class="DataGridStyle"></div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<table id="tb_Wish" class="tableAll" style="width: 100%;display:none;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 250px;" />
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 200px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="5">
|
|
|
|
|
<input id="cmd_Wish_Add" class="btnClass btnClassAdd" type="button" value="新增" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" colspan="5">
|
|
|
|
|
<div id="DataGrid4" class="DataGridStyle"></div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<table id="tb_Other" class="tableAll" style="width: 100%;display:none;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 250px;" />
|
|
|
|
|
<col style="width: 80px;" />
|
|
|
|
|
<col style="width: 200px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="5">
|
|
|
|
|
<input id="cmd_Other_Add" class="btnClass btnClassAdd" type="button" value="新增" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" colspan="5">
|
|
|
|
|
<div id="DataGrid6" class="DataGridStyle"></div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
<div style="display: none;">
|
|
|
|
|
<div id="Window_Alibaba" title="速卖通">
|
|
|
|
|
<table class="tableAll" style="width: 594px;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 100px;" />
|
|
|
|
|
<col style="width: 450px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3"><a href="ShopDesc1.aspx" target="_blank" style="cursor: pointer; text-decoration: underline; color: blue;font-size:15pt">速卖通API申请操作说明帮助</a>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>平台
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
速卖通
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>店铺名称
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Alibaba_ShopName" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>Appkey(开发者key)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Alibaba_Appkey" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>AppSecret(开发者密钥)
|
|
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Alibaba_DeveKey" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>Code(即临时令牌)</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Alibaba_Code" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="cmd_Alibaba_Code" class="btnClass btnClassFind" type="button" value="授权获取code" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
|
|
<td colspan="3">
|
|
|
|
|
<font color="red">说明:点击右边授权按钮以获取Code(即临时令牌),把生成的Code复制到文本框</font>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>refreshToken(长时令牌)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Alibaba_RefreshToken" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="cmd_Alibaba_RefreshToken" class="btnClass btnClassFind" type="button" value="获取refreshToken" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
|
|
<td colspan="3">
|
|
|
|
|
<font color="red">说明:填写好Code(即临时令牌)后点击获取refreshToken按钮获取refreshToken(长时令牌)</font>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1">API每天最大请求次数</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Alibaba_RequestMaxNumber" type="text" class="editTextbox" min="0" max="99999999" precision="0" style="width: 99%;" value="10000"/></td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>是否每天自动读取API订单</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="chk_Alibaba_IsAutoReadData" type="checkbox" checked="checked" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3" style="text-align: center;">
|
|
|
|
|
<input id="cmd_Alibaba_Save" class="btnClass btnClassSave" type="button" value="保存" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="Window_Amazon" title="亚马逊">
|
|
|
|
|
<table class="tableAll" style="width: 594px;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 100px;" />
|
|
|
|
|
<col style="width: 450px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3"><a href="ShopDesc2.aspx" target="_blank" style="cursor: pointer; text-decoration: underline; color: blue;font-size:15pt">亚马逊API申请操作说明帮助</a>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>平台
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
亚马逊
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>店铺名称
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Amazon_ShopName" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>开发者AccessKeyId
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Amazon_AccessKeyId" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>开发者SecretAccessKey
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Amazon_SecretAccessKey" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>API请求国家</td>
|
|
|
|
|
<td>
|
|
|
|
|
<select id="list_Amazon_Country" class="selectClass" style="width: 99%;">
|
|
|
|
|
</select>
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>卖家ID(MerchantId)</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Amazon_MerchantId" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="cmd_Amazon" class="btnClass btnClassFind" type="button" value="申请ApiKey" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>卖家店铺ID(MarketplaceId)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Amazon_MarketplaceId" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>是否使用FBA(海外仓)</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="chk_Amazon_IsFba" type="checkbox" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>是否每天自动读取API订单</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="chk_Amazon_IsAutoReadData" type="checkbox" checked="checked" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>订单最迟发货天数</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="txt_Amazon_OuyDays" min='0' max='100' precision='0' type="text" class="editTextbox" style="width:50%;" value="15"/>天
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3" style="text-align: center;">
|
|
|
|
|
<input id="cmd_Amazon_Save" class="btnClass btnClassSave" type="button" value="保存" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="Window_Ebay" title="Ebay">
|
|
|
|
|
<table class="tableAll" style="width: 594px;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 100px;" />
|
|
|
|
|
<col style="width: 450px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3"><a href="ShopDesc3.aspx" target="_blank" style="cursor: pointer; text-decoration: underline; color: blue;font-size:15pt">Ebay API申请操作说明帮助</a>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>平台
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
EBay
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>店铺名称
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Ebay_ShopName" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>开发者Appkey
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Ebay_Appkey" type="text" class="editTextbox" style="width: 99%;" value="mitang648-0b4d-45cc-8393-22985badfcb" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>开发者DeveKey
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Ebay_DeveKey" type="text" class="editTextbox" style="width: 99%;" value="f56448c8-0099-4e84-bbbb-2e30b3e2c8a3" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>开发者CertKey
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Ebay_CertKey" type="text" class="editTextbox" style="width: 99%;" value="adfccd96-4a84-402e-959f-c19d26fce4c5" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>卖家令牌(Token)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Ebay_AccessToken" type="text" class="editTextbox" style="width: 99%;" value=""/>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="cmd_Ebay" class="btnClass btnClassFind" type="button" value="获取Token" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>是否每天自动读取API订单</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="chk_Ebay_IsAutoReadData" type="checkbox" checked="checked" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>订单最迟发货天数</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="txt_Ebay_OuyDays" min='0' max='100' precision='0' type="text" class="editTextbox" style="width:50%;" value="15"/>天
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3" style="text-align: center;">
|
|
|
|
|
<input id="cmd_Ebay_Save" class="btnClass btnClassSave" type="button" value="保存" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="Window_Wish" title="Wish">
|
|
|
|
|
<table class="tableAll" style="width: 594px;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 100px;" />
|
|
|
|
|
<col style="width: 450px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3"><a href="ShopDesc4.aspx" target="_blank" style="cursor: pointer; text-decoration: underline; color: blue;font-size:15pt">Wish API申请操作说明帮助</a>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>平台
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
Wish
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>店铺名称
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Wish_ShopName" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>令牌(ApiKey)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Wish_AccessToken" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="cmd_Wish" class="btnClass btnClassFind" type="button" value="申请ApiKey" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>是否每天自动读取API订单</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="chk_Wish_IsAutoReadData" type="checkbox" checked />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>订单最迟发货天数</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="txt_Wish_OuyDays" min='0' max='100' precision='0' type="text" class="editTextbox" style="width:50%;" value="15"/>天
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3" style="text-align: center;">
|
|
|
|
|
<input id="cmd_Wish_Save" class="btnClass btnClassSave" type="button" value="保存" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="Window_Other" title="Wish">
|
|
|
|
|
<table class="tableAll" style="width: 594px;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 100px;" />
|
|
|
|
|
<col style="width: 450px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>平台
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a id="a_platname"></a>
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>店铺名称
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_Other_ShopName" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>订单最迟发货天数</td>
|
|
|
|
|
<td style="text-align: left;">
|
|
|
|
|
<input id="txt_Other_OuyDays" min='0' max='100' precision='0' type="text" class="editTextbox" style="width:50%;" value="15"/>天
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3" style="text-align: center;">
|
|
|
|
|
<input id="cmd_Other_Save" class="btnClass btnClassSave" type="button" value="保存" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="Window_PostInfo">
|
|
|
|
|
<table class="tableAll" style="width: 500px;height:300px;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="overflow:auto;vertical-align:top;">
|
|
|
|
|
|
|
|
|
|
<div id="DataGrid5" class="DataGridStyle"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr style="height:30px;">
|
|
|
|
|
<td style="text-align: center;">
|
|
|
|
|
<input id="cmd_PostInfo_Save" class="btnClass btnClassSave" type="button" value="保存" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div id="test" title="备注说明">
|
|
|
|
|
<table class="tableAll" style="width: 500px;">
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="text-align: center;"><font color="red">使用备注说明</font>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><font color="red">
|
|
|
|
|
1.使用本平台首先要设置电商的店铺,还没设置过店铺的请先在这边添加各个平台的店铺信息<br />
|
|
|
|
|
2.因为店铺的订单要使用电商API接口,请如实填写你们在电商申请的api的授权码和令牌等等信息<br />
|
|
|
|
|
3.如果你要了解试用平台功能,可以点击导入 模拟数据 按钮,模拟使用,注意正式使用前请点击清空平台数据<br />
|
|
|
|
|
3.如有不会操作可以在个人桌面页面 下载 使用说明书,也可以加蜜糖ERP QQ群 153367543 咨询
|
|
|
|
|
</font>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="text-align: center;">
|
|
|
|
|
<input id="btn_sure" class="btnClass btnClassSave" type="button" value="我知道了" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="test1" title="备注说明" style="width: 530px;height:250px">
|
|
|
|
|
<table class="tableAll" style="width: 500px;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td><font color="red">
|
|
|
|
|
注:打算正式使用时可以清空数据<br />清空数据必须登陆管理员账号密码<br />清空后数据将不能恢复请谨慎使用<br />
|
|
|
|
|
|
|
|
|
|
</font>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td> 管理员账号: <input id="txt_Username" type="text" style="width:100px;" class="editTextbox"/> 管理员密码:<input id="txt_PassWord" type="text" style="width:100px;" class="editTextbox"/> <input id="btn_Sure" class="btnClass btnClassSave" type="button" value="确定" onclick="IsManage();" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr style="display:none" id="trqk">
|
|
|
|
|
<td><div id="div_qk"><input id="chk_1" type="checkbox" />清空店铺<input id="chk_2" type="checkbox" />清空货物分类<input id="chk_3" type="checkbox" />清空货物<input id="chk_4" type="checkbox" />清空采购信息<input id="chk_5" type="checkbox" />清空订单信息</div>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="text-align: center;">
|
|
|
|
|
<input id="btn_Detele" class="btnClass btnClassSave" type="button" style="display:none" value="确定清空数据" onclick="DeleteDataImport();" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="Window_Shop" title="店铺信息">
|
|
|
|
|
<table class="tableAll" style="width: 594px;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 100px;" />
|
|
|
|
|
<col />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>客户单位
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<select id="select_Company2" class="selectClass" style="width: 120px;">
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>平台
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<select id="select_Plat" class="selectClass" style="width: 120px;">
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
</td>
|
|
|
|
|
<td></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="f1"><span style="color: Red;">*</span>店铺名称
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="txt_ShopName" type="text" class="editTextbox" style="width: 99%;" />
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3" style="text-align: center;">
|
|
|
|
|
<input id="cmd_Save" class="btnClass btnClassSave" type="button" value="保存" onclick="Save_Shop();"/>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|