|
|
|
|
@ -483,6 +483,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
async getList() {
|
|
|
|
|
this.loading = true
|
|
|
|
|
console.log("this.searchForm.pay_status",this.searchForm.pay_status)
|
|
|
|
|
try {
|
|
|
|
|
const filter = [
|
|
|
|
|
{
|
|
|
|
|
@ -493,13 +494,13 @@ export default {
|
|
|
|
|
{
|
|
|
|
|
key: 'pay_status',
|
|
|
|
|
op: 'eq',
|
|
|
|
|
value: this.searchForm.pay_status || ''
|
|
|
|
|
value: this.searchForm.pay_status?this.searchForm.pay_status:(this.searchForm.pay_status===0?0:'')
|
|
|
|
|
},{
|
|
|
|
|
key: 'site_id',
|
|
|
|
|
op: 'eq',
|
|
|
|
|
value: this.searchForm.site_id || ''
|
|
|
|
|
}
|
|
|
|
|
].filter(item => item.value !== '')
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
// 处理服务状态筛选
|
|
|
|
|
if (this.searchForm.status === 'assigned') {
|
|
|
|
|
|