|
@@ -1,19 +1,20 @@
|
|
|
<template>
|
|
|
<div class="order-list">
|
|
|
<div class="table">
|
|
|
- <el-table
|
|
|
- ref="orderTable"
|
|
|
- v-loading="listLoading"
|
|
|
- :data="dataList"
|
|
|
- element-loading-text="Loading"
|
|
|
- >
|
|
|
+ <el-table ref="orderTable" v-loading="listLoading" :data="dataList" element-loading-text="Loading">
|
|
|
<el-table-column align="center" label="工单编号" prop="id" min-width="180"></el-table-column>
|
|
|
- <el-table-column align="center" label="工单类型" prop="orderSmallTypeText" min-width="200" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="工单类型"
|
|
|
+ prop="orderSmallTypeText"
|
|
|
+ min-width="200"
|
|
|
+ show-overflow-tooltip
|
|
|
+ ></el-table-column>
|
|
|
<el-table-column align="center" label="工单状态" prop="orderStatusText"></el-table-column>
|
|
|
<el-table-column align="center" label="预约上门时间" prop="appointmentTime" min-width="160"></el-table-column>
|
|
|
- <el-table-column align="center" label="创建时间" prop="createTime" min-width="160"></el-table-column>
|
|
|
+ <el-table-column align="center" label="创建时间" prop="createTime" min-width="160"></el-table-column>
|
|
|
<el-table-column align="center" label="操作" fixed="right">
|
|
|
- <template slot-scope="{row}">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
<el-button type="primary" @click="goOrderDetail(row)" size="mini">详情</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -28,7 +29,8 @@
|
|
|
:page-sizes="[10, 20, 30, 50]"
|
|
|
:page-size="10"
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
- :total="listTotal">
|
|
|
+ :total="listTotal"
|
|
|
+ >
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -53,7 +55,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
let timer = setInterval(() => {
|
|
|
- if(this.user.userId) {
|
|
|
+ if (this.user.userId) {
|
|
|
this.getOrderList()
|
|
|
clearInterval(timer)
|
|
|
}
|
|
@@ -61,21 +63,21 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
getOrderList() {
|
|
|
- console.log(this.user);
|
|
|
- let params = {
|
|
|
- userId: this.user.userId,
|
|
|
- pageNum: this.currentPage,
|
|
|
- pageSize: this.pageSize
|
|
|
- }
|
|
|
- request({
|
|
|
- url: `/order/base/list/gene`,
|
|
|
- method: 'post',
|
|
|
- params
|
|
|
- }).then(res=>{
|
|
|
- this.dataList = res.data.records
|
|
|
- this.listTotal = res.data.total
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
+ console.log(this.user)
|
|
|
+ let params = {
|
|
|
+ userId: this.user.userId,
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize
|
|
|
+ }
|
|
|
+ request({
|
|
|
+ url: `/order/base/list/gene`,
|
|
|
+ method: 'post',
|
|
|
+ params
|
|
|
+ }).then(res => {
|
|
|
+ this.dataList = res.data.records
|
|
|
+ this.listTotal = res.data.total
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
},
|
|
|
// 更改每页数量
|
|
|
handleSizeChange(val) {
|
|
@@ -89,19 +91,17 @@ export default {
|
|
|
this.getOrderList()
|
|
|
},
|
|
|
goOrderDetail(row) {
|
|
|
- this.$router.push({
|
|
|
- name: 'workOrderPool',
|
|
|
- params: {
|
|
|
- pageName: row.id,
|
|
|
- pageType: 'detail',
|
|
|
- pageCode: row.id,
|
|
|
- },
|
|
|
- })
|
|
|
+ this.$router.push({
|
|
|
+ name: window.isWorkOrderPoolPath,
|
|
|
+ params: {
|
|
|
+ pageName: row.id,
|
|
|
+ pageType: 'detail',
|
|
|
+ pageCode: row.id
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style scoped>
|
|
|
-
|
|
|
-</style>
|
|
|
+<style scoped></style>
|