|
@@ -1,148 +1,418 @@
|
|
// 身份审核
|
|
// 身份审核
|
|
<template>
|
|
<template>
|
|
<div class="center">
|
|
<div class="center">
|
|
- <div class="top_css">
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="14">
|
|
|
|
- <el-button type="primary">全部</el-button>
|
|
|
|
- <el-button type="primary">待审核</el-button>
|
|
|
|
- <el-button type="primary">已通过</el-button>
|
|
|
|
- <el-button type="primary">已驳回</el-button>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="10">
|
|
|
|
- <div class="screen">
|
|
|
|
- <el-input placeholder="可按司机姓名、账号、身份证号查找" v-model="searchkeyWord" clearable></el-input>
|
|
|
|
- <el-button type="primary" class="search"><img width="16" height="16" style="left: -8px;" src='../../../public/img/sousuo.png' alt="" /></el-button>
|
|
|
|
- </div>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
<div class="center_css">
|
|
<div class="center_css">
|
|
- <el-table :data="tableData" stripe style="width: 100%;overflow-y: scroll;" height="55.8vh">
|
|
|
|
- <el-table-column type="index" label="序号">
|
|
|
|
- <template scope="scope">
|
|
|
|
- <span v-if="scope.$index < 9">0{{ scope.$index + 1 }}</span>
|
|
|
|
- <span v-else>{{ scope.$index + 1 }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column prop="reexType" label="司机姓名"></el-table-column>
|
|
|
|
- <el-table-column prop="purpose" label="账号"></el-table-column>
|
|
|
|
- <el-table-column prop="expenseName" label="联系电话"></el-table-column>
|
|
|
|
- <el-table-column prop="amountMoney" label="身份证号"></el-table-column>
|
|
|
|
- <el-table-column prop="amountMoney" label="承运次数"></el-table-column>
|
|
|
|
- <el-table-column prop="amountMoney" label="好评率(%)" min-width="84"></el-table-column>
|
|
|
|
- <el-table-column prop="amountMoney" label="累计支付运费(元)" min-width="128"></el-table-column>
|
|
|
|
- <el-table-column label="车辆">
|
|
|
|
- <!-- <template slot-scope="scope">
|
|
|
|
- <img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
|
|
|
|
- src="../../../public/img/fujian.png" @click="fujian(scope.row)" alt="" />
|
|
|
|
- <span>{{scope.row.addressUrl.split(",").length == 0 ? '' : scope.row.addressUrl.split(",").length}}</span>
|
|
|
|
- </template> -->
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column prop="payee" label="账户"></el-table-column>
|
|
|
|
- <el-table-column prop="paymentDate" label="附件"></el-table-column>
|
|
|
|
- <el-table-column prop="status" label="状态"></el-table-column>
|
|
|
|
- <el-table-column label="操作" min-width="400">
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-button>通过</el-button>
|
|
|
|
- <el-button>驳回</el-button>
|
|
|
|
- <el-button>发消息</el-button>
|
|
|
|
- <el-button>禁用</el-button>
|
|
|
|
- <el-button>启用</el-button>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- </el-table>
|
|
|
|
|
|
+ <div class="top_css">
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="14">
|
|
|
|
+ <el-button type="primary">添加</el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="10">
|
|
|
|
+ <div class="screen">
|
|
|
|
+ <el-input placeholder="可按司机姓名、账号、身份证号查找" 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>
|
|
|
|
+ </div>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col>
|
|
|
|
+ <div class="search_btn">
|
|
|
|
+ <div :class="search == '' ? 'search' : 'searchNo'" class="search_item"
|
|
|
|
+ @click="searchBtn('')">
|
|
|
|
+ 全部
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(1)">
|
|
|
|
+ 待审核
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
|
|
|
|
+ 已通过
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="search == 3 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(3)">
|
|
|
|
+ 已驳回
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="search == 4 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(4)">
|
|
|
|
+ 已完成
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="search == 5 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(5)">
|
|
|
|
+ 已终止
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </div>
|
|
|
|
+ <el-table :data="tableData" style="width: 98%; margin: 0 auto; border-radius: 10px" height="55.8vh" border>
|
|
|
|
+ <!-- <el-table-column type="index" label="序号" width="50">
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ <span v-if="scope.$index < 9">0{{ scope.$index + 1 }}</span>
|
|
|
|
+ <span v-else>{{ scope.$index + 1 }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column> -->
|
|
|
|
+ <el-table-column prop="reexType" label="司机姓名">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div style="position: relative;">
|
|
|
|
+ <el-avatar :size="20" :src="scope.row.circleUrl" style="margin: 0 10px 0 -25px;"></el-avatar>
|
|
|
|
+ <span style="position: absolute;display: inline-block;">{{scope.row.reexType}}</span>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="purpose" label="账号"></el-table-column>
|
|
|
|
+ <el-table-column prop="amountMoney" label="身份证号"></el-table-column>
|
|
|
|
+ <el-table-column prop="amountMoney" label="承运次数"></el-table-column>
|
|
|
|
+ <el-table-column prop="amountMoney" label="评分" min-width="170">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-rate v-model="scope.row.count" disabled show-score text-color="#ff9900"
|
|
|
|
+ score-template="{value}"></el-rate>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="amountMoney" label="累计支付运费(元)" min-width="128"></el-table-column>
|
|
|
|
+ <el-table-column label="车辆">
|
|
|
|
+ <span @click="carLook" class="btn_css">查看</span>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="payee" label="账户">
|
|
|
|
+ <span @click="account" class="btn_css">查看</span>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="paymentDate" label="附件">
|
|
|
|
+ <span class="btn_css" @click="fujianLook">查看</span>
|
|
|
|
+ <el-tooltip placement="top">
|
|
|
|
+ <div slot="content">身份证已过有效期 <br />驾驶证已过有效期</div>
|
|
|
|
+ <span style="margin-top:10px"></span>
|
|
|
|
+ <img src="../../../public/img/wenhao.png" alt="" >
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="amountMoney" label="注册日期"></el-table-column>
|
|
|
|
+ <el-table-column prop="status" label="状态"></el-table-column>
|
|
|
|
+ <el-table-column label="操作" min-width="350">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span class="btn_css" @click="adopt(scope.row)">通过</span>
|
|
|
|
+ <el-divider direction="vertical"></el-divider>
|
|
|
|
+ <span class="btn_css" @click="reject(scope.row)">驳回</span>
|
|
|
|
+ <el-divider direction="vertical"></el-divider>
|
|
|
|
+ <span class="btn_css">消息</span>
|
|
|
|
+ <el-divider direction="vertical"></el-divider>
|
|
|
|
+ <el-dropdown>
|
|
|
|
+ <span class="btn_css">•••</span>
|
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
|
+ <el-dropdown-item>禁用</el-dropdown-item>
|
|
|
|
+ <el-dropdown-item>启用</el-dropdown-item>
|
|
|
|
+ </el-dropdown-menu>
|
|
|
|
+ </el-dropdown>
|
|
|
|
+
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
</div>
|
|
</div>
|
|
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
|
|
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
|
|
- style="text-align:center;margin-top: 10px;" :page-size="deptCircularPage.pageSize"
|
|
|
|
- layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal">
|
|
|
|
- </el-pagination>
|
|
|
|
- <!-- <el-pagination
|
|
|
|
- @size-change="handleSizeChange"
|
|
|
|
- @current-change="handleCurrentChange"
|
|
|
|
- :current-page="currentPage"
|
|
|
|
- :page-sizes="deptCircularPage.pageSize"
|
|
|
|
- :page-size="pageSize"
|
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
- :total="deptBudgetTotal">
|
|
|
|
- </el-pagination> -->
|
|
|
|
|
|
+ style="text-align: center; margin-top: 10px" :page-size="deptCircularPage.pageSize"
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal">
|
|
|
|
+ </el-pagination>
|
|
|
|
+ <el-dialog title="车辆信息" :visible.sync="carInfo" width="500px" :before-close="carClose">
|
|
|
|
+ <div class="car_css" v-for="item in 5">
|
|
|
|
+ <img src="../../../public/img/yonghu.jpg" class="car_item" />
|
|
|
|
+ <div>
|
|
|
|
+ <span>辽H12345 通过</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ <el-dialog title="账户信息" :visible.sync="userInfo" width="500px" :before-close="userClose">
|
|
|
|
+ <div class="user" v-for="item in 2">
|
|
|
|
+ <div class="user_id">
|
|
|
|
+ <div class="id_css">12121212121212121212</div>
|
|
|
|
+ <div class="name_css">张三</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div>中国银行-鲅鱼圈支行</div>
|
|
|
|
+ <img src="../../../public/img/yonghu.jpg" class="user_item" />
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ <el-dialog title="附件" :visible.sync="fujianInfo" width="500px" :before-close="fujianClose">
|
|
|
|
+ <!-- <div class="user" v-for="item in 2">
|
|
|
|
+
|
|
|
|
+ </div> -->
|
|
|
|
+ </el-dialog>
|
|
|
|
+ <el-dialog title="驳回认证" :visible.sync="rejectInfo" width="400px" :before-close="rejectClose">
|
|
|
|
+ <div>
|
|
|
|
+ <div><span class="sign">*</span>选择驳回原因</div>
|
|
|
|
+ <div class="form_css">
|
|
|
|
+ <el-form ref="form" :model="form" label-width="80px">
|
|
|
|
+ <el-checkbox-group v-model="form.checkList">
|
|
|
|
+ <el-checkbox label="证件照片不清晰"></el-checkbox>
|
|
|
|
+ <el-checkbox label="证件照片上传错误"></el-checkbox>
|
|
|
|
+ <el-checkbox label="身份信息填写错误"></el-checkbox>
|
|
|
|
+ <el-checkbox label="证件信息填写错误"></el-checkbox>
|
|
|
|
+ <el-checkbox label="其他"></el-checkbox>
|
|
|
|
+ </el-checkbox-group>
|
|
|
|
+ <div style="margin: 20px 0;">驳回原因描述(选填)</div>
|
|
|
|
+ <el-input type="textarea" :rows="3" resize="none" placeholder="输入驳回原因,5-50个字" maxlength="50" v-model="form.textarea"></el-input>
|
|
|
|
+ <div class="form_btn">
|
|
|
|
+ <el-button @click="rejectClose">取消</el-button>
|
|
|
|
+ <el-button @click="submit" type="primary">确定</el-button>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </el-form>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- tableData:[{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },{
|
|
|
|
- reexType:"类型"
|
|
|
|
- },],
|
|
|
|
- searchkeyWord:"",
|
|
|
|
- currentPage:1,
|
|
|
|
- pageSize:10,
|
|
|
|
- deptBudgetTotal:0,
|
|
|
|
- deptCircularPage:{},
|
|
|
|
|
|
+ tableData: [{
|
|
|
|
+ reexType: "王某",
|
|
|
|
+ count: 5,
|
|
|
|
+ circleUrl:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png'
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ reexType: "",
|
|
|
|
+ count: 4.5,
|
|
|
|
+ circleUrl:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png'
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ //分页
|
|
|
|
+ searchkeyWord: "",
|
|
|
|
+ currentPage: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ deptBudgetTotal: 0,
|
|
|
|
+ deptCircularPage: {},
|
|
|
|
+ search: "",
|
|
|
|
+ addressUrl: [],
|
|
|
|
+ disabled: false,
|
|
|
|
+ carInfo: false,
|
|
|
|
+ userInfo: false,
|
|
|
|
+ fujianInfo:false,
|
|
|
|
+ rejectInfo:false,
|
|
|
|
+ form:{
|
|
|
|
+ checkList:[],
|
|
|
|
+ textarea:"",
|
|
|
|
+ },
|
|
};
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- number() {
|
|
|
|
- this.num = 22222;
|
|
|
|
|
|
+ getList() {},
|
|
|
|
+ account() {
|
|
|
|
+ this.userInfo = true;
|
|
|
|
+ },
|
|
|
|
+ fujianLook(){
|
|
|
|
+ this.fujianInfo = true
|
|
|
|
+ },
|
|
|
|
+ userClose() {
|
|
|
|
+ this.userInfo = false;
|
|
|
|
+ },
|
|
|
|
+ fujianClose(){
|
|
|
|
+ this.fujianInfo = false
|
|
|
|
+ },
|
|
|
|
+ carLook() {
|
|
|
|
+ this.carInfo = true;
|
|
|
|
+ },
|
|
|
|
+ carClose() {
|
|
|
|
+ this.carInfo = false;
|
|
|
|
+ },
|
|
|
|
+ searchBtn(num) {
|
|
|
|
+ this.search = num;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ find() {
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ adopt(row) {
|
|
|
|
+ this.$confirm('确定通过辽H12345的审核?', '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ submit(){
|
|
|
|
+ //驳回提交
|
|
|
|
+ this.form = {}
|
|
|
|
+ this.form.checkList=[]
|
|
|
|
+ },
|
|
|
|
+ reject(row) {
|
|
|
|
+ this.rejectInfo = true
|
|
|
|
+ },
|
|
|
|
+ rejectClose() {
|
|
|
|
+ this.form = {}
|
|
|
|
+ this.form.checkList=[]
|
|
|
|
+ this.rejectInfo = false
|
|
|
|
+ },
|
|
|
|
+ onChange() {
|
|
|
|
+ this.$refs.upload
|
|
|
|
+ .handleSaveBill()
|
|
|
|
+ .then(async (response) => {
|
|
|
|
+ this.formData.addressUrl = response;
|
|
|
|
+ })
|
|
|
|
+ .catch((res) => {
|
|
|
|
+ EventBus.$emit("error", (JSON.parse(res) || {}).message);
|
|
|
|
+ this.$refs.upload.clearFiles();
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ handleSizeChange(val) {
|
|
|
|
+ console.log(`每页 ${val} 条`);
|
|
|
|
+ this.pageSize = val;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ handleCurrentChange(val) {
|
|
|
|
+ this.currentPage = val;
|
|
|
|
+ console.log(`当前页: ${val}`);
|
|
|
|
+ this.getList();
|
|
},
|
|
},
|
|
- handleSizeChange(val) {
|
|
|
|
- console.log(`每页 ${val} 条`)
|
|
|
|
- this.pageSize = val
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
- handleCurrentChange(val) {
|
|
|
|
- this.currentPage = val
|
|
|
|
- console.log(`当前页: ${val}`)
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
},
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.center {
|
|
.center {
|
|
- padding: 10px 0;
|
|
|
|
- background: #e8ecf6;
|
|
|
|
- .top_css{
|
|
|
|
|
|
+ padding: 10px 20px;
|
|
|
|
+ background: #f5f6f7;
|
|
|
|
+ height: calc(100vh - 5vh);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ .top_css {
|
|
padding: 10px;
|
|
padding: 10px;
|
|
- .search{
|
|
|
|
- margin-left:10px;
|
|
|
|
|
|
+
|
|
|
|
+ .search_btn {
|
|
|
|
+ display: flex;
|
|
|
|
+ margin-top: 20px;
|
|
|
|
+
|
|
|
|
+ .search_item {
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-weight: 600;
|
|
|
|
+ line-height: 40px;
|
|
|
|
+ width: 112px;
|
|
|
|
+ height: 40px;
|
|
|
|
+ background: #f7f8f9;
|
|
|
|
+ cursor:pointer
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .searchNo {
|
|
|
|
+ color: #323233;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .search {
|
|
|
|
+ color: #2f53eb;
|
|
|
|
+ background: #ffffff;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- .center_css{
|
|
|
|
|
|
+
|
|
|
|
+ .center_css {
|
|
|
|
+ background: #ffffff;
|
|
|
|
+ border-radius: 1px;
|
|
margin-top: 10px;
|
|
margin-top: 10px;
|
|
|
|
+ padding-bottom: 10px;
|
|
}
|
|
}
|
|
- .screen{
|
|
|
|
|
|
+
|
|
|
|
+ .screen {
|
|
display: flex;
|
|
display: flex;
|
|
|
|
+
|
|
|
|
+ .search {
|
|
|
|
+ width: 40px;
|
|
|
|
+ height: 40px;
|
|
|
|
+ background: #f7f8fa;
|
|
|
|
+ border-radius: 0px 2px 2px 0px;
|
|
|
|
+ border: 1px solid #f0f1f2;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .count_css {
|
|
|
|
+ width: 80px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ line-height: 40px;
|
|
|
|
+ color: #666666;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- .el-button{
|
|
|
|
|
|
+
|
|
|
|
+ .el-button {
|
|
padding: 10px 20px !important;
|
|
padding: 10px 20px !important;
|
|
}
|
|
}
|
|
- .center_css{
|
|
|
|
- ::v-deep .el-table th,::v-deep .el-table td{
|
|
|
|
|
|
+
|
|
|
|
+ .center_css {
|
|
|
|
+
|
|
|
|
+ ::v-deep .el-table th,
|
|
|
|
+ ::v-deep .el-table td {
|
|
text-align: center;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .fujian {
|
|
|
|
+ font-size: 24px;
|
|
|
|
+ color: #409eff;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .warning {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: #ed1d1d;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .car_css {
|
|
|
|
+ width: 50%;
|
|
|
|
+ display: inline-block;
|
|
|
|
+ text-align: center;
|
|
|
|
+ margin-top: 20px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .car_item {
|
|
|
|
+ width: 100px;
|
|
|
|
+ height: 100px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .user {
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
+
|
|
|
|
+ .user_id {
|
|
|
|
+ display: flex;
|
|
|
|
+ height: 30px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .name_css,
|
|
|
|
+ .id_css {
|
|
|
|
+ width: 50%;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .name_css {
|
|
|
|
+ text-align: right;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .user_item {
|
|
|
|
+ width: 450px;
|
|
|
|
+ height: 300px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ::v-deep .el-table--border .el-table__header th {
|
|
|
|
+ background: #f7f8f9;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .btn_css {
|
|
|
|
+ color: #2f53eb;
|
|
|
|
+ cursor:pointer
|
|
|
|
+ }
|
|
|
|
+ .sign {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: red;
|
|
|
|
+ }
|
|
|
|
+ .form_css {
|
|
|
|
+ width: 100%;
|
|
|
|
+ margin: 20px auto 20px;
|
|
|
|
+ ::v-deep .el-checkbox{
|
|
|
|
+ width: 40%;
|
|
|
|
+ height: 30px;
|
|
|
|
+ }
|
|
|
|
+ // ::v-deep .el-dialog__body{
|
|
|
|
+ // padding: 10px 20px;
|
|
|
|
+ // }
|
|
|
|
+ ::v-deep .el-dialog__title{
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ }
|
|
|
|
+ ::v-deep .el-textarea__inner{
|
|
|
|
+ background: #F0F1F2;
|
|
|
|
+ }
|
|
|
|
+ .form_btn{
|
|
|
|
+ text-align: right;
|
|
|
|
+ margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|