From fbe4c23b9a0316937bc63213c910cbb393d6bc65 Mon Sep 17 00:00:00 2001
From: PC-20250623MANY\Administrator <344137771@qq.com>
Date: Mon, 18 Aug 2025 18:32:23 +0800
Subject: [PATCH] 1
---
src/page/user/myOrder.vue | 15 +++++++--------
1 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/src/page/user/myOrder.vue b/src/page/user/myOrder.vue
index c767cee..77e1e28 100644
--- a/src/page/user/myOrder.vue
+++ b/src/page/user/myOrder.vue
@@ -1,5 +1,6 @@
<template>
<div class="my_order">
+ <tab-head :title="$t('订单')"></tab-head>
<van-tabs v-model="active" title-inactive-color="#898a8e">
<van-tab
:title="$t('hj2')"
@@ -197,8 +198,12 @@
</template>
<script>
+import tabHead from "@/components/tabHead.vue";
import * as api from "@/axios/api";
export default {
+ components: {
+ tabHead
+ },
data() {
return {
active: "0",
@@ -249,27 +254,21 @@
this.actIndex = index;
},
goBuy(i, index) {
- console.log("ddddd", i);
- return;
+ // console.log("ddddd", i);
+ // return;
this.$router.push({
path: "/TradingBuy",
query: {
t: index,
code: i.stockCode,
m: i.now_price,
- // type: i.if_zhishu,
id: i.stockId,
name: i.stockName,
spell: i.stockSpell,
- // if_us: i.if_us,
bayType: i.stockGid,
gid: i.stockGidJb
}
});
- if (navigator.vibrate) {
- // 支持
- navigator.vibrate([55]);
- }
},
// 平仓跳转详情
toDetails(i) {
--
Gitblit v1.9.3