gjy 2 лет назад
Родитель
Сommit
224513536d

+ 6 - 2
src/views/cargoOwnerManagement/empowerExamine.vue

@@ -9,7 +9,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按货主姓名、账号查找" v-model="searchkeyWord" @keyup.enter.native="find" clearable @change="find"></el-input>
+              <el-input class='find' placeholder="可按货主姓名、账号查找" v-model="searchkeyWord" @keyup.enter.native="find" clearable @change="find"></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button>
             </div>
@@ -617,7 +617,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -759,4 +760,7 @@
       margin-bottom: 20px;
     }
   }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 17 - 6
src/views/cargoOwnerManagement/merchantVerification.vue

@@ -9,7 +9,7 @@
 					</el-col>
 					<el-col :span="10">
 						<div class="screen">
-							<el-input placeholder="可按货主姓名、账号和企业名称查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
+							<el-input class='find' placeholder="可按货主姓名、账号和企业名称查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
 							<el-button class="search" @click="find"><img width="16" height="16"
 									style="margin-left: -8px" src="../../../public/img/sousuo.png" /></el-button><span
 								class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -64,7 +64,8 @@
 		</el-pagination>
 		<el-dialog :close-on-click-modal='false' title="授权书" :visible.sync="lookInfo" width="500px" center :before-close="lookBookClose">
 			<div class="InfoBook_css">
-					<img :src="bookUrl" class="InfoBook_img">
+
+					<img v-for='item in bookUrlArray' :src="item" class="InfoBook_img">
 
 			</div>
 
@@ -116,7 +117,7 @@
 				lookInfo: false,
 				rejectInfo: false,
 				form: {},
-				bookUrl:""
+				bookUrlArray:[]
 
 			};
 		},
@@ -201,7 +202,14 @@
 			},
 
 			lookBook(row) {
-				this.bookUrl = row.certificateAddressUrl
+				this.bookUrlArray=[]
+				var arr=row.certificateAddressUrl.split(',')
+				for (let i = 0; i < arr.length; i++) {
+					if(arr[i]!=''){
+						this.bookUrlArray.push(arr[i])
+					}
+					
+				}
 				this.lookInfo = true;
 			},
 			lookBookClose() {
@@ -294,7 +302,8 @@
 				height: 40px;
 				background: #2f53eb;
 				border-radius: 0px 2px 2px 0px;
-				border: 1px solid #f0f1f2;
+				border: 1px solid #DCDFE6;
+        		margin-left:-1px;
 			}
 
 			.count_css {
@@ -426,5 +435,7 @@
 			margin-top: 10px;
 		}
 	}
-
+.find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 6 - 3
src/views/cargoOwnerManagement/taskAudit.vue

@@ -9,7 +9,7 @@
 					</el-col>
 					<el-col :span="10">
 						<div class="screen">
-							<el-input placeholder="可按货主姓名、账号查找" v-model="searchkeyWord" clearable @change="find"></el-input>
+							<el-input class='find' placeholder="可按货主姓名、账号查找" v-model="searchkeyWord" clearable @change="find"></el-input>
 							<el-button class="search" @click="find"><img width="16" height="16"
 									style="margin-left: -8px" src="../../../public/img/sousuo.png" /></el-button><span
 								class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -319,7 +319,8 @@
 				height: 40px;
 				background: #2f53eb;
 				border-radius: 0px 2px 2px 0px;
-				border: 1px solid #f0f1f2;
+				border: 1px solid #DCDFE6;
+        		margin-left:-1px;
 			}
 
 			.count_css {
@@ -429,5 +430,7 @@
 		::v-deep .el-drawer {
 			overflow: auto;
 		}
-	
+	.find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 6 - 2
src/views/contractManagement/contractModel.vue

@@ -9,7 +9,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按司机姓名、账号、身份证号查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable></el-input>
+              <el-input class='find' placeholder="可按司机姓名、账号、身份证号查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button><span
                 class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -196,7 +196,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -283,4 +284,7 @@
       margin-top: 10px;
     }
   }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 6 - 2
src/views/driverManagement/fleetInfo.vue

@@ -7,7 +7,7 @@
           <el-col :span="14" style="height: 45px"> </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按队长姓名、账号、车队名称查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
+              <el-input class='find' placeholder="可按队长姓名、账号、车队名称查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button><span
                 class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -327,7 +327,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -386,4 +387,7 @@
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2; //想显示多少行
   }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 6 - 3
src/views/driverManagement/identityExamine.vue

@@ -9,7 +9,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按司机姓名、账号、身份证号查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
+              <el-input class='find' placeholder="可按司机姓名、账号、身份证号查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button><span
                 class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -730,7 +730,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -961,7 +962,9 @@
   ::v-deep .input_css .el-input__inner {
     height: 30px;
   }
-
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
   // .tupian{
   //   width: 100%;
   //   height: 100%;

+ 6 - 2
src/views/driverManagement/vehicleExamine.vue

@@ -9,7 +9,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按司机姓名、账号、车牌号查找" v-model="searchkeyWord" @keyup.enter.native="find" clearable @change="find"></el-input>
+              <el-input class='find' placeholder="可按司机姓名、账号、车牌号查找" v-model="searchkeyWord" @keyup.enter.native="find" clearable @change="find"></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button><span
                 class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -452,7 +452,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -594,4 +595,7 @@
     position: absolute;
     margin: 2px 0 0 10px;
   }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 14 - 2
src/views/enterpriseManagement/enterpriseAudit.vue

@@ -9,7 +9,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按法人姓名、账号、企业名称查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
+              <el-input class='find' placeholder="可按法人姓名、账号、企业名称查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button><span
                 class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -465,7 +465,9 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
+        // border-left: 1px solid #2f53eb;
       }
 
       .count_css {
@@ -629,4 +631,14 @@
       }
     }
   }
+  .pay {
+    .pay_css {
+      display: flex;
+      margin-bottom: 20px;
+      justify-content: space-between;
+    }
+  }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 6 - 2
src/views/feedbackManagement/userFeedback.vue

@@ -9,7 +9,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按工单编号、姓名、账号和反馈信息查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
+              <el-input class='find' placeholder="可按工单编号、姓名、账号和反馈信息查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button><span
                 class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -299,7 +299,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -383,4 +384,7 @@
       margin-top: 10px;
     }
   }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 10 - 3
src/views/officialWebsiteManagement/news.vue

@@ -3,11 +3,11 @@
     <div class="center_css">
       <div class="top_css">
             <el-button type="primary" @click="AddRecord">新增</el-button>
-            <el-date-picker v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
+            <el-date-picker class='date' v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
               range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
             </el-date-picker>
             <div class="screen">
-              <el-input v-model="searchkeyWord" @keyup.enter.native="find" placeholder="可按编号和标题内容查找" clearable />
+              <el-input class='find' v-model="searchkeyWord" @keyup.enter.native="find" placeholder="可按编号和标题内容查找" clearable />
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png"></el-button>
             </div>
@@ -200,7 +200,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -415,4 +416,10 @@
       margin: 0 auto;
     }
   }
+  .date{
+    margin:0 10px;
+  }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 10 - 3
src/views/officialWebsiteManagement/notice.vue

@@ -3,11 +3,11 @@
     <div class="center_css">
       <div class="top_css">
             <el-button type="primary" @click="AddRecord">新增</el-button>
-            <el-date-picker v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
+            <el-date-picker class='date' v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
               range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
             </el-date-picker>
             <div class="screen">
-              <el-input v-model="searchkeyWord" @keyup.enter.native="find" placeholder="可按编号和标题内容查找" clearable />
+              <el-input class='find' v-model="searchkeyWord" @keyup.enter.native="find" placeholder="可按编号和标题内容查找" clearable />
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png"></el-button>
             </div>
@@ -200,7 +200,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -415,4 +416,10 @@
       margin: 0 auto;
     }
   }
+  .date{
+    margin:0 10px;
+  }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 10 - 3
src/views/officialWebsiteManagement/publicity.vue

@@ -3,11 +3,11 @@
     <div class="center_css">
       <div class="top_css">
             <el-button type="primary" @click="AddRecord">新增</el-button>
-            <el-date-picker v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
+            <el-date-picker class='date' v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
               range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
             </el-date-picker>
             <div class="screen">
-              <el-input v-model="searchkeyWord" @keyup.enter.native="find" placeholder="可按编号和标题内容查找" clearable />
+              <el-input class='find' v-model="searchkeyWord" @keyup.enter.native="find" placeholder="可按编号和标题内容查找" clearable />
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png"></el-button>
             </div>
@@ -200,7 +200,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -415,4 +416,10 @@
       margin: 0 auto;
     }
   }
+  .date{
+    margin:0 10px;
+  }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 6 - 2
src/views/orderManagement/orderAudit.vue

@@ -12,7 +12,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input placeholder="可按订单编号、姓名、账号查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
+              <el-input class='find' placeholder="可按订单编号、姓名、账号查找" @keyup.enter.native="find" v-model="searchkeyWord" clearable @change="find"></el-input>
               <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
                   src="../../../public/img/sousuo.png" /></el-button><span
                 class="count_css">共{{ deptBudgetTotal }}条</span>
@@ -676,7 +676,8 @@
         height: 40px;
         background: #2f53eb;
         border-radius: 0px 2px 2px 0px;
-        border: 1px solid #f0f1f2;
+        border: 1px solid #DCDFE6;
+        margin-left:-1px;
       }
 
       .count_css {
@@ -852,4 +853,7 @@
   ::v-deep .el-drawer {
     overflow: auto;
   }
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>

+ 6 - 2
src/views/platformManagement/specifiedRecords.vue

@@ -9,7 +9,7 @@
           </el-col>
           <el-col :span="10">
             <div class="screen">
-              <el-input v-model="searchkeyWord" placeholder="可按版本号、编写单位、编撰人员查找" @keyup.enter.native="find" clearable @change="find" />
+              <el-input class='find' v-model="searchkeyWord" placeholder="可按版本号、编写单位、编撰人员查找" @keyup.enter.native="find" clearable @change="find" />
               <el-button class="search" @click="find"><img
                 width="16"
                 height="16"
@@ -351,7 +351,8 @@ export default {
 				height: 40px;
 				background: #2f53eb;
 				border-radius: 0px 2px 2px 0px;
-				border: 1px solid #f0f1f2;
+				border: 1px solid #DCDFE6;
+        margin-left:-1px;
 			}
 
 			.count_css {
@@ -570,4 +571,7 @@ export default {
 			margin: 0 auto;
 		}
 	}
+  .find::v-deep input.el-input__inner{
+    border-radius:0;
+  }
 </style>