Quellcode durchsuchen

修改工作台

LIPENGTAO1313 vor 6 Jahren
Ursprung
Commit
7bc4fe7b33
1 geänderte Dateien mit 18 neuen und 8 gelöschten Zeilen
  1. 18 8
      src/components/bench-views/BusTemplate.vue

+ 18 - 8
src/components/bench-views/BusTemplate.vue

@ -88,15 +88,25 @@
88 88
        this.expertList();
89 89
      },
90 90
      delet(id, index) {
91
        this.$axios.post(httpUrl.hQuery.residentOrgs.del, {
92
              pid: this.platId,
93
              oid: id
94
          }).then((res) => {
95
            if (res.success) {
96
              this.dataList.splice(index, 1);
91
        this.$alert('确认将该企业移出平台?', '提示', {
92
          confirmButtonText: '确定',
93
          cancelButtonText: '取消',
94
          type: 'warning',
95
          center: true,
96
          callback: action => {
97
            if (action === 'confirm') {
98
              this.$axios.post(httpUrl.hQuery.residentOrgs.del, {
99
                pid: this.platId,
100
                oid: id
101
                }).then((res) => {
102
                  if (res.success) {
103
                    this.dataList.splice(index, 1);
104
                  }
105
              });
97 106
            }
98
          });
99
        }
107
          }
108
        });
109
      }
100 110
    }
101 111
  };
102 112
</script>