后端优化,增加新需求
This commit is contained in:
@@ -162,6 +162,26 @@
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.dedupe-filter-row {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(160px, 1fr)) auto;
|
||||
gap: 12px;
|
||||
align-items: end;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.dedupe-filter-row .form-group {
|
||||
min-width: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.dedupe-filter-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 10px 20px;
|
||||
background: #667eea;
|
||||
@@ -651,6 +671,14 @@
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.dedupe-filter-row {
|
||||
grid-template-columns: repeat(2, minmax(180px, 1fr));
|
||||
}
|
||||
|
||||
.dedupe-filter-actions {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.dedupe-group-access {
|
||||
align-items: stretch;
|
||||
flex-direction: column;
|
||||
@@ -1282,6 +1310,15 @@
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.dedupe-filter-row {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.dedupe-filter-actions {
|
||||
grid-column: auto;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.admin-user-box {
|
||||
position: static !important;
|
||||
width: max-content;
|
||||
@@ -1608,16 +1645,27 @@
|
||||
</div>
|
||||
<div class="panel-box">
|
||||
<h3 style="margin-bottom:16px;font-size:15px;">ASIN列表</h3>
|
||||
<div class="form-row" style="margin-bottom:16px;">
|
||||
<div class="form-group" style="min-width:220px;">
|
||||
<div class="dedupe-filter-row">
|
||||
<div class="form-group">
|
||||
<label>数据值(模糊搜索)</label>
|
||||
<input type="text" id="searchDedupeTotalData" placeholder="输入关键字">
|
||||
</div>
|
||||
<div class="form-group" style="min-width:220px;">
|
||||
<div class="form-group">
|
||||
<label>用户名(模糊搜索)</label>
|
||||
<input type="text" id="searchDedupeTotalDataUsername" placeholder="输入用户名">
|
||||
</div>
|
||||
<button class=" btn" id="btnSearchDedupeTotalData">查询</button>
|
||||
<div class="form-group">
|
||||
<label>导出开始日期</label>
|
||||
<input type="date" id="exportDedupeTotalDataStartDate">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>导出结束日期</label>
|
||||
<input type="date" id="exportDedupeTotalDataEndDate">
|
||||
</div>
|
||||
<div class="dedupe-filter-actions">
|
||||
<button class="btn" id="btnSearchDedupeTotalData">查询</button>
|
||||
<button class="btn btn-secondary" id="btnExportDedupeTotalData" type="button">导出 XLSX</button>
|
||||
</div>
|
||||
</div>
|
||||
<table>
|
||||
<thead>
|
||||
@@ -1682,6 +1730,10 @@
|
||||
<div class="form-box">
|
||||
<h3 style="margin-bottom:16px;font-size:15px;">新增店铺密钥</h3>
|
||||
<div class="form-row">
|
||||
<div class="form-group" style="min-width:180px;">
|
||||
<label>备注名</label>
|
||||
<input type="text" id="shopKeyRemarkName" maxlength="128" placeholder="请输入备注名(可选)">
|
||||
</div>
|
||||
<div class="form-group" style="min-width:220px;">
|
||||
<label>紫鸟账号名称</label>
|
||||
<input type="text" id="shopKeyZiniaoAccountName" placeholder="请输入紫鸟账号名称">
|
||||
@@ -1700,6 +1752,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>序号</th>
|
||||
<th>备注名</th>
|
||||
<th>紫鸟账号名称</th>
|
||||
<th>紫鸟令牌</th>
|
||||
<th>创建时间</th>
|
||||
@@ -2503,6 +2556,10 @@
|
||||
<div class="modal">
|
||||
<h3>编辑店铺密钥</h3>
|
||||
<input type="hidden" id="editShopKeyId">
|
||||
<div class="form-group">
|
||||
<label>备注名</label>
|
||||
<input type="text" id="editShopKeyRemarkName" maxlength="128" placeholder="备注名(可选)">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>紫鸟账号名称</label>
|
||||
<input type="text" id="editShopKeyZiniaoAccountName" placeholder="紫鸟账号名称">
|
||||
@@ -2550,7 +2607,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/static/admin.js?v=dedupe-groups-1"></script>
|
||||
<script src="/static/admin.js?v=shop-key-remark-1"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user