From a6c950ba797dffec842cf7e923fc439868645766 Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期一, 23 六月 2025 17:18:58 +0800
Subject: [PATCH] update 解决余额支付问题

---
 api/video.js |   42 ++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 40 insertions(+), 2 deletions(-)

diff --git a/api/video.js b/api/video.js
index eaa231d..d3dddd1 100644
--- a/api/video.js
+++ b/api/video.js
@@ -26,7 +26,7 @@
  * 
  * @param params
  */
- export function getRecommendVideos(params) {
+ export async function getRecommendVideos(params) {
   return http.request({
     url: "/lmk/video/recommend",
     method: Method.GET,
@@ -35,6 +35,44 @@
   });
 }
 
+/**
+ * 鑾峰彇澶у仴搴锋帹鑽愯棰�
+ * 
+ * @param params
+ */
+ export function getHealthRecommendVideos(params) {
+  return http.request({
+    url: "/lmk/video/health/recommend",
+    method: Method.GET,
+    needToken: true,
+	params: params
+  });
+}
+/**
+ * 鑾峰彇鍘ㄧ鍒嗙被
+ * 
+ * @param params
+ */
+ export function getkitchenTypeList() {
+  return http.request({
+    url: "/lmk/video/kitchen/type",
+    method: Method.GET,
+    needToken: true,
+  });
+}
+/**
+ * 鑾峰彇鍘ㄧ瑙嗛鍒楄〃
+ * 
+ * @param params
+ */
+ export function getkitchenVideoList(params) {
+  return http.request({
+    url: "/lmk/video/kitchen/recommend",
+    method: Method.GET,
+    needToken: true,
+	params: params
+  });
+}
 /**
  * 鑾峰彇瑙嗛鎮寕鍟嗗搧
  * 
@@ -197,4 +235,4 @@
     method: Method.POST,
     needToken: true
   });
-}
\ No newline at end of file
+}

--
Gitblit v1.8.0