<template>
|
<div class="main_app">
|
<QueryForm v-model="filters" :query-form-config="queryFormConfig" @handleQuery="getList(1)" @clear="clear" />
|
<div class="df_sb mt20">
|
<div class="tabs">
|
<div class="tab" :class="{ active: activeTabs == 0 }" @click="tabsClick(0)">收款账单</div>
|
<div class="tab" :class="{ active: activeTabs == 1 }" @click="tabsClick(1)">付款账单</div>
|
</div>
|
<div class="btns">
|
<el-button type="primary" @click="handleEdit()" icon="el-icon-plus"
|
v-permissions="['business:ywpatrolline:create']">新建</el-button>
|
<el-button @click="handleEx" v-permissions="['business:ywpatrolline:create']">导出</el-button>
|
</div>
|
</div>
|
<el-table v-loading="loading" :data="list" stripe>
|
<el-table-column prop="" label="运维人" min-width="100" show-overflow-tooltip />
|
<el-table-column prop="code" label="设备编号" min-width="100" show-overflow-tooltip />
|
<el-table-column prop="name" label="设备名称" min-width="100" show-overflow-tooltip />
|
<el-table-column prop="stautsName" label="设备状态" min-width="100" show-overflow-tooltip />
|
<el-table-column prop="remark" label="运维备注" min-width="100" show-overflow-tooltip />
|
<el-table-column prop="createTime" label="创建时间" min-width="100" show-overflow-tooltip />
|
<el-table-column label="操作" min-width="120" fixed="right">
|
<template slot-scope="{row}">
|
<el-button type="text" @click="handleDetail(row)" icon="el-icon-edit"
|
v-permissions="['business:category:update']">查看</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
<div class="mt20">
|
<Pagination @size-change="handleSizeChange" @current-change="getList" :pagination="pagination" />
|
</div>
|
<Edit v-if="showEdit" ref="EditRef" @success="getList" @close="showEdit = false" />
|
</div>
|
</template>
|
|
<script>
|
import Pagination from '@/components/common/Pagination'
|
import QueryForm from '@/components/common/QueryForm'
|
import Edit from './components/deviceEdit.vue'
|
import { fetchList, deleteById } from '@/api/Inspection/device'
|
export default {
|
components: {
|
Pagination,
|
QueryForm,
|
Edit
|
},
|
data() {
|
return {
|
loading: false,
|
showEdit: false,
|
pagination: {
|
pageSize: 10,
|
page: 1,
|
total: 0
|
},
|
activeTabs: 0,
|
filters: {},
|
list: [],
|
total: 0,
|
statusMap: [
|
{ value: 0, label: '待收款' },
|
{ value: 1, label: '已结算' },
|
{ value: 2, label: '部分结清' },
|
{ value: 3, label: '待退款' },
|
{ value: 4, label: '待付款' },
|
],
|
queryFormConfig: {
|
formItems: [
|
{
|
filed: 'name',
|
type: 'input',
|
label: '客户名称',
|
},
|
{
|
filed: 'status',
|
type: 'select',
|
label: '账单状态',
|
options: [
|
{ value: '0', label: '开启' },
|
{ value: '1', label: '关闭' },
|
]
|
},
|
{
|
filed: 'status',
|
type: 'select',
|
label: '结清状态',
|
options: this.statusMap
|
},
|
{
|
filed: 'selDate',
|
type: 'daterange',
|
label: '应收/付日期'
|
},
|
],
|
online: true
|
}
|
}
|
},
|
created() {
|
this.getList()
|
},
|
methods: {
|
getList(page) {
|
const { pagination, filters } = this
|
this.loading = true
|
fetchList({
|
model: {
|
...filters,
|
},
|
capacity: pagination.pageSize,
|
page: page || pagination.page,
|
}).then(res => {
|
this.loading = false
|
this.list = res.records || []
|
this.list.forEach(item => {
|
item.stautsName = item.status == 0 ? '正常' : item.status == 1 ? '损坏' : '报废'
|
})
|
this.pagination.total = res.total || 0
|
}, () => {
|
this.loading = false
|
})
|
},
|
handleEx() {
|
|
},
|
tabsClick(val) {
|
this.activeTabs = val
|
},
|
handleEdit(row) {
|
this.showEdit = true
|
this.$nextTick(() => {
|
this.$refs.EditRef.isShowModal = true
|
if (row && row.id) {
|
this.$refs.EditRef.getDetail(row.id)
|
}
|
})
|
|
},
|
handleDetail() {
|
|
},
|
handleDel(row) {
|
let message = `确认删除该记录吗?`
|
this.$dialog.deleteConfirm(message)
|
.then(() => {
|
this.isWorking.delete = true
|
deleteById(row.id)
|
.then(() => {
|
this.$tip.apiSuccess('删除成功')
|
this.getList()
|
})
|
})
|
.catch(() => { })
|
},
|
clear() {
|
this.filters = {}
|
this.pagination.pageSize = 10
|
this.pagination.page = 1
|
this.getList()
|
},
|
handleSizeChange(capacity) {
|
this.pagination.pageSize = capacity
|
this.getList()
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
@import '@/assets/style/variables.scss';
|
|
.tabs {
|
border-bottom: 1px solid #DFE2E8;
|
display: flex;
|
margin-bottom: 20px;
|
display: flex;
|
justify-content: center;
|
|
.tab {
|
height: 58px;
|
line-height: 58px;
|
font-size: 16px;
|
color: #666666;
|
margin: 0 30px;
|
cursor: pointer;
|
}
|
|
.active {
|
font-weight: 500;
|
color: $primary-color;
|
border-bottom: 2px solid $primary-color;
|
}
|
}
|
</style>
|