|
@@ -1,15 +1,28 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- <el-form :model="form" inline>
|
|
|
- <el-form-item label="场次代码">
|
|
|
- <el-input v-model.trim="form.code"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-button @click="handleCurrentChange(0)">查询</el-button>
|
|
|
- <el-button @click="add">新增</el-button>
|
|
|
- <!-- <el-button>导入</el-button> -->
|
|
|
- </el-form>
|
|
|
+ <div class="activity-management">
|
|
|
+ <div class="part-box-head">
|
|
|
+ <div class="part-box-head-left"><h1>场次设置</h1></div>
|
|
|
+ </div>
|
|
|
+ <div class="part-filter">
|
|
|
+ <div class="part-filter-form">
|
|
|
+ <el-form :model="form" inline>
|
|
|
+ <el-form-item label="场次代码">
|
|
|
+ <el-input v-model.trim="form.code"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-button type="primary" @click="handleCurrentChange(0)"
|
|
|
+ >查询</el-button
|
|
|
+ >
|
|
|
+ </el-form>
|
|
|
+ <div class="part-filter-form-action">
|
|
|
+ <el-button type="primary" icon="icon icon-add" @click="add"
|
|
|
+ >新增</el-button
|
|
|
+ >
|
|
|
+ <!-- <el-button>导入</el-button> -->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
|
|
|
- <el-table :data="tableData" stripe style="width: 100%;">
|
|
|
+ <el-table :data="tableData">
|
|
|
<el-table-column type="selection" width="42" />
|
|
|
<el-table-column width="100" label="ID">
|
|
|
<span slot-scope="scope">{{ scope.row.id }}</span>
|
|
@@ -59,7 +72,7 @@
|
|
|
</div>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <div class="page float-right">
|
|
|
+ <div class="part-page">
|
|
|
<el-pagination
|
|
|
background
|
|
|
@current-change="handleCurrentChange"
|