Commit 89b0c5f5 authored by zhangyanni's avatar zhangyanni

列表

注册用户管理
首页
parent 21fd719e
...@@ -109,5 +109,5 @@ ...@@ -109,5 +109,5 @@
} }
} }
.positionTop{ .positionTop{
top: 1.8rem; top: 1.5rem;
} }
\ No newline at end of file
<template> <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"> <mt-loadmore :top-method="loadTop" :bottom-method="loadBottom" :auto-fill="false" :bottom-all-loaded="allLoaded" ref="loadmore">
<ul v-if="tableData"> <ul v-if="tableData">
<li v-for="(item,index) in tableData" :key="item.businessId" v-if="$route.query.tab==2||isMargin" @click="handleToDetail(item)"> <li v-for="(item,index) in tableData" :key="item.businessId" v-if="$route.query.tab==2||isMargin" @click="handleToDetail(item)">
...@@ -77,7 +77,8 @@ ...@@ -77,7 +77,8 @@
default:false default:false
}, },
isWhich:0, isWhich:0,
isVisible:false isVisible:false,
maxHeight:false
}, },
data(){ data(){
return { return {
......
...@@ -166,7 +166,7 @@ ...@@ -166,7 +166,7 @@
<div class="companyName"> <div class="companyName">
<img :src="scope.row.logoUrl?scope.row.logoUrl:require('../../../assets/img/index/prodefaultLogo.png')" alt=""> <img :src="scope.row.logoUrl?scope.row.logoUrl:require('../../../assets/img/index/prodefaultLogo.png')" alt="">
<div style="margin-top: 5px;"> <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> <p class="companyTitle dwote" style="width: 240px;">{{scope.row.desc}}</p>
</div> </div>
</div> </div>
......
...@@ -32,7 +32,7 @@ ...@@ -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> <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> <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-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> :placeholder="$t('commonTitle.searchThree')"></el-input>
<el-button type="primary" style="width: 140px;margin-left: 20px" @click="searchCik">{{$t('operationjson.search')}}</el-button> <el-button type="primary" style="width: 140px;margin-left: 20px" @click="searchCik">{{$t('operationjson.search')}}</el-button>
</div> </div>
...@@ -106,7 +106,7 @@ ...@@ -106,7 +106,7 @@
data() { data() {
return { return {
search:{ search:{
keyName:'', empAccount:'',
authBegin:'', authBegin:'',
authEnd:'', authEnd:'',
registerType:null, registerType:null,
......
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
<img :src="item.logoUrl?item.logoUrl:require('../../../assets/img/index/prodefaultLogo.png')" alt=""> <img :src="item.logoUrl?item.logoUrl:require('../../../assets/img/index/prodefaultLogo.png')" alt="">
</div> </div>
<div class="rightInfo"> <div class="rightInfo">
<p @click="handleToProject(item)">{{item.companyName}}</p> <p @click="handleToProject(item)">{{item.projectName}}</p>
<span>{{item.desc}}</span> <span>{{item.desc}}</span>
</div> </div>
<div class="clearFix"></div> <div class="clearFix"></div>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</li> </li>
</ul> </ul>
</div> </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> </div>
</template> </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