From 3fe222593adba91eb9d015d5fa052be0d9b7c350 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Mon, 08 Jul 2024 16:19:02 +0800
Subject: [PATCH] Trade里面价格和涨跌幅升序降序

---
 src/main.js |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/main.js b/src/main.js
index b1b15de..3eb2305 100644
--- a/src/main.js
+++ b/src/main.js
@@ -19,7 +19,7 @@
   Tab,
   Tabs,
   Popup,
-  DatetimePicker
+  DatetimePicker 
 } from "vant";
 import "vant/lib/index.css";
 import moment from "moment";
@@ -33,6 +33,7 @@
 import "lib-flexible";
 // import md5 from 'js-md5'
 import * as filters from "@/utils/utils";
+import * as filter from "@/utils/filter";
 import * as allocation from "@/utils/allocation";
 import animated from "animate.css"; // npm install animate.css --save安装,在引入
 
@@ -71,6 +72,9 @@
 Object.keys(filters).forEach(key => {
   Vue.filter(key, filters[key]);
 });
+Object.keys(filter).forEach(key => {
+  Vue.filter(key, filter[key]);
+});
 Object.keys(allocation).forEach(key => {
   Vue.prototype[key] = allocation[key];
 });

--
Gitblit v1.9.3