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.
go-fly/static/templates/setting_indexpages.html

34 lines
1.1 KiB

{{template "header" }}
<div id="app" style="width:100%">
<template>
<el-main class="mainMain">
<el-button style="margin-bottom: 10px;" @click="" type="primary" size="small">添加单页</el-button>
<el-table
:data="aboutpages"
border
style="width: 100%">
<el-table-column
prop="title_cn"
label="标题">
</el-table-column>
<el-table-column
prop="page"
label="页面标识">
</el-table-column>
<el-table-column
prop="id"
label="操作">
<template slot-scope="scope">
<el-button @click="" type="primary" size="small" plain>编辑</el-button>
<el-button @click="" type="primary" size="small" plain>删除</el-button>
</template>
</el-table-column>
</el-table>
</el-main>
</template>
</div>
</body>
{{template "setting_bottom" .}}