Explorar el Código

fleat: customer add

igb hace 3 días
padre
commit
9762d5ba71
Se han modificado 1 ficheros con 19 adiciones y 33 borrados
  1. 19 33
      customerEdit.php

+ 19 - 33
customerEdit.php

@@ -90,17 +90,8 @@ if (!empty($id) && is_numeric($id)) {
     <script>
     $(document).ready(function(){
         $('.txt2').xheditor({
-            tools:'full',
-            hoverExecDelay:-1,
-            urlBase:'system',
-            upLinkUrl:"upload.php",
-            upLinkExt:"zip,rar,txt,pdf",
-            upImgUrl:"upload.php",
-            upImgExt:"jpg,jpeg,gif,png",
-            upFlashUrl:"upload.php",
-            upFlashExt:"swf",
-            upMediaUrl:"upload.php",
-            upMediaExt:"wmv,avi,wma,mp3,mid"
+            tools:'simple',
+            hoverExecDelay:-1
         });
         
         // Remove contact
@@ -125,12 +116,10 @@ if (!empty($id) && is_numeric($id)) {
                         <h3>联系人 #${contactIndex + 1}</h3>
                     </div>
                     <input type="hidden" name="contact[${contactIndex}][id]" value="">
-                    <table width="100%" border="0" cellpadding="3" cellspacing="1" class="contact-table">
-                        <tr>
-                            <th width="8%">联系人</th>
-                            <td><input type="text" name="contact[${contactIndex}][contact_name]" class="txt1" placeholder="联系人姓名"/></td>
-                        </tr>
-                    </table>
+                    <div class="contact-method-row">
+                        <span style="width:80px;display:inline-block;font-weight:bold;" class="method-select">联系人姓名</span>
+                        <input type="text" name="contact[${contactIndex}][contact_name]" class="txt1 method-input" style="width:60%;" placeholder="联系人姓名"/>
+                    </div>
                     <div class="contact-methods-container" id="contact-methods-${contactIndex}">
                         <!-- Contact methods will be added here -->
                     </div>
@@ -761,7 +750,7 @@ if (!empty($id) && is_numeric($id)) {
         .contact-method-row {
             margin-bottom: 6px;
             padding: 6px;
-            border: 1px solid #eee;
+            border: 0px solid #eee;
            /*background-color: #f5f5f5;*/
             display: flex;
             align-items: center;
@@ -852,7 +841,7 @@ if (!empty($id) && is_numeric($id)) {
             width: 120px;
             text-align: right;
             padding-right: 10px;
-            vertical-align: top;
+            vertical-align: middle;
             white-space: nowrap;
         }
         #relationship-modal table.table1 td {
@@ -955,7 +944,8 @@ if (!empty($id) && is_numeric($id)) {
         .customer-clear-btn {
             position: absolute;
             right: 5px;
-            top: 8px;
+            top: 50%;
+            transform: translateY(-50%);
             color: #e74c3c;
             font-weight: bold;
             cursor: pointer;
@@ -1193,12 +1183,10 @@ if (!empty($id) && is_numeric($id)) {
                                         <h3>联系人 #<?= $index + 1 ?></h3>
                                     </div>
                                     <input type="hidden" name="contact[<?= $index ?>][id]" value="<?= $contact['id'] ?>">
-                                    <table width="100%" border="0" cellpadding="3" cellspacing="1" class="contact-table">
-                                        <tr>
-                                            <th width="8%">联系人</th>
-                                            <td><input type="text" name="contact[<?= $index ?>][contact_name]" value="<?= htmlspecialcharsFix($contact['contact_name']) ?>" class="txt1" placeholder="联系人姓名"/></td>
-                                        </tr>
-                                    </table>
+                                    <div class="contact-method-row">
+                                        <span style="width:80px;display:inline-block;font-weight:bold;" class="method-select">联系人姓名</span>
+                                        <input type="text" name="contact[<?= $index ?>][contact_name]" value="<?= htmlspecialcharsFix($contact['contact_name']) ?>" class="txt1 method-input" style="width:60%;" placeholder="联系人姓名"/>
+                                    </div>
                                     <div class="contact-methods-container" id="contact-methods-<?= $index ?>">
                                         <?php
                                         $methodTypes = [
@@ -1243,18 +1231,16 @@ if (!empty($id) && is_numeric($id)) {
                                 </div>
                                 <?php endforeach; ?>
                             <?php else: ?>
-                                <div class="contact-form" id="contact-form-0">
+                                <div class="contact-form" id="contact-form-0"">
                                     <div class="contact-header">
                                         <button type="button" class="remove-contact-btn" data-index="0">删除</button>
                                         <h3>联系人 #1</h3>
                                     </div>
                                     <input type="hidden" name="contact[0][id]" value="">
-                                    <table width="100%" border="0" cellpadding="3" cellspacing="1" class="contact-table">
-                                        <tr>
-                                            <th width="8%">联系人</th>
-                                            <td><input type="text" name="contact[0][contact_name]" class="txt1" placeholder="联系人姓名"/></td>
-                                        </tr>
-                                    </table>
+                                    <div class="contact-method-row">
+                                        <span style="width:80px;display:inline-block;font-weight:bold;" class="method-select">联系人姓名</span>
+                                        <input type="text" name="contact[0][contact_name]" class="txt1 method-input" style="width:60%;" placeholder="联系人姓名"/>
+                                    </div>
                                     <div class="contact-methods-container" id="contact-methods-0">
                                         <!-- Contact methods will be added here -->
                                     </div>