فهرست منبع

调整报价管理、报价次数配置静态页面,开发报价明细和增次明细页面

wuguojie 1 سال پیش
والد
کامیت
d4f7154634

+ 145 - 0
src/views/PeopleManage/Agent/AddCountDetail.vue

@@ -0,0 +1,145 @@
+<template>
+  <div class="quoteDetail">
+    <el-form ref="QuoteDetailForm" v-model="quoteDetailForm" :inline="true" label-width="130px">
+      <el-form-item style="width: 30%;" label="代理人信息">
+        <el-input size="small" v-model="quoteDetailForm.orderNumber" placeholder="请输入订单号"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="保险公司">
+        <el-select style="width: 100%" size="small" v-model="quoteDetailForm.action">
+          <el-option label="动作1" value="1"></el-option>
+          <el-option label="动作2" value="2"></el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="操作时间">
+        <el-date-picker
+          size="small"
+          v-model="quoteDetailForm.rangeDate"
+          type="daterange"
+          range-separator="至"
+          start-placeholder="开始日期"
+          end-placeholder="结束日期">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="操作人信息">
+        <el-input size="small" v-model="quoteDetailForm.agentPeoeple" placeholder="请输入工号、姓名查找"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 30%;">
+        <el-button type="primary" size="small" style="margin-left: 150px;">查询</el-button>
+        <el-button size="small">重置</el-button>
+      </el-form-item>
+    </el-form>
+    <el-table
+      :data="tableData"
+    >
+      <el-table-column prop="code" label="部门编码" width="150"></el-table-column>
+      <el-table-column prop="organization" label="机构名称" width="150"></el-table-column>
+      <el-table-column prop="department" label="部门名称" width="150"></el-table-column>
+      <el-table-column prop="number" label="工号" width="200">
+        <template slot-scope="scope">
+          <a>{{ scope.row.orderNumber }}</a>
+        </template>
+      </el-table-column>
+      <el-table-column prop="name" label="姓名" width="150"></el-table-column>
+      <el-table-column prop="phone" label="联系电话" width="150"></el-table-column>
+      <el-table-column prop="company" label="保险公司" width="150"></el-table-column>
+      <el-table-column prop="count" label="增加次数" width="150"></el-table-column>
+      <el-table-column prop="time" label="操作时间" width="150"></el-table-column>
+      <el-table-column prop="people" label="操作人" width="150"></el-table-column>
+      <el-table-column label="操作" fixed="right" width="200">
+        <template slot-scope="scope">
+          <kt-button label="详情" @click="dialogVisible = true" size="small" type="text" perms="agreement:input:update" style="color: #D42426 !important " />
+        </template>
+      </el-table-column>
+    </el-table>
+    <div class="flex-box">
+      <el-pagination
+        @size-change="handleSizeChange"
+        :current-page="pageNum"
+        :page-sizes="[10, 20, 30, 40]"
+        :page-size="pageSize"
+        layout="total, sizes, prev, pager, next, jumper"
+        :total="total">
+      </el-pagination>
+    </div>
+    <el-dialog
+      title="增加次数"
+      :visible.sync="dialogVisible"
+      width="40%">
+      <el-form style="width: 100%" ref="addCountForm" :model="addCountForm" disabled :inline="true" label-width="130px">
+        <el-form-item label="代理人" style="width: 80%">
+          <el-input style="width: 100%" v-model="addCountForm.agent"></el-input>
+        </el-form-item>
+        <el-form-item label="保险公司" style="width: 80%">
+          <el-input v-model="addCountForm.company"></el-input>
+        </el-form-item>
+        <el-form-item label="今日已报价" style="width: 80%">
+          <el-input v-model="addCountForm.hadQuote"></el-input>
+        </el-form-item>
+        <el-form-item label="今日已承保" style="width: 80%">
+          <el-input v-model="addCountForm.had"></el-input>
+        </el-form-item>
+        <el-form-item label="报价出单比" style="width: 80%">
+          <el-input v-model="addCountForm.assign"></el-input>
+          <span style="font-size: 12px; color: #999;">报价出单比=承保单数/报价单数*100%(四舍五入到小数点后两位)</span>
+        </el-form-item>
+        <el-form-item label="增加次数" style="width: 80%">
+          <el-input v-model="addCountForm.count"></el-input>
+        </el-form-item>
+        <el-form-item label="备注" style="width: 80%">
+          <el-input type="textarea" v-model="addCountForm.tips"></el-input>
+        </el-form-item>
+      </el-form>
+      <span slot="footer" class="dialog-footer">
+        <el-button @click="dialogVisible = false">取 消</el-button>
+        <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
+      </span>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import KtButton from "../../Core/KtButton.vue";
+
+export default {
+  components: {KtButton},
+  data() {
+    return {
+      quoteDetailForm: {},
+      tableData: [{
+        code: 1,
+        organization: 1,
+        department: 1,
+        number: 1,
+        name: 1,
+        phone: 1,
+        company: 1,
+        count: 1,
+        time: 1,
+        people: 1
+      }],
+      pageNum: 1,
+      pageSize: 10,
+      total: 0,
+      dialogVisible: false,
+      addCountForm: {}
+    }
+  },
+  methods: {
+    handleSizeChange() {
+
+    }
+  }
+}
+</script>
+
+<style>
+.flex-box{
+  display: flex;
+  align-items: center;
+  justify-content: flex-end;
+  margin: 10px 0;
+}
+.el-form-item__content{
+  width: calc(100% - 150px);
+}
+</style>

+ 67 - 15
src/views/PeopleManage/Agent/QuoteCountManagement.vue

@@ -8,15 +8,16 @@
         <el-row :gutter="20" align="middle" style="display: flex; align-items: center; width: 100%; overflow: hidden; margin: 0">
         <el-row :gutter="20" align="middle" style="display: flex; align-items: center; width: 100%; overflow: hidden; margin: 0">
           <el-col :span="18" style="padding-left: 20px">报价限制</el-col>
           <el-col :span="18" style="padding-left: 20px">报价限制</el-col>
           <el-col :span="6">
           <el-col :span="6">
-            <el-button type="primary" @click="handleSync">同步配置到其他保司</el-button>
-            <el-button type="primary" @click="handleEdit">编辑</el-button>
+            <el-button type="primary" @click="handleSync" :disabled="quoteFormDisabled">同步配置到其他保司</el-button>
+            <el-button type="primary" @click="handleEdit" v-if="quoteFormDisabled">编辑</el-button>
+            <el-button type="primary" @click="handleSave" v-else>保存</el-button>
           </el-col>
           </el-col>
         </el-row>
         </el-row>
         <el-divider></el-divider>
         <el-divider></el-divider>
-        <el-form :model="quoteForm" ref="QuoteForm" :rules="quoteRules" style="padding-left: 30px;" label-width="100px">
+        <el-form :model="quoteForm" ref="QuoteForm" :rules="quoteRules" :disabled="quoteFormDisabled" style="padding-left: 30px;" label-width="100px">
           <el-form-item prop="count" label="报价次数限制">
           <el-form-item prop="count" label="报价次数限制">
             <el-switch v-model="quoteForm.count"></el-switch>
             <el-switch v-model="quoteForm.count"></el-switch>
-            <p class="tips">开启后,代理人的报价次数将到限制,超出设置的报价次数后将停止代理人的报价功能</p>
+            <p class="tips">开启后,代理人的报价次数将到限制,超出设置的报价次数后将停止代理人的报价功能</p>
           </el-form-item>
           </el-form-item>
           <el-form-item prop="agentLimit" label="代理人限制">
           <el-form-item prop="agentLimit" label="代理人限制">
             <div>
             <div>
@@ -37,7 +38,7 @@
               <el-table-column prop="phone" label="联系电话"></el-table-column>
               <el-table-column prop="phone" label="联系电话"></el-table-column>
               <el-table-column label="操作">
               <el-table-column label="操作">
                 <template slot-scope="scope">
                 <template slot-scope="scope">
-                  <kt-button type="text" label="删除" style="color: #2D4D89;" />
+                  <kt-button :disabled="quoteFormDisabled" type="text" label="删除" style="color: #2D4D89;" />
                 </template>
                 </template>
               </el-table-column>
               </el-table-column>
             </el-table>
             </el-table>
@@ -92,20 +93,51 @@
       </template>
       </template>
     </el-dialog>
     </el-dialog>
     <el-dialog
     <el-dialog
+      title="选择代理人"
       :visible.sync="agentTableShow"
       :visible.sync="agentTableShow"
       width="80%"
       width="80%"
     >
     >
+      <el-form ref="CountDetailForm" v-model="countDetailForm" :inline="true" label-width="130px">
+        <el-form-item style="width: 30%;" label="代理人">
+          <el-input size="small" v-model="countDetailForm.orderNumber" placeholder="请输入订单号"></el-input>
+        </el-form-item>
+        <el-form-item style="width: 30%;" label="所属机构">
+          <el-select style="width: 100%" size="small" filterable v-model="countDetailForm.organization">
+            <el-option label="机构1" value="1"></el-option>
+            <el-option label="机构2" value="2"></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item style="width: 30%;">
+          <el-button type="primary" size="small" style="margin-left: 150px;">查询</el-button>
+          <el-button size="small">重置</el-button>
+        </el-form-item>
+      </el-form>
+      <div>
+        <el-select class="select-box" size="small" v-model="checkType" placeholder="全选" style="width: 130px; border: none;">
+          <el-option label="选中所有数据" value="all"></el-option>
+          <el-option label="选中本页数据" value="cur"></el-option>
+        </el-select>
+        <el-divider direction="vertical"></el-divider>
+        <span>已经选择了{{ selectedLength }}条</span>
+      </div>
       <el-table
       <el-table
         :data="agentDataList"
         :data="agentDataList"
         row-key="id"
         row-key="id"
         style="width: 100%">
         style="width: 100%">
-        <el-table-column prop="code" label="部门编码"></el-table-column>
+        <el-table-column type="selection"></el-table-column>
         <el-table-column prop="organization" label="机构名称"></el-table-column>
         <el-table-column prop="organization" label="机构名称"></el-table-column>
         <el-table-column prop="department" label="部门名称"></el-table-column>
         <el-table-column prop="department" label="部门名称"></el-table-column>
         <el-table-column prop="number" label="工号"></el-table-column>
         <el-table-column prop="number" label="工号"></el-table-column>
         <el-table-column prop="name" label="姓名"></el-table-column>
         <el-table-column prop="name" label="姓名"></el-table-column>
         <el-table-column prop="phone" label="联系电话"></el-table-column>
         <el-table-column prop="phone" label="联系电话"></el-table-column>
       </el-table>
       </el-table>
+      <div class="pagination-box">
+        <el-pagination
+          background
+          layout="prev, pager, next"
+          :total="total">
+        </el-pagination>
+      </div>
     </el-dialog>
     </el-dialog>
   </div>
   </div>
 </template>
 </template>
@@ -161,27 +193,38 @@ export default {
         name: '',
         name: '',
         phone: ''
         phone: ''
       }],
       }],
+      isCheckedAll: false,
+      checkType: '',
       agentTableShow: false,
       agentTableShow: false,
       agentDataList: [{
       agentDataList: [{
         id: '1',
         id: '1',
-        code: '',
-        organization: '',
-        department: '',
-        number: '',
-        name: '',
-        phone: ''
-      }]
+        code: '1',
+        organization: '1',
+        department: '1',
+        number: '1',
+        name: '1',
+        phone: '1'
+      }],
+      selectedList: [],
+      selectedLength: 0,
+      total: 100,
+      countDetailForm: {},
+      quoteFormDisabled: true
     }
     }
   },
   },
   methods: {
   methods: {
     handleSelect(item, index) {
     handleSelect(item, index) {
       this.menuIndex = index
       this.menuIndex = index
+      this.quoteFormDisabled = true
     },
     },
     handleSync() {
     handleSync() {
       this.syncShow = true
       this.syncShow = true
     },
     },
     handleEdit() {
     handleEdit() {
-
+      this.quoteFormDisabled = false
+    },
+    handleSave() {
+      this.quoteFormDisabled = true
     },
     },
     handleSubmit() {
     handleSubmit() {
 
 
@@ -193,7 +236,7 @@ export default {
 }
 }
 </script>
 </script>
 
 
-<style lang="scss">
+<style scoped>
 .QuoteCountManagement{
 .QuoteCountManagement{
   width: 100%;
   width: 100%;
   height: 100%;
   height: 100%;
@@ -214,10 +257,19 @@ export default {
   color: #1890FF;
   color: #1890FF;
   font-weight: 700;
   font-weight: 700;
 }
 }
+.pagination-box{
+  display: flex;
+  align-items: center;
+  justify-content: flex-end;
+  margin-top: 10px;
+}
 /deep/.el-divider--horizontal{
 /deep/.el-divider--horizontal{
   margin: 12px 0;
   margin: 12px 0;
 }
 }
 /deep/.el-input__inner{
 /deep/.el-input__inner{
   padding-left: 34px !important;
   padding-left: 34px !important;
 }
 }
+/deep/.select-box .el-input__inner{
+  border: none !important;
+}
 </style>
 </style>

+ 102 - 0
src/views/PeopleManage/Agent/QuoteDetail.vue

@@ -0,0 +1,102 @@
+<template>
+  <div class="quoteDetail">
+    <el-form ref="QuoteDetailForm" v-model="quoteDetailForm" :inline="true" label-width="130px">
+      <el-form-item style="width: 30%;" label="报价时间">
+        <el-date-picker
+          size="small"
+          v-model="quoteDetailForm.rangeDate"
+          type="daterange"
+          range-separator="至"
+          start-placeholder="开始日期"
+          end-placeholder="结束日期">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="订单号">
+        <el-input size="small" v-model="quoteDetailForm.orderNumber" placeholder="请输入订单号"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="动作">
+        <el-select style="width: 100%" size="small" v-model="quoteDetailForm.action">
+          <el-option label="动作1" value="1"></el-option>
+          <el-option label="动作2" value="2"></el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="代理人">
+        <el-input size="small" v-model="quoteDetailForm.agentPeoeple" placeholder="请输入工号、姓名查找"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="车牌号">
+        <el-input size="small" v-model="quoteDetailForm.carNumber" placeholder="请输入车牌号"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="结果">
+        <el-select style="width: 100%" size="small" v-model="quoteDetailForm.action">
+          <el-option label="结果1" value="1"></el-option>
+          <el-option label="结果2" value="2"></el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item style="width: 30%;" label="操作人">
+        <el-input size="small" v-model="quoteDetailForm.person" placeholder="请输入操作人"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 30%;">
+        <el-button type="primary" size="small" style="margin-left: 150px;">查询</el-button>
+        <el-button size="small">重置</el-button>
+      </el-form-item>
+    </el-form>
+    <el-table
+      :data="tableData"
+    >
+      <el-table-column prop="" label="报价时间"></el-table-column>
+      <el-table-column prop="" label="动作"></el-table-column>
+      <el-table-column prop="" label="保险公司"></el-table-column>
+      <el-table-column prop="" label="订单号">
+        <template slot-scope="scope">
+          <a>{{ scope.row.orderNumber }}</a>
+        </template>
+      </el-table-column>
+      <el-table-column prop="" label="车牌号"></el-table-column>
+      <el-table-column prop="" label="工号"></el-table-column>
+      <el-table-column prop="" label="姓名"></el-table-column>
+      <el-table-column prop="" label="联系电话"></el-table-column>
+      <el-table-column prop="" label="结果"></el-table-column>
+    </el-table>
+    <div class="flex-box">
+      <el-pagination
+        @size-change="handleSizeChange"
+        :current-page="pageNum"
+        :page-sizes="[10, 20, 30, 40]"
+        :page-size="pageSize"
+        layout="total, sizes, prev, pager, next, jumper"
+        :total="total">
+      </el-pagination>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      quoteDetailForm: {},
+      tableData: [],
+      pageNum: 1,
+      pageSize: 10,
+      total: 0
+    }
+  },
+  methods: {
+    handleSizeChange() {
+
+    }
+  }
+}
+</script>
+
+<style>
+.flex-box{
+  display: flex;
+  align-items: center;
+  justify-content: flex-end;
+  margin: 10px 0;
+}
+.el-form-item__content{
+  width: calc(100% - 150px);
+}
+</style>

+ 67 - 46
src/views/PeopleManage/Agent/QuoteManagement.vue

@@ -1,43 +1,54 @@
 <template>
 <template>
   <div class="quoteManagement">
   <div class="quoteManagement">
-    <el-row :gutter="20">
-      <el-form ref="QuoteForm" :model="quoteForm" :inline="true" label-width="130px">
-        <el-col :span="6">
-          <el-form-item label="代理人信息">
-            <el-input v-model="quoteForm.people" size="small" placeholder="请输入姓名和手机号查找"></el-input>
-          </el-form-item>
-        </el-col>
-        <el-col :span="6">
-          <el-form-item label="工号">
-            <el-input v-model="quoteForm.number" size="small" placeholder="请输入工号查找"></el-input>
-          </el-form-item>
-        </el-col>
-        <el-col :span="6">
-          <el-form-item label="保险公司">
-            <el-select v-model="quoteForm.company" size="small"></el-select>
-          </el-form-item>
-        </el-col>
-        <el-col :span="6">
-          <el-button size="small">重置</el-button>
-          <el-button type="primary" size="small">查询</el-button>
-        </el-col>
-      </el-form>
-    </el-row>
+    <el-form ref="QuoteForm" :model="quoteForm" :inline="true" label-width="130px">
+      <el-form-item style="width: 20%" label="代理人信息">
+        <el-input v-model="quoteForm.people" size="small" placeholder="请输入姓名和手机号查找"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 20%" label="工号">
+        <el-input v-model="quoteForm.number" size="small" placeholder="请输入工号查找"></el-input>
+      </el-form-item>
+      <el-form-item style="width: 20%" label="保险公司">
+        <el-select v-model="quoteForm.company" filterable size="small"></el-select>
+      </el-form-item>
+      <el-form-item style="width: 20%">
+        <el-button size="small">重置</el-button>
+        <el-button type="primary" size="small">查询</el-button>
+      </el-form-item>
+    </el-form>
     <el-table
     <el-table
       :data="quoteData"
       :data="quoteData"
     >
     >
-      <el-table-column prop="" label="部门编码"></el-table-column>
-      <el-table-column prop="" label="机构名称"></el-table-column>
-      <el-table-column prop="" label="部门名称"></el-table-column>
-      <el-table-column prop="" label="工号"></el-table-column>
-      <el-table-column prop="" label="姓名"></el-table-column>
-      <el-table-column prop="" label="联系电话"></el-table-column>
-      <el-table-column prop="" label="保险公司"></el-table-column>
-      <el-table-column prop="" label="今日报价(次)"></el-table-column>
-      <el-table-column prop="" label="今日报价后承保(单)"></el-table-column>
-      <el-table-column prop="" label="累计报价(次)"></el-table-column>
-      <el-table-column prop="" label="累计承保(单)"></el-table-column>
-      <el-table-column label="操作">
+      <el-table-column prop="" label="部门编码" width="150"></el-table-column>
+      <el-table-column prop="" label="机构名称" width="150"></el-table-column>
+      <el-table-column prop="" label="部门名称" width="150"></el-table-column>
+      <el-table-column prop="" label="工号" width="150"></el-table-column>
+      <el-table-column prop="" label="姓名" width="150"></el-table-column>
+      <el-table-column prop="" label="联系电话" width="150"></el-table-column>
+      <el-table-column prop="" label="保险公司" width="150"></el-table-column>
+      <el-table-column prop="" label="今日报价(次)" width="150"></el-table-column>
+      <el-table-column prop="" label="今日报价(单)" width="150"></el-table-column>
+      <el-table-column prop="" label="今日承保(单)" width="150"></el-table-column>
+      <el-table-column width="150">
+        <template slot="header" slot-scope="scope">
+          <div>
+            <span>报价出单比</span>
+            <el-popover
+              popper-class="popover-box"
+              placement="top-end"
+              title=""
+              width="250"
+              trigger="hover"
+              content="报价出单比=承保单数/报价单数*100%
+(四舍五入到小数点后两位)"
+            >
+              <i slot="reference" class="el-icon-question"></i>
+            </el-popover>
+          </div>
+        </template>
+      </el-table-column>
+      <el-table-column prop="" label="累计报价(次)" width="150"></el-table-column>
+      <el-table-column prop="" label="累计承保(单)" width="150"></el-table-column>
+      <el-table-column label="操作" width="200" fixed="right">
         <template slot-scope="scope">
         <template slot-scope="scope">
           <kt-button label="增加次数" size="small" type="text" perms="agreement:input:delete"
           <kt-button label="增加次数" size="small" type="text" perms="agreement:input:delete"
                      @click="addCount(scope.$index, scope.row)" style="color: #D42426 !important " />
                      @click="addCount(scope.$index, scope.row)" style="color: #D42426 !important " />
@@ -57,27 +68,28 @@
     <el-dialog
     <el-dialog
       title="增加次数"
       title="增加次数"
       :visible.sync="dialogVisible"
       :visible.sync="dialogVisible"
-      width="30%">
+      width="40%">
       <el-form style="width: 100%" ref="AddForm" :model="addForm" :inline="true" label-width="130px">
       <el-form style="width: 100%" ref="AddForm" :model="addForm" :inline="true" label-width="130px">
-        <el-form-item label="代理人" style="width: 100%">
+        <el-form-item label="代理人" style="width: 80%">
           <el-input style="width: 100%" v-model="addForm.agent" disabled></el-input>
           <el-input style="width: 100%" v-model="addForm.agent" disabled></el-input>
         </el-form-item>
         </el-form-item>
-        <el-form-item label="保险公司">
+        <el-form-item label="保险公司" style="width: 80%">
           <el-input v-model="addForm.company" disabled></el-input>
           <el-input v-model="addForm.company" disabled></el-input>
         </el-form-item>
         </el-form-item>
-        <el-form-item label="今日已报价">
+        <el-form-item label="今日已报价" style="width: 80%">
           <el-input v-model="addForm.hadQuote" disabled></el-input>
           <el-input v-model="addForm.hadQuote" disabled></el-input>
         </el-form-item>
         </el-form-item>
-        <el-form-item label="今日已承保">
+        <el-form-item label="今日已承保" style="width: 80%">
           <el-input v-model="addForm.had" disabled></el-input>
           <el-input v-model="addForm.had" disabled></el-input>
         </el-form-item>
         </el-form-item>
-        <el-form-item label="报价出单比">
+        <el-form-item label="报价出单比" style="width: 80%">
           <el-input v-model="addForm.assign" disabled></el-input>
           <el-input v-model="addForm.assign" disabled></el-input>
+          <span style="font-size: 12px; color: #999;">报价出单比=承保单数/报价单数*100%(四舍五入到小数点后两位)</span>
         </el-form-item>
         </el-form-item>
-        <el-form-item label="增加次数">
+        <el-form-item label="增加次数" style="width: 80%">
           <el-input v-model="addForm.count"></el-input>
           <el-input v-model="addForm.count"></el-input>
         </el-form-item>
         </el-form-item>
-        <el-form-item label="备注">
+        <el-form-item label="备注" style="width: 80%">
           <el-input type="textarea" v-model="addForm.tips"></el-input>
           <el-input type="textarea" v-model="addForm.tips"></el-input>
         </el-form-item>
         </el-form-item>
       </el-form>
       </el-form>
@@ -92,7 +104,6 @@
 <script>
 <script>
 import KtButton from "@/views/Core/KtButton";
 import KtButton from "@/views/Core/KtButton";
 export default {
 export default {
-  name: "index.vue",
   components: {
   components: {
     KtButton
     KtButton
   },
   },
@@ -124,13 +135,23 @@ export default {
 }
 }
 </script>
 </script>
 
 
-<style scoped lang="scss">
+<style>
 .flex-box{
 .flex-box{
   display: flex;
   display: flex;
   align-items: center;
   align-items: center;
   justify-content: flex-end;
   justify-content: flex-end;
 }
 }
 .el-form-item__content{
 .el-form-item__content{
-  width: 100%;
+  width: calc(100% - 130px);
+}
+.popover-box{
+  background: rgba(0,0,0,.5) !important;
+  color: #fff !important;
+}
+.popper__arrow{
+  border-top-color: rgba(0,0,0,.4) !important;
+}
+.popper__arrow::after{
+  border-top-color: rgba(0,0,0,0) !important;
 }
 }
 </style>
 </style>