Przeglądaj źródła

添加退款统计

戴艳蓉 3 lat temu
rodzic
commit
99c2d69978

Plik diff jest za duży
+ 0 - 0
dist/index.html


Plik diff jest za duży
+ 0 - 0
dist/static/js/app.5441d094.js


BIN
dist/static/js/app.5441d094.js.gz


Plik diff jest za duży
+ 0 - 0
dist/static/js/app.63d27482.js


BIN
dist/static/js/app.63d27482.js.gz


+ 5 - 0
src/App.vue

@@ -8,6 +8,9 @@
         <el-tab-pane label="确认单绩效报表" name="2">
           <merits-table />
         </el-tab-pane>
+        <el-tab-pane label="确认单绩效退款报表" name="3">
+          <merits-return-table />
+        </el-tab-pane>
       </el-tabs>
     </div>
   </div>
@@ -15,11 +18,13 @@
 <script>
 import achievementTable from "@/views/achievementTable";
 import meritsTable from "@/views/meritsTable";
+import meritsReturnTable from "@/views/meritsReturnTable";
 export default {
   name: "commission",
   components: {
     achievementTable,
     meritsTable,
+    meritsReturnTable
   },
   data() {
     return {

+ 152 - 0
src/views/meritsReturnTable.vue

@@ -0,0 +1,152 @@
+<template>
+  <el-row v-loading="loading">
+    <el-col :span="8" style="width: 824px">
+      <period-date-picker
+        :start="parmValue.start"
+        :end="parmValue.end"
+        :type="1"
+        :width="'145px'"
+        :placeholder="'退款'"
+        :size="searchSize"
+        @timeReturned="timeReturned($event)"
+      />
+    </el-col>
+
+    <el-col :span="4" class="fr" style="width: 300px">
+      <el-button
+        type="primary"
+        class="fr ml10"
+        icon="el-icon-download"
+        :size="searchSize"
+        @click="Export()"
+        >导出</el-button
+      >
+
+      <el-button
+        type="warning"
+        class="fr ml10"
+        :size="searchSize"
+        @click="restSearch"
+      >
+        重置
+      </el-button>
+    </el-col>
+  </el-row>
+</template>
+
+<script>
+import { baseApi2 } from "@/config";
+
+export default {
+  name: "meritsTable",
+
+  data() {
+    return {
+      searchSize: "small",
+      size: "mini",
+      loading: false,
+      parmValue: {
+        start: "",
+        end: "",
+      },
+    };
+  },
+  methods: {
+    async timeReturned(e) {
+      if (e.startTime !== "") {
+        this.parmValue.start = e.startTime;
+      } else {
+        this.parmValue.start = "";
+      }
+      if (e.endTime !== "") {
+        this.parmValue.end = e.endTime;
+      } else {
+        this.parmValue.end = "";
+      }
+    },
+
+    restSearch() {
+      this.parmValue = {
+        start: "",
+        end: "",
+      };
+    },
+
+    async timeVerification() {
+      return new Promise(async (resolve, reject) => {
+        if (this.parmValue.start === "" && this.parmValue.end === "") {
+          resolve({ ok: false, msg: "请选择时间区间!" });
+        } else if (
+          (this.parmValue.start === "" && this.parmValue.end !== "") ||
+          (this.parmValue.start !== "" && this.parmValue.end === "")
+        ) {
+          resolve({ ok: false, msg: "下单时间区间不完整!" });
+        } else {
+          resolve({ ok: true, msg: "ok" });
+        }
+      });
+    },
+    /**
+     * 批量导出开票信息
+     */
+    async Export() {
+      if (!this.loading) {
+        this.timeVerification().then(async (r) => {
+          if (!r.ok) {
+            this.$message.warning(r.msg);
+          } else {
+            this.loading = true;
+            let url = "jxthreport";
+            let httpType = `aplication/zip`;
+            let title =
+              this.parmValue.start !== ""
+                ? `退款时间${this.parmValue.start}至${this.parmValue.end}`
+                : "";
+            axios({
+              method: "post",
+              url: baseApi2 + url,
+              responseType: "blob",
+              data: this.parmValue,
+              headers: {
+                Accept: httpType,
+              },
+            })
+              .then((res) => {
+                if (res && res.status == 200 && res.data) {
+                  let blob = new Blob([res.data], {
+                    type: httpType,
+                  });
+                  let url = window.URL.createObjectURL(blob);
+                  let aLink = document.createElement("a");
+                  aLink.style.display = "none";
+                  aLink.href = url;
+                  aLink.setAttribute("download", `确认单绩效${title}.zip`);
+                  document.body.appendChild(aLink);
+                  aLink.click();
+                  document.body.removeChild(aLink); //下载完成移除元素
+                  window.URL.revokeObjectURL(url); //释放掉blob对象
+                  this.$message.success(`${title}信息导出成功!`);
+                  setTimeout(() => {
+                    this.loading = false;
+                  }, 500);
+                } else {
+                  this.$message.error(res.data.message);
+                  setTimeout(() => {
+                    this.loading = false;
+                  }, 500);
+                }
+              })
+              .catch((error) => {
+                console.log(error);
+                this.loading = false;
+              });
+          }
+        });
+      }
+    },
+  },
+};
+</script>
+
+<style>
+</style>

Niektóre pliki nie zostały wyświetlone z powodu dużej ilości zmienionych plików