|
@@ -3,8 +3,14 @@
|
|
<el-col :span="8" v-for="item in applications" :key="item.name" style="height: 160px;margin-bottom: 10px">
|
|
<el-col :span="8" v-for="item in applications" :key="item.name" style="height: 160px;margin-bottom: 10px">
|
|
<el-card class="test-card">
|
|
<el-card class="test-card">
|
|
<div slot="header" class="clearfix test-card-header">
|
|
<div slot="header" class="clearfix test-card-header">
|
|
- <span>{{ item && item.name }}</span>
|
|
|
|
- <el-button style="float: right;line-height: 25px" type="text" @click="getMore()">more>></el-button>
|
|
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="18">
|
|
|
|
+ <span>{{ item && item.name }}</span>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-button style="float: right;line-height: 25px;padding:0" type="text" @click="getMore()">more>></el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
</div>
|
|
</div>
|
|
<div class="test-card-description">
|
|
<div class="test-card-description">
|
|
<span>{{ item && item.introduction }}</span>
|
|
<span>{{ item && item.introduction }}</span>
|
|
@@ -15,8 +21,6 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-// import Waterfall from 'vue-waterfall/lib/waterfall'
|
|
|
|
-// import WaterfallSlot from 'vue-waterfall/lib/waterfall-slot'
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "TestCard",
|
|
name: "TestCard",
|