You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
748 B
33 lines
748 B
<template>
|
|
<el-col :span="10">
|
|
<el-table :data="tableData" border>
|
|
<el-table-column align="center" prop="title" :label="$t('center.collect.form.title')" />
|
|
<el-table-column align="center" prop="time" :label="$t('center.collect.form.time')" />
|
|
</el-table>
|
|
|
|
<div class="block center mt1">
|
|
<el-pagination
|
|
layout="prev, pager, next"
|
|
:total="1000">
|
|
</el-pagination>
|
|
</div>
|
|
</el-col>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
|
|
import Vue from 'vue'
|
|
|
|
export default Vue.extend( {
|
|
name: 'collect',
|
|
data(){
|
|
return {
|
|
tableData: [{
|
|
title: '论文标题1',
|
|
time: this.$moment().format("YYYY-MM-DD")
|
|
}]
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|