|
@@ -55,8 +55,6 @@
|
|
|
alt=""
|
|
|
/>
|
|
|
</ws-button>
|
|
|
-
|
|
|
- <ws-button type="primary" @click="handleLook()">查找</ws-button>
|
|
|
</template>
|
|
|
</BaseHeaderLayout>
|
|
|
<div>
|
|
@@ -165,9 +163,9 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="numberCard" label="身份证号" width="200">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="driverPhone" label="手机号" width="120">
|
|
|
+ <el-table-column prop="driverPhone" label="手机号" width="160">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="carNumber" label="车牌号" width="120">
|
|
|
+ <el-table-column prop="carNumber" label="车牌号" width="160">
|
|
|
<template scope="scope">
|
|
|
<ws-select
|
|
|
v-model="scope.row.carNumber"
|
|
@@ -184,15 +182,15 @@
|
|
|
</ws-select>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="binNumber" label="常驻城市" width="120">
|
|
|
+ <el-table-column prop="binNumber" label="常驻城市" width="160">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.residentCityProvincial
|
|
|
}}{{ scope.row.residentCityMunicipal }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="carModel" label="车型" width="80">
|
|
|
+ <el-table-column prop="carModel" label="车型" width="120">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="carLength" label="车长" width="80">
|
|
|
+ <el-table-column prop="carLength" label="车长" width="120">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="结款账户" width="120">
|
|
|
<template slot-scope="scope">
|
|
@@ -241,24 +239,25 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="address" label="操作" width="500">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button size="medium" type="text" @click="look(scope.row)"
|
|
|
+ <el-button size="medium" type="text" class="record" @click="look(scope.row)"
|
|
|
>查看</el-button
|
|
|
>
|
|
|
- <el-button size="medium" type="text" @click="edit(scope.row)"
|
|
|
+ <el-button size="medium" type="text" class="record" @click="edit(scope.row)"
|
|
|
>编辑</el-button
|
|
|
>
|
|
|
- <el-button size="medium" type="text" @click="deletes(scope.row)"
|
|
|
+ <el-button size="medium" type="text" class="record" @click="deletes(scope.row)"
|
|
|
>删除</el-button
|
|
|
>
|
|
|
<el-button
|
|
|
v-if="scope.row.disableStatusFlag != 1"
|
|
|
size="medium"
|
|
|
+ class="record"
|
|
|
type="text"
|
|
|
@click="stop(scope.row)"
|
|
|
>禁用</el-button
|
|
|
>
|
|
|
<el-tooltip
|
|
|
- class="item"
|
|
|
+ class="item record"
|
|
|
effect="dark"
|
|
|
:content="scope.row.disableReasons"
|
|
|
placement="right-start"
|
|
@@ -707,7 +706,7 @@ export default {
|
|
|
display: none;
|
|
|
}
|
|
|
|
|
|
-/deep/.el-pagination{
|
|
|
+/deep/.el-pagination {
|
|
|
text-align: center;
|
|
|
}
|
|
|
.ws-info-table {
|
|
@@ -721,6 +720,8 @@ export default {
|
|
|
/deep/.ws-info-table .el-form-item .el-form-item__label {
|
|
|
text-align: center;
|
|
|
background: #f6f7fc;
|
|
|
+ color: #8890b1;
|
|
|
+ font-size: 12px;
|
|
|
}
|
|
|
|
|
|
/deep/.ws-info-table .el-form-item.company,
|
|
@@ -741,10 +742,33 @@ export default {
|
|
|
/deep/.el-table .el-table__body .cell {
|
|
|
text-align: center;
|
|
|
}
|
|
|
+.el-table th.is-leaf,
|
|
|
+.el-table td {
|
|
|
+ border-right: 1px solid #eee;
|
|
|
+}
|
|
|
.el-button--text {
|
|
|
color: #5878e8;
|
|
|
}
|
|
|
.el-button--primary {
|
|
|
background: #5878e8;
|
|
|
}
|
|
|
+//操作按钮
|
|
|
+.record,
|
|
|
+.adjustment {
|
|
|
+ display: inline-block;
|
|
|
+ color: #5878e8;
|
|
|
+ padding: 0 4px !important;
|
|
|
+ position: relative;
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+.record:after {
|
|
|
+ position: absolute;
|
|
|
+ content: '';
|
|
|
+ display: block;
|
|
|
+ top: 9px;
|
|
|
+ right: -7px;
|
|
|
+ width: 1px;
|
|
|
+ height: 12px;
|
|
|
+ background: #e9ecf7;
|
|
|
+}
|
|
|
</style>
|