|
|
@@ -78,7 +78,7 @@
|
|
|
align="center"
|
|
|
min-width="120px"
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="Name"
|
|
|
+ <el-table-column prop="Status"
|
|
|
label="状态"
|
|
|
align="center"
|
|
|
min-width="120px"
|
|
|
@@ -102,7 +102,7 @@
|
|
|
:page-sizes="[10, 15, 20]"
|
|
|
:page-size="size"
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
- :total="totalsize">
|
|
|
+ :total="search.page.total">
|
|
|
</el-pagination>
|
|
|
</template>
|
|
|
</d2-container>
|
|
|
@@ -128,24 +128,18 @@ export default {
|
|
|
classificationlist: [],
|
|
|
activities: [],
|
|
|
Term: '',
|
|
|
- Name: '',
|
|
|
Year: '',
|
|
|
Title: '',
|
|
|
- Local: '',
|
|
|
Time: '',
|
|
|
Status: '',
|
|
|
- Monday: '',
|
|
|
- Tuesday: '',
|
|
|
- Wednesday: '',
|
|
|
- Thursday: '',
|
|
|
- Friday: '',
|
|
|
- Saturday: '',
|
|
|
- Sunday: '',
|
|
|
- CalibrationTime: [], // 录入时期
|
|
|
- Remarks: '',
|
|
|
search: {
|
|
|
Term: '',
|
|
|
- Year: ''
|
|
|
+ Year: '',
|
|
|
+ page: {
|
|
|
+ total: 0,
|
|
|
+ current: 1,
|
|
|
+ size: 10
|
|
|
+ }
|
|
|
},
|
|
|
statelist: [
|
|
|
{
|
|
|
@@ -204,10 +198,10 @@ export default {
|
|
|
_size: this.size,
|
|
|
Year: this.search.Year,
|
|
|
Term: this.search.Term,
|
|
|
- Order: this.Column.Order,
|
|
|
- Prop: this.Column.Prop
|
|
|
+ Order: this.search.Order,
|
|
|
+ Prop: this.search.Prop
|
|
|
}
|
|
|
- DutyApi.getAllDuty(params)
|
|
|
+ DutyApi.getPageList(params)
|
|
|
.then(res => {
|
|
|
_this.activities = res.records
|
|
|
})
|