Commit bc7bed1b by 张辉

update

parent 427ef0d0
Showing with 3 additions and 5 deletions
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<div class="data-table" id="dataTable"> <div class="data-table" id="dataTable">
<mescroll-vue ref="mescroll" :up="mescrollUp" @init="mescrollInit"> <mescroll-vue ref="mescroll" :up="mescrollUp" @init="mescrollInit">
<div class="container-wrap" id="container-wrap" v-if="dataList.length > 0"> <div class="container-wrap" id="container-wrap">
<div class="list" v-for="(item, index) in dataList" :key="index"> <div class="list" v-for="(item, index) in dataList" :key="index">
<div class="title"> <div class="title">
<div class="title_info">{{ item.feeType }}</div> <div class="title_info">{{ item.feeType }}</div>
...@@ -19,9 +19,6 @@ ...@@ -19,9 +19,6 @@
</p> </p>
</div> </div>
</div> </div>
<div class="empty_data" v-else>
暂无{{title}}数据
</div>
</mescroll-vue> </mescroll-vue>
</div> </div>
</div> </div>
...@@ -63,7 +60,7 @@ export default { ...@@ -63,7 +60,7 @@ export default {
// 列表第一页无任何数据时,显示的空提示布局; 需配置warpId才生效; // 列表第一页无任何数据时,显示的空提示布局; 需配置warpId才生效;
warpId: "dataTable", // 父布局的id; warpId: "dataTable", // 父布局的id;
//icon: "../../assets/images/data-empty.png", // 图标,支持网络图 //icon: "../../assets/images/data-empty.png", // 图标,支持网络图
tip: "暂无相关数据~", // 提示 tip: "暂无相关数据", // 提示
}, },
lazyLoad: { lazyLoad: {
use: true, // 是否开启懒加载,默认false use: true, // 是否开启懒加载,默认false
...@@ -105,6 +102,7 @@ export default { ...@@ -105,6 +102,7 @@ export default {
const barHeight = localStorage.getItem("barHeight"); const barHeight = localStorage.getItem("barHeight");
let conHeight = 46 + parseInt(barHeight); let conHeight = 46 + parseInt(barHeight);
conHeight = conHeight ? conHeight : 0; conHeight = conHeight ? conHeight : 0;
console.log('conHeight=',conHeight);
const dom = document.getElementsByClassName("iosStyle")[0]; const dom = document.getElementsByClassName("iosStyle")[0];
if (dom) { if (dom) {
dom.setAttribute( dom.setAttribute(
......
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 sign in to comment