From e37e45cfe1123928dba5d9c5a427b0ee497b7ad6 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期二, 23 八月 2022 03:21:32 +0800
Subject: [PATCH] 修复算法配置的字段内容

---
 src/views/index/components/rightForm.vue |   41 ++++++++++++++++++++---------------------
 1 files changed, 20 insertions(+), 21 deletions(-)

diff --git a/src/views/index/components/rightForm.vue b/src/views/index/components/rightForm.vue
index a2755e4..6208646 100644
--- a/src/views/index/components/rightForm.vue
+++ b/src/views/index/components/rightForm.vue
@@ -47,12 +47,14 @@
       </div>
 
       <div class="price">
-        <price :priceOld="priceOld" :priceNew="priceNew"></price>
+        <price
+          :priceOld="priceOld"
+          :priceNew="priceNew"
+          :showIcon="true"
+        ></price>
       </div>
 
-      <div class="iconSave">鐪�</div>
-
-      <div class="button">绔嬪嵆璐拱</div>
+      <div class="button">绔嬪嵆瀹夎</div>
       <div class="info">
         浜у搧鏀寔<span class="blue">1璺�</span>瀹炴椂瑙嗛鍒嗘瀽锛屽彲缁戝畾<span
           class="blue"
@@ -64,7 +66,7 @@
 </template>
 
 <script>
-import price from "@/views/index/components/price";
+import price from "@/components/Price.vue";
 
 export default {
   props: {
@@ -162,6 +164,17 @@
           width: 44px;
           background-color: #fff;
         }
+
+        ::v-deep
+          .el-input-number__increase:hover:not(.is-disabled)
+          ~ .el-input
+          .el-input__inner:not(.is-disabled),
+        ::v-deep
+          .el-input-number__decrease:hover:not(.is-disabled)
+          ~ .el-input
+          .el-input__inner:not(.is-disabled) {
+          border-color: #0065ff;
+        }
       }
     }
 
@@ -194,7 +207,7 @@
             right: -1px;
             width: 24px;
             height: 30px;
-            background: url("/images/index/鎵撴姌鏍囩.png");
+            background: url("/images/index/cut.png");
             font-size: 12px;
             line-height: 30px;
             color: #fff;
@@ -224,7 +237,6 @@
 
     .button {
       margin-top: 25px;
-      width: 449px;
       height: 40px;
       border: 1px solid #ff6a00;
       font-size: 14px;
@@ -244,6 +256,7 @@
           #ffba4a 100%
         );
         color: #fff;
+        border-color: #fff;
       }
     }
 
@@ -262,20 +275,6 @@
         text-decoration: underline;
         cursor: pointer;
       }
-    }
-
-    .iconSave {
-      position: absolute;
-      top: 218px;
-      left: 150px;
-      width: 18px;
-      height: 18px;
-      font-size: 12px;
-      color: #fff;
-      line-height: 18px;
-      text-align: center;
-      background: #ff6000;
-      border-radius: 2px;
     }
   }
 }

--
Gitblit v1.8.0