|
@@ -8,7 +8,7 @@
|
|
|
*{padding: 0;margin: 0;}
|
|
|
.my-input{border: 1px solid rgba(0,0,0,.1);padding: 1px 5px;height: 32px;margin-right: 10px;}
|
|
|
/*.my-input::-webkit-input-placeholder,.my-select{color: #dcdcdc;}*/
|
|
|
- .my-select{border: 1px solid rgba(0,0,0,.1);padding:6px 50px 6px 15px;height: 34px;margin: 0 10px; -webkit-appearance:none;appearance:none;background: url(${path}/common/images/pts/select-1.png) right center no-repeat;background-size:auto 100%;}
|
|
|
+ .my-select{border: 1px solid rgba(0,0,0,.1);height: 34px; -webkit-appearance:none;appearance:none;background: url(${path}/common/images/pts/select-1.png) right center no-repeat;background-size:auto 100%;}
|
|
|
.my-btn-search{border: 1px solid #32a3d8;padding: 1px 25px;height: 32px;background-color: #32a3d8;color: #fff;}
|
|
|
.barcodeImg{margin:10px 0px}
|
|
|
.table-bg thead th{background-color: #e2f6ff;}
|
|
@@ -30,8 +30,9 @@
|
|
|
</nav>
|
|
|
<div class="text-c" style="margin-top: 20px;">
|
|
|
<form action="${path}/admin/customerBasic/listCustomerBasic" method="post">
|
|
|
+ <div style="display: block;">
|
|
|
<button type="button" class="my-btn-search" style="margin-right: 10px;height: 32px;" onclick="customerAdd()">新增</button>
|
|
|
- <select class="my-select" name="isLookAll" style="width: 130px;height: 32px;">
|
|
|
+ <select class="my-select" name="isLookAll" style="width: 110px;height: 32px;">
|
|
|
<#if isLookAll??>
|
|
|
<option value ="1" <#if isLookAll == 1>selected</#if>>查看全部客户</option>
|
|
|
<option value ="2" <#if isLookAll == 2>selected</#if>>只看我的客户</option>
|
|
@@ -40,7 +41,7 @@
|
|
|
<option value ="2">只看我的客户</option>
|
|
|
</#if>
|
|
|
</select>
|
|
|
- <select class="my-select" name="customerType" style="width: 130px;height: 32px;">
|
|
|
+ <select class="my-select" name="customerType" style="width: 110px;height: 32px;">
|
|
|
<option value ="">所有客户类型</option>
|
|
|
<#if customerType??>
|
|
|
<option value ="1" <#if customerType == 1>selected</#if>>个人</option>
|
|
@@ -50,7 +51,7 @@
|
|
|
<option value ="2">企业</option>
|
|
|
</#if>
|
|
|
</select>
|
|
|
- <select class="my-select" name="cooperativeState" style="width: 130px;height: 32px;">
|
|
|
+ <select class="my-select" name="cooperativeState" style="width: 100px;height: 32px;">
|
|
|
<option value ="">合作状态</option>
|
|
|
<#if cooperativeState??>
|
|
|
<option value ="1" <#if cooperativeState == 1>selected</#if>>意向合作</option>
|
|
@@ -62,12 +63,13 @@
|
|
|
<option value ="3">停止合作</option>
|
|
|
</#if>
|
|
|
</select>
|
|
|
- <input class="my-input" type="text" name="customerName" style="width: 100px;height: 32px;" value="${customerName!''}" placeholder="请输入客户名称"/>
|
|
|
- <input class="my-input" type="text" name="contactName" style="width: 100px;height: 32px;" value="${contactName!''}" placeholder="请输入客户联系人姓名"/>
|
|
|
- <input class="my-input" type="text" name="contactPhone" style="width: 100px;height: 32px;" value="${contactPhone!''}" placeholder="请输入客户联系人电话"/>
|
|
|
- <input class="my-input" type="text" name="contactEmail" style="width: 100px;height: 32px;" value="${contactEmail!''}" placeholder="请输入客户联系人邮箱"/>
|
|
|
+ <input class="my-input" type="text" name="customerName" style="width: 84px;height: 32px;" value="${customerName!''}" placeholder="请输入客户名称"/>
|
|
|
+ <input class="my-input" type="text" name="contactName" style="width: 120px;height: 32px;" value="${contactName!''}" placeholder="请输入客户联系人姓名"/>
|
|
|
+ <input class="my-input" type="text" name="contactPhone" style="width: 120px;height: 32px;" value="${contactPhone!''}" placeholder="请输入客户联系人电话"/>
|
|
|
+ <input class="my-input" type="text" name="contactEmail" style="width: 120px;height: 32px;" value="${contactEmail!''}" placeholder="请输入客户联系人邮箱"/>
|
|
|
<button type="submit" style="cursor:pointer; height: 32px;" class="my-btn-search">搜索</button>
|
|
|
- </form>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
</div>
|
|
|
<div class="mt-20" style="margin: 20px;">
|
|
|
<table class="table table-border table-bordered table-bg table-hover table-sort">
|