|
@@ -132,7 +132,7 @@
|
|
|
placeholder="请输入内容"
|
|
|
clearable
|
|
|
@clear="clearData"
|
|
|
- v-model="keyWords"
|
|
|
+ v-model.trim="keyWords"
|
|
|
></el-input>
|
|
|
<el-button @click="getUserData">搜索</el-button>
|
|
|
</div>
|
|
@@ -394,6 +394,7 @@ export default {
|
|
|
// PageSize: this.PageSize,
|
|
|
// PageIndex: this.pageNum,
|
|
|
// });
|
|
|
+ this.keyWords = this.keyWords.replace(/\s+/g, "");
|
|
|
const search = this.keyWords;
|
|
|
if (search) {
|
|
|
this.FormData.Unuselist = findarrays(
|
|
@@ -431,6 +432,9 @@ export default {
|
|
|
padding: 0 64px;
|
|
|
padding-top: 32px;
|
|
|
}
|
|
|
+::v-deep .el-row {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
.topBox {
|
|
|
width: 100%;
|
|
|
height: 240px;
|
|
@@ -438,6 +442,7 @@ export default {
|
|
|
box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
|
|
|
border-radius: 16px;
|
|
|
}
|
|
|
+
|
|
|
.fristLine {
|
|
|
display: flex;
|
|
|
margin-left: 33px;
|