odc.xiaohui
2023-05-10 06b7757e3de40b5c380df429a06b859389c80fbc
src/views/manager/User.vue
@@ -14,6 +14,7 @@
          </el-form-item>
          <el-form-item>
            <el-button type="primary" @click="addPublicityVisibel = true">添加</el-button>
            <el-button type="primary" @click="exportList">导出</el-button>
          </el-form-item>
        </el-form>
      </template>
@@ -223,6 +224,33 @@
  },
  methods:
      {
        exportList(){
        this.$http({
          url:'/api/user/exp',
          responseType: 'blob',
          method: 'post',
        }).then(res=>{
          console.log(res)
          this.$message.success('操作成功');
          let time = new Date()
          let deathdate =time.toLocaleDateString()
          const blob = new Blob([res.data], {
            type: "application/vnd.ms-excel;charset=utf-8",
          });
          if (window.navigator.msSaveBlob) {
            window.navigator.msSaveBlob(blob, deathdate + ".xlsx");
          } else {
            const url = window.URL.createObjectURL(blob);
            const link = document.createElement("a");
            link.style.display = "none";
            link.href = url;
            link.download = deathdate + ".xlsx";
            document.body.appendChild(link);
            link.click();
            document.body.removeChild(link);
          }
        })
        },
        handleToManager(data) {
          toManager(data.id).then(res => {
            this.$message({