diff --git a/H5/src/api/base.js b/H5/src/api/base.js
index 94452ecd6024f6732c37a274578a8e29796cc9cc..7848ad399372adf6438a46f9299a0f446ab2d52d 100644
--- a/H5/src/api/base.js
+++ b/H5/src/api/base.js
@@ -26,6 +26,7 @@ export function uploadImage(params, file) {
   return request({
     url: "/ZX/uploadImage",
     method: "post",
+    params,
     data: file
   });
 }
diff --git a/H5/src/views/cashOut/cash-out-record.vue b/H5/src/views/cashOut/cash-out-record.vue
index b521a9c4b3c78f83676380d5e9f5c15403caa102..086d9baf63bd112626351e763423c03678a6ea36 100644
--- a/H5/src/views/cashOut/cash-out-record.vue
+++ b/H5/src/views/cashOut/cash-out-record.vue
@@ -53,7 +53,7 @@ export default {
     this.maxDate = new Date();
     this.minDate = new Date(this.currentDate.getFullYear(), 0);
     this.selected = `${this.currentDate.getFullYear()}å¹´${this.currentDate.getMonth() +
-        1}月`;
+      1}月`;
     const time = this.currentDate.toLocaleDateString().replace(/\//g, "-");
     this.getRecordList(time);
   },
diff --git a/H5/src/views/cashOut/cash-out.vue b/H5/src/views/cashOut/cash-out.vue
index 1ec2427196976db31312063a25e3af9a901db3d3..463ceba9c8f7f0c5b416a8b8d287a38c3b46206b 100644
--- a/H5/src/views/cashOut/cash-out.vue
+++ b/H5/src/views/cashOut/cash-out.vue
@@ -152,7 +152,7 @@ export default {
     // 点击提现
     onCashOut() {
       if (this.money == 0) {
-        this.$toast.fail('请输入正确金额');
+        this.$toast.fail("请输入正确金额");
         return;
       }
       if (!this.money) {