wuhongyu 4 år sedan
förälder
incheckning
907128a79a
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      src/views/adminCenter/transaction/parts/list.vue

+ 2 - 2
src/views/adminCenter/transaction/parts/list.vue

@@ -57,13 +57,13 @@ export default {
     async searchInfo() {
       if (this.user.role == '4') {
         let create_userid = this.user.uid;
-        let res = await this.transactionList({ create_userid });
+        let res = await this.transactionList({ create_userid, status: '4' });
         if (this.$checkRes(res)) {
           this.$set(this, `list`, res.data);
         }
       } else {
         let userid = this.user.uid;
-        let res = await this.transactionList();
+        let res = await this.transactionList({ status: '4' });
         if (this.$checkRes(res)) {
           this.$set(this, `list`, res.data);
         }