|
|
|
@ -21,6 +21,18 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="selector-item">
|
|
|
|
<div class="selector-item">
|
|
|
|
<el-checkbox v-model="select.is_phone">存在手机号</el-checkbox>
|
|
|
|
<el-checkbox v-model="select.is_phone">存在手机号</el-checkbox>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="selector-item">
|
|
|
|
|
|
|
|
<div class="selector-item__label">下单查询:</div>
|
|
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
|
|
v-model="dateRange"
|
|
|
|
|
|
|
|
@change='dateChange'
|
|
|
|
|
|
|
|
type="daterange"
|
|
|
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
|
|
|
range-separator="至"
|
|
|
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
|
|
|
end-placeholder="结束日期">
|
|
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="selector-item">
|
|
|
|
<div class="selector-item">
|
|
|
|
<Button type="primary" @click="doSearch">查询</Button>
|
|
|
|
<Button type="primary" @click="doSearch">查询</Button>
|
|
|
|
@ -69,8 +81,11 @@
|
|
|
|
keywords: "",
|
|
|
|
keywords: "",
|
|
|
|
area: "",
|
|
|
|
area: "",
|
|
|
|
hospital: "",
|
|
|
|
hospital: "",
|
|
|
|
is_phone: true
|
|
|
|
is_phone: true,
|
|
|
|
},
|
|
|
|
create_time:'',
|
|
|
|
|
|
|
|
over_time:''
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
dateRange:[],
|
|
|
|
areas: ["吴中区", "吴江区", "姑苏区", "工业园区", "高新区", "相城区", "昆山", "常熟", "张家港", "太仓"],
|
|
|
|
areas: ["吴中区", "吴江区", "姑苏区", "工业园区", "高新区", "相城区", "昆山", "常熟", "张家港", "太仓"],
|
|
|
|
|
|
|
|
|
|
|
|
total: 0,
|
|
|
|
total: 0,
|
|
|
|
@ -127,6 +142,12 @@
|
|
|
|
<span>{row.order_sum?row.order_sum:'0.00'}</span>
|
|
|
|
<span>{row.order_sum?row.order_sum:'0.00'}</span>
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
prop: 'order_finish',
|
|
|
|
|
|
|
|
label: '核销数',
|
|
|
|
|
|
|
|
width: 180,
|
|
|
|
|
|
|
|
align:"center"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
prop: 'due_date',
|
|
|
|
prop: 'due_date',
|
|
|
|
@ -173,7 +194,16 @@
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
dateChange(e){
|
|
|
|
|
|
|
|
if(e){
|
|
|
|
|
|
|
|
this.select.create_time = this.dateRange[0]
|
|
|
|
|
|
|
|
this.select.over_time = this.dateRange[1]
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
this.select.create_time = ''
|
|
|
|
|
|
|
|
this.select.over_time = ''
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
pageSizeChange(e) {
|
|
|
|
pageSizeChange(e) {
|
|
|
|
|
|
|
|
|
|
|
|
this.select.pageSize = e
|
|
|
|
this.select.pageSize = e
|
|
|
|
@ -195,7 +225,9 @@
|
|
|
|
keyword: this.select.keywords,
|
|
|
|
keyword: this.select.keywords,
|
|
|
|
hospital: this.select.hospital,
|
|
|
|
hospital: this.select.hospital,
|
|
|
|
area: this.select.area,
|
|
|
|
area: this.select.area,
|
|
|
|
is_phone: this.select.is_phone ? 1 : ""
|
|
|
|
is_phone: this.select.is_phone ? 1 : "",
|
|
|
|
|
|
|
|
create_time:this.select.create_time,
|
|
|
|
|
|
|
|
over_time:this.select.over_time
|
|
|
|
})
|
|
|
|
})
|
|
|
|
this.total = res.total
|
|
|
|
this.total = res.total
|
|
|
|
this.list = res.data
|
|
|
|
this.list = res.data
|
|
|
|
@ -237,5 +269,20 @@
|
|
|
|
word-break: keep-all;
|
|
|
|
word-break: keep-all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-range-editor.el-input__inner{
|
|
|
|
|
|
|
|
height:32px;
|
|
|
|
|
|
|
|
width:250px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-date-editor{
|
|
|
|
|
|
|
|
::v-deep .el-range__icon{
|
|
|
|
|
|
|
|
line-height: 26px!important;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
::v-deep .el-range-separator{
|
|
|
|
|
|
|
|
line-height: 26px!important;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
::v-deep .el-range__close-icon{
|
|
|
|
|
|
|
|
line-height: 26px!important;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|
|