@dongkboy 3 tahun lalu
induk
melakukan
6a95e6d855
3 mengubah file dengan 12 tambahan dan 12 penghapusan
  1. 2 2
      src/App.vue
  2. 5 5
      src/views/Letter/Letter.vue
  3. 5 5
      src/views/Letter/Orderlist.vue

+ 2 - 2
src/App.vue

@@ -33,8 +33,8 @@ export default {
 
 <style>
 .icon {
-  width: 24px;
-  height: 24px;
+  width: 34px;
+  height: 34px;
   vertical-align: -0.15em;
   fill: currentColor;
   overflow: hidden;

+ 5 - 5
src/views/Letter/Letter.vue

@@ -390,7 +390,7 @@
               <div class="flex f-c">
                 <span style="font-size:12px;">同步</span>
                 <svg data-v-7ff62e07="" t="1595555843123" viewBox="0 0 1505 1024" version="1.1"
-                  xmlns="http://www.w3.org/2000/svg" p-id="7086" width="30" height="30" class="icon">
+                  xmlns="http://www.w3.org/2000/svg" p-id="7086" width="100" height="100" class="icon">
                   <path data-v-7ff62e07=""
                     d="M227.83021864 224.558766h537.088236l0.906223-176.562471c0.151037-42.743524 51.956792-64.039767 82.16423-33.83233L1311.06892164 478.30124c18.879648 18.879648 18.728611 49.38916-0.151037 68.268808L843.30675464 1009.952137c-30.509512 30.207437-82.315267 8.458082-82.013192-34.436479l0.755186-170.974095H227.83021864c-26.28047 0-47.425677-21.296243-47.425676-47.425676V271.984443C180.25350564 245.703972 201.54974864 224.558766 227.83021864 224.558766z"
                     p-id="7087" fill="#f05f08" @click="synchronization"></path>
@@ -1762,7 +1762,6 @@ export default {
           amount: "0",
           amountDesc: "不投保",
           coveragePremium: 0,
-
           amtList: [
             {
               label: "不投保",
@@ -2429,7 +2428,7 @@ export default {
                     instantFlag: "0",
                   });
                   _this.insureList.map((ele, index) => {
-                    if (ele.amount != "0" && ele.kindCode == "D4") {
+                    if (ele.amount != "0" && (ele.kindCode == "D4" || ele.kindCode == "SY_FJ_YBW2")) {
                       _this.kindList.push({
                         unitAmount: _this.insureList[index].amount,
                         kindCode: _this.insureList[index].kindCode,
@@ -4215,8 +4214,8 @@ export default {
     },
     //同步
     synchronization() {
-      this.jqstartDate = this.systartDate;
-      this.jqendDate = this.syendDate;
+      this.systartDate=this.jqstartDate;
+      this.syendDate=this.jqendDate;
     },
     add() {
       this.carInfo = JSON.parse(JSON.stringify(this.defaultcarInfo))
@@ -5007,6 +5006,7 @@ export default {
   }
 
   .el-checkbox__inner {
+    border: 1px solid #ff7000;
     &:hover {
       border-color: #ee7000;
     }

+ 5 - 5
src/views/Letter/Orderlist.vue

@@ -62,8 +62,8 @@
                         <div slot="reference" class="name-wrapper">
                             <el-tag v-if="item.orderstatus == '0'" type="success" size="medium">报价中</el-tag>
                             <el-tag v-if="item.orderstatus == '1'" type="warning" size="medium">待核保</el-tag>
-                            <el-tag v-if="item.orderstatus == '2'" type="warning" size="medium">已核保待缴费</el-tag>
-                            <el-tag v-if="item.orderstatus == '3'" type="warning" size="medium">已承保</el-tag>
+                            <el-tag v-if="item.orderstatus == '2'" type="danger" size="medium">已核保待缴费</el-tag>
+                            <el-tag v-if="item.orderstatus == '3'" type="danger" size="medium">已承保</el-tag>
                             <el-tag v-if="item.orderstatus == '4'" type="danger" size="medium">核保退回</el-tag>
                         </div>
                         <div>
@@ -82,10 +82,10 @@
             <el-table-column prop="product" label="投保险种" align="center" width="200"></el-table-column>
             <el-table-column prop="orderstatus" label="状态" align="center">
                 <template slot-scope="scope">
-                    <el-tag v-if="scope.row.orderstatus == '0'" type="warning" size="small">报价中</el-tag>
+                    <el-tag v-if="scope.row.orderstatus == '0'" type="success" size="small">报价中</el-tag>
                     <el-tag v-if="scope.row.orderstatus == '1'" type="warning" size="small">待核保</el-tag>
-                    <el-tag v-if="scope.row.orderstatus == '2'" type="warning" size="small">已核保待缴费</el-tag>
-                    <el-tag v-if="scope.row.orderstatus == '3'" type="warning" size="small">已承保</el-tag>
+                    <el-tag v-if="scope.row.orderstatus == '2'" type="danger" size="small">已核保待缴费</el-tag>
+                    <el-tag v-if="scope.row.orderstatus == '3'" type="danger" size="small">已承保</el-tag>
                     <el-tag v-if="scope.row.orderstatus == '4'" type="danger" size="small">核保退回</el-tag>
                 </template>
             </el-table-column>