|
@@ -164,12 +164,13 @@ export default {
|
|
|
this.$refs.pageRef.refreshList()
|
|
|
},
|
|
|
// 列表请求函数
|
|
|
- getList(p) {
|
|
|
+ getList(p,cb) {
|
|
|
try {
|
|
|
var pam = JSON.parse(JSON.stringify(p))
|
|
|
- if (this.status) {
|
|
|
+ if (this.status || this.status >= 0) {
|
|
|
pam.params.push({ "param": "a.status", "compare": "=", "value": this.status })
|
|
|
}
|
|
|
+ cb && cb(pam)
|
|
|
return listPageV2(pam)
|
|
|
} catch (error) {
|
|
|
console.log(error)
|