Commit 579d6f8a by huaying

fix: 客户日志添加默认高度

parent 821d9a12
......@@ -13,7 +13,7 @@
<el-date-picker style="width: 256px; margin-left:10px;" v-model="dateDefault" type="daterange" range-separator="~" start-placeholder="创建开始日期" end-placeholder="创建结束日期" :default-time="['00:00:00', '23:59:59']" :picker-options="pickerOptions()" value-format="yyyy-MM-dd" @change="handleSearch" :clearable="false"> </el-date-picker>
<p class="font14 tip-p" v-if="!memberId">展示近一年的日志</p>
</div>
<el-table :data="tableData" style="width: 100%">
<el-table :data="tableData" style="width: 100%; min-height: 210px;">
<el-table-column prop="createTime" label="时间" min-width="138px">
<template slot-scope="scope">
{{ scope.row.createTime | formatDate('ymd') }} <br /> {{ scope.row.createTime | formatDate('hms') }}
......@@ -192,7 +192,14 @@ export default {
},
};
</script>
<style>
/* .el-cascader-menu {
min-width: 130px !important;
width: 130px !important;
} */
</style>
<style lang="scss" scoped>
.logTop {
margin-bottom: 20px;
display: flex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment