Commit 89b0c5f5 authored by zhangyanni's avatar zhangyanni

列表

注册用户管理
首页
parent 21fd719e
......@@ -109,5 +109,5 @@
}
}
.positionTop{
top: 1.8rem;
top: 1.5rem;
}
\ No newline at end of file
<template>
<div class="contentList" :class="isMargin?'marginTop':'positionTop'" style="-webkit-overflow-scrolling: touch;overflow: auto">
<div class="contentList" :class="isMargin?'marginTop':'positionTop'" style="-webkit-overflow-scrolling: touch;overflow: auto" :style="{maxHeight: maxHeight?'11rem':'unset'}">
<mt-loadmore :top-method="loadTop" :bottom-method="loadBottom" :auto-fill="false" :bottom-all-loaded="allLoaded" ref="loadmore">
<ul v-if="tableData">
<li v-for="(item,index) in tableData" :key="item.businessId" v-if="$route.query.tab==2||isMargin" @click="handleToDetail(item)">
......@@ -77,7 +77,8 @@
default:false
},
isWhich:0,
isVisible:false
isVisible:false,
maxHeight:false
},
data(){
return {
......
......@@ -166,7 +166,7 @@
<div class="companyName">
<img :src="scope.row.logoUrl?scope.row.logoUrl:require('../../../assets/img/index/prodefaultLogo.png')" alt="">
<div style="margin-top: 5px;">
<p style="font-weight: bold;" @click="handleToProject(scope.row)">{{scope.row.companyName}}</p>
<p style="font-weight: bold;" @click="handleToProject(scope.row)">{{scope.row.projectName}}</p>
<p class="companyTitle dwote" style="width: 240px;">{{scope.row.desc}}</p>
</div>
</div>
......
......@@ -32,7 +32,7 @@
<el-date-picker style="width: 200px;" v-model="search.startTime" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" :placeholder="$t('operationjson.authBegin')"></el-date-picker>
<p style="width: 50px;text-align: center">{{$t('operationjson.tos')}}</p>
<el-date-picker style="width: 200px;" v-model="search.endTime" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" :placeholder="$t('operationjson.authEnd')"></el-date-picker>
<el-input style="width: 240px;margin-left: 20px;" v-model="search.keyName"
<el-input style="width: 240px;margin-left: 20px;" v-model="search.empAccount"
:placeholder="$t('commonTitle.searchThree')"></el-input>
<el-button type="primary" style="width: 140px;margin-left: 20px" @click="searchCik">{{$t('operationjson.search')}}</el-button>
</div>
......@@ -106,7 +106,7 @@
data() {
return {
search:{
keyName:'',
empAccount:'',
authBegin:'',
authEnd:'',
registerType:null,
......
......@@ -104,7 +104,7 @@
<img :src="item.logoUrl?item.logoUrl:require('../../../assets/img/index/prodefaultLogo.png')" alt="">
</div>
<div class="rightInfo">
<p @click="handleToProject(item)">{{item.companyName}}</p>
<p @click="handleToProject(item)">{{item.projectName}}</p>
<span>{{item.desc}}</span>
</div>
<div class="clearFix"></div>
......
......@@ -12,7 +12,7 @@
</li>
</ul>
</div>
<searchList :isWhich="currentIndex" :isVisible="isShow" @sendBusinessCountFunc="getBusinessCountFunc" @sendProjectCountFunc="getProjectCountFunc" ref="searchList"></searchList>
<searchList :isWhich="currentIndex" :maxHeight="true" :isVisible="isShow" @sendBusinessCountFunc="getBusinessCountFunc" @sendProjectCountFunc="getProjectCountFunc" ref="searchList"></searchList>
</div>
</template>
......
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