Browse Source

接接口

milestone-20250924-接入大财神工作流
no99 1 week ago
parent
commit
9bc84892ad
  1. 39
      src/api/deepNine.js
  2. 3
      src/views/AIchat.vue
  3. 2567
      src/views/deepNine.vue

39
src/api/deepNine.js

@ -1,7 +1,7 @@
import request from "../utils/request";
const APIurl = import.meta.env.VITE_APP_API_BASE_URL;
const cozeAPIurl = import.meta.env.VITE_APP_API_BASE_CAZE_URL;
// 9.26深度九数据接口 start
export const getNineTurnsAPI = function (headers, params) {
@ -14,3 +14,40 @@ export const getNineTurnsAPI = function (headers, params) {
};
// 9.26深度九数据接口 end
// 10.1深度九工作流接口 start
// deepNine1
export const deepNineFirstAPI = function (params) {
return request({
url: `${cozeAPIurl}/api/workflow/depthNineFirst`,
method: "POST",
data: params,
});
};
// deepNine21
export const deepNineSecondOneAPI = function (params) {
return request({
url: `${cozeAPIurl}/api/workflow/depthNineSecondOne`,
method: "POST",
data: params,
});
};
// deepNine22
export const deepNineSecondTwoAPI = function (params) {
return request({
url: `${cozeAPIurl}/api/workflow/depthNineSecondTwo`,
method: "POST",
data: params,
});
};
// deepNine23
export const deepNineSecondThreeAPI = function (params) {
return request({
url: `${cozeAPIurl}/api/workflow/depthNineSecondThree`,
method: "POST",
data: params,
});
};
// 10.1深度九工作流接口 end

3
src/views/AIchat.vue

@ -4465,7 +4465,7 @@ const scrollToTop = () => {
};
// K线
function renderAllKlineCharts() {
async function renderAllKlineCharts() {
console.log("重新渲染所有K线图");
// K线
@ -4477,6 +4477,7 @@ function renderAllKlineCharts() {
// DOM
const container = document.getElementById(containerId);
await nextTick();
if (container) {
//
KlineCanvsEcharts(containerId);

2567
src/views/deepNine.vue
File diff suppressed because it is too large
View File

Loading…
Cancel
Save