刘翔宇-旅管家 4 years ago
parent 030ce888cc
commit 74b772169f

@ -6,14 +6,16 @@
<div slot="content"></div> <div slot="content"></div>
<slot> <slot>
<div> <div>
<Input class="vm10" style="width: 200px; margin-right: 10px" v-model="searchFields.keyword" placeholder="关键字搜索" /> <Input class="vm10" style="width: 200px; margin-right: 10px" v-model="searchFields.keyword"
placeholder="关键字搜索" />
<el-select class="vm10" filterable v-model="searchFields.feedback_department_id" placeholder="请选择反馈科室"> <el-select class="vm10" filterable v-model="searchFields.feedback_department_id" placeholder="请选择反馈科室">
<el-option v-for="item in selects.sdepartments" :key="item.id" :label="item.name" :value="item.id"> <el-option v-for="item in selects.sdepartments" :key="item.id" :label="item.name" :value="item.id">
</el-option> </el-option>
</el-select> </el-select>
<el-select class="vm10" @change="showSearchAskContentChange" filterable v-model="searchFields.ask_type_id" placeholder="请选择类型"> <el-select class="vm10" @change="showSearchAskContentChange" filterable v-model="searchFields.ask_type_id"
placeholder="请选择类型">
<el-option v-for="item in selects.sask_types" :key="item.id" :label="item.value" :value="item.id"> <el-option v-for="item in selects.sask_types" :key="item.id" :label="item.value" :value="item.id">
</el-option> </el-option>
</el-select> </el-select>
@ -40,14 +42,14 @@
:label="column.title" :width="column.width" :fixed="column.fixed"> :label="column.title" :width="column.width" :fixed="column.fixed">
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="column.type=='opt'"> <div v-if="column.type=='opt'">
<Button ghost size="small" @click="edit(scope.row)" type="primary" <Button ghost size="small" @click="edit(scope.row,1)" type="primary"
style="margin-left: 10px;" v-if="scope.row['status']==3">查看</Button> style="margin-left: 10px;">查看</Button>
<Button v-if="scope.row['status']==1" ghost size="small" @click="show(scope.row)" type="primary" <Button v-if="scope.row['status']==1" ghost size="small" @click="show(scope.row)" type="primary"
style="margin-left: 10px;">编辑</Button> style="margin-left: 10px;">编辑</Button>
<Button v-if="scope.row['status']==1" ghost size="small" @click="edit(scope.row)" type="primary" <Button v-if="scope.row['status']==1" ghost size="small" @click="edit(scope.row,2)" type="primary"
style="margin-left: 10px;">审核</Button> style="margin-left: 10px;">审核</Button>
<Button v-if="scope.row['status']==2" ghost size="small" @click="edit(scope.row)" type="primary" <Button v-if="scope.row['status']==2" ghost size="small" @click="edit(scope.row,2)" type="primary"
style="margin-left: 10px;">办结</Button> style="margin-left: 10px;">办结</Button>
<Button ghost size="small" @click="del(scope.row)" type="error" style="margin-left: 10px;">删除</Button> <Button ghost size="small" @click="del(scope.row)" type="error" style="margin-left: 10px;">删除</Button>
</div> </div>
@ -88,9 +90,9 @@
<el-row> <el-row>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="类型" prop="ask_type_id"> <el-form-item label="类型" prop="ask_type_id">
<el-select @change="showAskContentChange" class="width100" v-model="form.ask_type_id" placeholder="请选择类型"> <el-select @change="showAskContentChange" class="width100" v-model="form.ask_type_id"
<el-option v-for="item in selects.ask_types" :key="item.id" :label="item.value" placeholder="请选择类型">
:value="item.id"> <el-option v-for="item in selects.ask_types" :key="item.id" :label="item.value" :value="item.id">
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -106,7 +108,7 @@
</el-col> </el-col>
<el-col :span="24"> <el-col :span="24">
<el-form-item label="地址" prop="address"> <el-form-item label="地址" prop="address">
<avue-input-map :params="mapparams" placeholder="请选择地图" v-model="mapform" ></avue-input-map> <avue-input-map :params="mapparams" placeholder="请选择地图" v-model="mapform"></avue-input-map>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
@ -126,10 +128,9 @@
</el-col> </el-col>
<el-col :span="24"> <el-col :span="24">
<el-form-item label="附件" prop="common_inspection_files"> <el-form-item label="附件" prop="common_inspection_files">
<el-upload multiple action="/api/admin/upload-file" list-type="picture-card" :file-list="commonInspectionFiles" <el-upload multiple action="/api/admin/upload-file" list-type="picture-card"
ref="pictureUploads" :auto-upload="true" :data="uploadOther" :file-list="commonInspectionFiles" ref="pictureUploads" :auto-upload="true" :data="uploadOther"
:on-success="handlesuccess" :on-success="handlesuccess" :on-error="handleError">
:on-error="handleError">
<i slot="default" class="el-icon-plus"></i> <i slot="default" class="el-icon-plus"></i>
<div slot="file" slot-scope="{file}"> <div slot="file" slot-scope="{file}">
<img class="el-upload-list__item-thumbnail" :src="file.url" alt=""> <img class="el-upload-list__item-thumbnail" :src="file.url" alt="">
@ -150,8 +151,7 @@
<el-col :span="24"> <el-col :span="24">
<el-form-item label="反馈科室" prop="feedback_department_id"> <el-form-item label="反馈科室" prop="feedback_department_id">
<el-select filterable class="width100" v-model="form.feedback_department_id" placeholder="请选择反馈科室"> <el-select filterable class="width100" v-model="form.feedback_department_id" placeholder="请选择反馈科室">
<el-option v-for="item in selects.departments" :key="item.id" :label="item.name" <el-option v-for="item in selects.departments" :key="item.id" :label="item.name" :value="item.id">
:value="item.id">
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -181,11 +181,12 @@
<el-dialog class="common-dialog" :title="detailtitle" :visible.sync="dialogFormVisible" width="60%"> <el-dialog class="common-dialog" :title="detailtitle" :visible.sync="dialogFormVisible" width="60%">
<div class="dialogConcent"> <div class="dialogConcent">
<el-scrollbar style="flex: 1"> <el-scrollbar style="flex: 1">
<el-form :model="formdetail" :rules="rules" ref="formdetail" label-position="right" :label-width="formLabelWidth"> <el-form :model="formdetail" :rules="rules" ref="formdetail" label-position="right"
:label-width="formLabelWidth">
<el-row> <el-row>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="所属道路" prop="road_id"> <el-form-item label="所属道路" prop="road_id">
<el-input disabled v-model="form.road_id" placeholder="所属道路" autocomplete="off"></el-input> <el-input disabled v-model="roadName" placeholder="所属道路" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -207,7 +208,8 @@
</el-col> </el-col>
<el-col :span="24"> <el-col :span="24">
<el-form-item label="地址" prop="address"> <el-form-item label="地址" prop="address">
<avue-input-map :disabled="mapdisabled" :params="mapparams" placeholder="请选择地图" v-model="mapform" ></avue-input-map> <avue-input-map :disabled="mapdisabled" :params="mapparams" placeholder="请选择地图" v-model="mapform">
</avue-input-map>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
@ -230,9 +232,8 @@
<!-- <img v-if="commonInspectionFilesCheck.length>0" v-for="item in commonInspectionFilesCheck" :src="item.files.url" alt=""> --> <!-- <img v-if="commonInspectionFilesCheck.length>0" v-for="item in commonInspectionFilesCheck" :src="item.files.url" alt=""> -->
<el-upload multiple action="/api/admin/upload-file" list-type="picture-card" :file-list="commonInspectionFilesCheck" <el-upload multiple action="/api/admin/upload-file" list-type="picture-card"
ref="pictureUploads" :file-list="commonInspectionFilesCheck" ref="pictureUploads">
>
<div slot="file" slot-scope="{file}"> <div slot="file" slot-scope="{file}">
<img class="el-upload-list__item-thumbnail" :src="file.url" alt=""> <img class="el-upload-list__item-thumbnail" :src="file.url" alt="">
<span class="el-upload-list__item-actions"> <span class="el-upload-list__item-actions">
@ -248,14 +249,15 @@
<el-col :span="24" v-if="form.status!=3"> <el-col :span="24" v-if="form.status!=3">
<el-form-item label="备注" prop="type_id"> <el-form-item label="备注" prop="type_id">
<el-input type="textarea" v-model="formdetail.content" placeholder="请填写备注" autocomplete="off"></el-input> <el-input type="textarea" v-model="formdetail.content" placeholder="请填写备注" autocomplete="off">
</el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="24" v-if="form.status==1"> <el-col :span="24" v-if="form.status==1">
<el-form-item label="反馈科室" prop="feedback_department_id"> <el-form-item label="反馈科室" prop="feedback_department_id">
<el-select filterable class="width100" v-model="formdetail.feedback_department_id" placeholder="请选择反馈科室"> <el-select filterable class="width100" v-model="formdetail.feedback_department_id"
<el-option v-for="item in selects.departments" :key="item.id" :label="item.name" placeholder="请选择反馈科室">
:value="item.id"> <el-option v-for="item in selects.departments" :key="item.id" :label="item.name" :value="item.id">
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -271,27 +273,16 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="24" v-if="form.status==3"> <el-col :span="24" v-if="showType==1">
<el-form-item label="处理日志" prop=""> <el-form-item label="处理日志" prop="" >
</el-form-item> </el-form-item>
<el-table <el-table :data="form.common_inspection_logs" style="width: 90%;margin: 0 auto;">
:data="form.common_inspection_logs" <el-table-column prop="created_at" label="日期" width="180">
style="width: 90%;margin: 0 auto;">
<el-table-column
prop="created_at"
label="日期"
width="180">
</el-table-column> </el-table-column>
<el-table-column <el-table-column prop="content" label="内容">
prop="content"
label="内容"
>
</el-table-column> </el-table-column>
<el-table-column <el-table-column prop="admin_id" label="操作人" width="180">
prop="admin_id"
label="操作人"
width="180">
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -306,10 +297,12 @@
</el-scrollbar> </el-scrollbar>
</div> </div>
<div slot="footer" class="dialog-footer" v-if="form.status!=3"> <div slot="footer" class="dialog-footer" v-if="form.status!=3&&showType!=1">
<el-button @click="resetForm('formdetail')"> </el-button> <el-button @click="resetForm('formdetail')"> </el-button>
<el-button v-if="form.status==1" type="primary" v-preventReClick @click="submitForm('formdetail','2')"></el-button> <el-button v-if="form.status==1" type="primary" v-preventReClick @click="submitForm('formdetail','2')">
<el-button v-if="form.status==2" type="primary" v-preventReClick @click="submitForm('formdetail','3')"></el-button> </el-button>
<el-button v-if="form.status==2" type="primary" v-preventReClick @click="submitForm('formdetail','3')">
</el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -332,7 +325,9 @@
getparameteritem, getparameteritem,
getparameter getparameter
} from "../../api/system/dictionary.js" } from "../../api/system/dictionary.js"
import {listCommondepartment} from "../../api/common.js" import {
listCommondepartment
} from "../../api/common.js"
import LxHeader from "@/components/LxHeader/index.vue"; import LxHeader from "@/components/LxHeader/index.vue";
import AvueMap from 'avue-plugin-map' import AvueMap from 'avue-plugin-map'
@ -343,83 +338,83 @@
}, },
data() { data() {
return { return {
showType: 2, //1: 2:
tableHeight: 0, tableHeight: 0,
dialogFormVisible: false, dialogFormVisible: false,
showdialogFormVisible:false, showdialogFormVisible: false,
formLabelWidth: "120px", formLabelWidth: "120px",
clientHeight: 0, clientHeight: 0,
tableData: [], tableData: [],
tableHeight: 900, tableHeight: 900,
searchFields: { searchFields: {
is_export:0, is_export: 0,
ask_content_id:"" ask_content_id: ""
}, },
paginations: { paginations: {
page: 1, page: 1,
page_size: 15, page_size: 15,
total: 0 total: 0
}, },
selects:{ selects: {
ask_types:[], ask_types: [],
ask_content:[], ask_content: [],
departments:[], departments: [],
sask_types:[{ sask_types: [{
id:"", id: "",
value:"所有" value: "所有"
}], }],
sask_content:[{ sask_content: [{
id:"", id: "",
value:"所有" value: "所有"
}], }],
sdepartments:[{ sdepartments: [{
id:"", id: "",
name:"所有" name: "所有"
}], }],
statusList:[{ statusList: [{
id:"", id: "",
value:"所有" value: "所有"
},{ }, {
id:1, id: 1,
value:"已提交" value: "已提交"
},{ }, {
id:2, id: 2,
value:"已审核" value: "已审核"
},{ }, {
id:3, id: 3,
value:"已办结" value: "已办结"
}] }]
}, },
mapparams:{ mapparams: {
zoom: 11 zoom: 11
}, },
mapform:[] , mapform: [],
mapdisabled:false, mapdisabled: false,
commonInspectionFiles:[], commonInspectionFiles: [],
commonInspectionFilesCheck:[], commonInspectionFilesCheck: [],
dialogImageUrl:"", dialogImageUrl: "",
dialogVisible: false, dialogVisible: false,
disabled: false, disabled: false,
filesList:[], filesList: [],
detailtitle:"通用巡查", detailtitle: "通用巡查",
formdetail:{ formdetail: {
feedback_department_id:"", feedback_department_id: "",
content:"", content: "",
files_list:[], files_list: [],
type:"", type: "",
}, },
roadName:"", roadName: "",
form: { form: {
feedback_department_id:"", feedback_department_id: "",
ask_type_id:"", ask_type_id: "",
ask_content_id:"", ask_content_id: "",
content:"", content: "",
longitude:"", longitude: "",
latitude:"", latitude: "",
address:"", address: "",
status:"", status: "",
files_list:[] files_list: []
}, },
rules: { rules: {
@ -441,28 +436,28 @@
field: "feedback_department", field: "feedback_department",
title: "反馈科室", title: "反馈科室",
type: "format", type: "format",
width:180 width: 180
}, },
{ {
field: "ask_type_name", field: "ask_type_name",
title: "类型", title: "类型",
type: "ask_type_id", type: "ask_type_id",
align: "center", align: "center",
width:180 width: 180
}, },
{ {
field: "ask_content_name", field: "ask_content_name",
title: "内容", title: "内容",
type: "string", type: "string",
align: "center", align: "center",
width:180 width: 180
}, },
{ {
field: "address", field: "address",
title: "地址", title: "地址",
type: "string", type: "string",
align: "lefft", align: "lefft",
width:360 width: 360
}, },
{ {
@ -470,14 +465,14 @@
title: "状态", title: "状态",
type: "status", type: "status",
align: "center", align: "center",
width:120 width: 120
}, },
{ {
field: "user", field: "user",
title: "提交人", title: "提交人",
type: "format", type: "format",
align: "center", align: "center",
width:180 width: 180
}, },
// { // {
// field: "department", // field: "department",
@ -491,17 +486,17 @@
title: "提交日期", title: "提交日期",
type: "string", type: "string",
align: "center", align: "center",
width:180 width: 180
}, },
{ {
field: "操作", field: "操作",
title: "操作", title: "操作",
width: 220, width: 220,
type: "opt", type: "opt",
fixed:"right" fixed: "right"
} }
], ],
baseurl:"", baseurl: "",
uploadOther: { uploadOther: {
token: "" token: ""
}, },
@ -526,8 +521,8 @@
this.load(); this.load();
}, },
watch:{ watch: {
'mapform':function(val){ 'mapform': function(val) {
this.form.longitude = val[0]; this.form.longitude = val[0];
this.form.latitude = val[1]; this.form.latitude = val[1];
this.form.address = val[2]; this.form.address = val[2];
@ -547,7 +542,7 @@
getparameteritem("general_type").then(res => { getparameteritem("general_type").then(res => {
this.selects.ask_types = res.detail this.selects.ask_types = res.detail
for(var m of res.detail){ for (var m of res.detail) {
this.selects.sask_types.push(m) this.selects.sask_types.push(m)
} }
}) })
@ -557,7 +552,7 @@
page_size: 999, page_size: 999,
}).then(response => { }).then(response => {
this.selects.departments = response.data this.selects.departments = response.data
for(var m of response.data){ for (var m of response.data) {
this.selects.sdepartments.push(m) this.selects.sdepartments.push(m)
} }
}).catch(error => { }).catch(error => {
@ -572,7 +567,7 @@
this.paginations.page = page; this.paginations.page = page;
this.load(); this.load();
}, },
exportExcel(){ exportExcel() {
var that = this var that = this
that.searchFields.is_export = 1 that.searchFields.is_export = 1
that.load(true) that.load(true)
@ -595,10 +590,10 @@
this.searchFields.is_export = 0 this.searchFields.is_export = 0
return; return;
} }
for(var m of response.data){ for (var m of response.data) {
// m.username = m.user?m.user.name:"" // m.username = m.user?m.user.name:""
m.ask_type_name = m.ask_type_detail?m.ask_type_detail.value:"" m.ask_type_name = m.ask_type_detail ? m.ask_type_detail.value : ""
m.ask_content_name = m.ask_content_detail?m.ask_content_detail.value:"" m.ask_content_name = m.ask_content_detail ? m.ask_content_detail.value : ""
} }
this.tableData = response.data; this.tableData = response.data;
this.paginations.total = response.total; this.paginations.total = response.total;
@ -622,16 +617,18 @@
let result = Object.assign(that.form, res); let result = Object.assign(that.form, res);
// this.$set(that.form,res); // this.$set(that.form,res);
that.showAskContent(result.ask_type_id); that.showAskContent(result.ask_type_id);
if(result.status==2){ if (result.status == 2) {
this.detailtitle = '通用巡查办结' that.detailtitle = '通用巡查办结'
} }
if(result.status==1){ if (result.status == 1) {
this.detailtitle = '通用巡查审核' that.detailtitle = '通用巡查审核'
} }
that.detailtitle = that.isview == 1 ? "通用巡查查看" : that.detailtitle
// that.form = result; // that.form = result;
that.mapform = [result.longitude,result.latitude,result.address] that.mapform = [result.longitude, result.latitude, result.address]
that.roadName = result.road?result.road.name:"" that.roadName = result.road ? result.road.name : ""
let _files = []; let _files = [];
for (var mod of result.common_inspection_files) { for (var mod of result.common_inspection_files) {
let m = Object.assign({}, mod); let m = Object.assign({}, mod);
@ -655,13 +652,14 @@
}) })
}, },
edit(obj, isnew) { edit(obj, isview) {
this.form = this.$options.data().form; this.form = this.$options.data().form;
this.clientHeight = document.documentElement.clientHeight - 84 - 110; this.clientHeight = document.documentElement.clientHeight - 84 - 110;
this.dialogFormVisible = true; this.dialogFormVisible = true;
this.showdialogFormVisible = false; this.showdialogFormVisible = false;
this.mapdisabled = true; this.mapdisabled = true;
if(obj){ this.showType = isview;
if (obj) {
this.info(obj); this.info(obj);
} }
@ -708,14 +706,14 @@
} else { } else {
that.formdetail.type = status; that.formdetail.type = status;
var _files = []; var _files = [];
for(var m of this.filesList){ for (var m of this.filesList) {
if(m.response){ if (m.response) {
this.formdetail.files_list.push({ this.formdetail.files_list.push({
upload_id:m.response.id upload_id: m.response.id
}) })
}else{ } else {
this.formdetail.files_list.push({ this.formdetail.files_list.push({
upload_id:m.upload_id upload_id: m.upload_id
}) })
} }
} }
@ -734,24 +732,24 @@
var that = this; var that = this;
// that.fileList = []; // that.fileList = [];
this.$refs[formName].resetFields(); this.$refs[formName].resetFields();
this.filesList=[]; this.filesList = [];
this.commonInspectionFilesCheck = []; this.commonInspectionFilesCheck = [];
that.dialogFormVisible = false; that.dialogFormVisible = false;
that.dialogShowViewVisible = false; that.dialogShowViewVisible = false;
}, },
submitEditForm(formName){ submitEditForm(formName) {
var that = this; var that = this;
// files_list // files_list
var _files = []; var _files = [];
console.log(this.commonInspectionFiles); console.log(this.commonInspectionFiles);
for(var m of this.commonInspectionFiles){ for (var m of this.commonInspectionFiles) {
if(m.response){ if (m.response) {
this.form.files_list.push({ this.form.files_list.push({
upload_id:m.response.id upload_id: m.response.id
}) })
}else{ } else {
this.form.files_list.push({ this.form.files_list.push({
upload_id:m.files.id upload_id: m.files.id
}) })
} }
} }
@ -778,38 +776,38 @@
// that.fileList = []; // that.fileList = [];
this.$refs[formName].resetFields(); this.$refs[formName].resetFields();
that.mapform = []; that.mapform = [];
this.commonInspectionFiles=[]; this.commonInspectionFiles = [];
that.dialogFormVisible = false; that.dialogFormVisible = false;
that.showdialogFormVisible = false; that.showdialogFormVisible = false;
}, },
showAskContent(val){ showAskContent(val) {
getparameter({ getparameter({
pid:val pid: val
}).then(res =>{ }).then(res => {
this.selects.ask_content = res.detail this.selects.ask_content = res.detail
}) })
}, },
showSearchAskContentChange(val){ showSearchAskContentChange(val) {
if(!val){ if (!val) {
return return
} }
this.selects.sask_content = [{ this.selects.sask_content = [{
id:"", id: "",
value:"所有" value: "所有"
}] }]
getparameter({ getparameter({
pid:val pid: val
}).then(res =>{ }).then(res => {
for(var m of res.detail){ for (var m of res.detail) {
this.selects.sask_content.push(m) this.selects.sask_content.push(m)
} }
this.searchFields.ask_content_id = "" this.searchFields.ask_content_id = ""
}) })
}, },
showAskContentChange(val){ showAskContentChange(val) {
getparameter({ getparameter({
pid:val pid: val
}).then(res =>{ }).then(res => {
this.selects.ask_content = res.detail this.selects.ask_content = res.detail
this.form.ask_content_id = "" this.form.ask_content_id = ""
}) })
@ -837,7 +835,7 @@
}); });
}, },
handleError(err,file,fileList){ handleError(err, file, fileList) {
this.$message.error('上传失败,重新上传'); this.$message.error('上传失败,重新上传');
}, },
@ -847,13 +845,13 @@
for (var m of fileList) { for (var m of fileList) {
if (m.response) if (m.response)
listUrl.push({ listUrl.push({
"upload_id":m.response.id, "upload_id": m.response.id,
'name':m.name 'name': m.name
}); });
else else
listUrl.push({ listUrl.push({
"upload_id":m.response.id, "upload_id": m.response.id,
'name':m.name 'name': m.name
}); });
} }
this.filesList = listUrl; this.filesList = listUrl;
@ -868,13 +866,13 @@
for (var m of fileList) { for (var m of fileList) {
if (m.response) if (m.response)
listUrl.push({ listUrl.push({
"upload_id":m.response.id, "upload_id": m.response.id,
'name':m.name 'name': m.name
}); });
else else
listUrl.push({ listUrl.push({
"upload_id":m.response.id, "upload_id": m.response.id,
'name':m.name 'name': m.name
}); });
} }
@ -892,18 +890,22 @@
.dialogConcent { .dialogConcent {
overflow-y: auto; overflow-y: auto;
} }
.width100{
width:100%; .width100 {
width: 100%;
} }
.common_inspection_files_check .el-upload.el-upload--picture-card{
.common_inspection_files_check .el-upload.el-upload--picture-card {
display: none; display: none;
} }
.vm10{
margin-right:10px; .vm10 {
margin-bottom:10px; margin-right: 10px;
margin-bottom: 10px;
height: 32px; height: 32px;
vertical-align: bottom; vertical-align: bottom;
} }
.vm10 input { .vm10 input {
height: 32px; height: 32px;
vertical-align: middle; vertical-align: middle;
@ -912,10 +914,13 @@
.vm10 .el-select__caret.el-input__icon.el-icon-arrow-up { .vm10 .el-select__caret.el-input__icon.el-icon-arrow-up {
line-height: 30px; line-height: 30px;
} }
.vm10 .el-input__icon.el-range__icon.el-icon-date,.vm10 .el-range-separator{
.vm10 .el-input__icon.el-range__icon.el-icon-date,
.vm10 .el-range-separator {
line-height: 25px; line-height: 25px;
} }
.selerchcontent button{
.selerchcontent button {
vertical-align: top; vertical-align: top;
} }
</style> </style>

Loading…
Cancel
Save