From 89761212ad3ac02b68276d82c26ab6cd767ea216 Mon Sep 17 00:00:00 2001
From: zhangxiaoxu <819527061@qq.com>
Date: 星期二, 06 一月 2026 14:56:29 +0800
Subject: [PATCH] 新政修改密码功能

---
 main.js |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/main.js b/main.js
index 29b062f..bf891bc 100644
--- a/main.js
+++ b/main.js
@@ -2,24 +2,27 @@
 import Vue from 'vue'
 import uView from '@/uni_modules/uview-ui';
 import '@/api/constant.js';
+import store from './store'
 
 uni.$u.config.unit = 'rpx'
 Vue.use(uView)
 
 
 // 璇锋眰鐩稿叧
-import { reqAll, reqGet, reqPost } from './utils/index.js';
+import { reqAll, reqGet, reqPost, reqPut } from './utils/index.js';
 Vue.prototype.$reqAll = reqAll;
 Vue.prototype.$reqGet = reqGet;
 Vue.prototype.$reqPost = reqPost;
+Vue.prototype.$reqPut = reqPut;
 
-
+Vue.prototype.$store = store
 
 Vue.config.productionTip = false
 
 
 App.mpType = 'app'
 const app = new Vue({
+	store,
 	...App
 })
 app.$mount()

--
Gitblit v1.9.1