Przeglądaj źródła

1、订单查询页面状态搜索添加全部选项;
2、更换首页背景图

lihongxiao 2 lat temu
rodzic
commit
c8b0b6aa2b

BIN
src/assets/image/bgImg.png


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

@@ -1129,10 +1129,10 @@
                 <el-checkbox style="margin:0 10px 0 10px" @change="handleCheckAllChange"></el-checkbox>
                 <span style="font-size:14px;">全选</span>
             </el-col>
-            <el-col :span="3"  style="margin-left: 30px;">
+            <el-col :span="2"  style="margin: 0 42px 0 35px;">
               <span>保险公司</span>
             </el-col>
-            <el-col :span="4" style="margin-right: 35px;">
+            <el-col :span="5" >
               <span>报价协议</span>
             </el-col>
             <el-col :span="3">
@@ -1147,7 +1147,7 @@
             <el-col :span="3">
               <span>商业险</span>
             </el-col>
-            <el-col :span="3">
+            <el-col :span="2">
               <span>驾意险</span>
             </el-col>
           </el-row>
@@ -1664,7 +1664,7 @@
             <template
               v-if="reslistitem.namesimple == '紫金财险' && reslistitem.checked && reslistitem.agreementId"
             >
-              <div style="margin-left:100px;margin-top:15px">
+              <div style="margin-left:100px;margin:15px 0">
                 <span style="margin-right:30px" >自主定价系数</span>
                 <el-input style="width:220px" size="small" v-model="reslistitem.coefficient" placeholder="请输入内容"></el-input>
               </div>

+ 6 - 1
src/views/Letter/Orderlist.vue

@@ -103,6 +103,9 @@
         <el-col :span="21">
           <el-form-item label="订单状态">
             <el-radio-group  v-model="pageRequest.orderStatus">
+              <el-radio 
+                label="888"
+                >全部</el-radio>
               <el-radio v-for="val in optionsStatus"
                 :key="val.dictValue"
                 :label="val.dictValue"
@@ -2066,7 +2069,9 @@ export default {
     //数据
     findPage() {
       this.loading = true;
-      this.$api.letter.queryOrders(this.pageRequest).then((res) => {
+      let orderStatus=''
+      orderStatus=this.pageRequest.orderStatus==888?'':this.pageRequest.orderStatus
+      this.$api.letter.queryOrders({...this.pageRequest,orderStatus}).then((res) => {
         if (res.code == "200") {
           this.loading = false;
           this.pageResult = res.data.content;