Browse Source

兼容开头大小写的参数

milestone-20250924-接入大财神工作流
no99 5 days ago
parent
commit
74740ef086
  1. 3
      src/components.d.ts
  2. 17
      src/views/deepNine.vue

3
src/components.d.ts

@ -4,7 +4,8 @@
declare module 'vue' {
export interface GlobalComponents {
HelloWorld: typeof import('./components/HelloWorld.vue')['default']
MessageItem: typeof import('./components/deepNine/MessageItem.vue')['default']
ThinkingGif: typeof import('./components/deepNine/ThinkingGif.vue')['default']
}
}

17
src/views/deepNine.vue

@ -1565,11 +1565,20 @@ watch(
50
);
const ac31 = `<p style="margin:0;color:#FFD700;font-weight:bold;display:flex;justify-content:center;font-size:22px">【资金异动信号】</p><p>`;
const ac32 = result22.data.DXTSC;
const ac33 = result22.data.DXTSC2;
const ac321 = result22.data.DXTSC;
const ac322 = result22.data.dXTSC;
const ac32 = ac321 || ac322 || "";
const ac331 = result22.data.DXTSC2;
const ac332 = result22.data.dXTSC2;
const ac33 = ac331 || ac332 || "";
const ac34 = `<p style="margin:0;color:#FFD700;font-weight:bold;display:flex;justify-content:center;font-size:22px">【资金趋势导航】</p><p>`;
const ac35 = result22.data.ZJQSSC1;
const ac3 = `<p>${result23.data.DXTSC}</p><p>${result23.data.DXTSC2}</p><p>${result23.data.ZJQSSC1}</p>`;
const ac351 = result22.data.ZJQSSC1;
const ac352 = result22.data.dZJQSSC1;
const ac35 = ac351 || ac352 || "";
// const ac3 = `<p>${result23.data.DXTSC}</p><p>${result23.data.DXTSC2}</p><p>${result23.data.ZJQSSC1}</p>`;
const ac3Arr = [];
ac3Arr.push(ac31);
if (ac32 != "") {

Loading…
Cancel
Save