From a6ed3961e47d0862e0453cfd623d12169285dc10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E8=BE=89?= <814457906@qq.com> Date: Thu, 6 Apr 2023 15:31:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/store/index.js | 9 --------- main.js | 1 - store/index.js | 3 --- 3 files changed, 13 deletions(-) delete mode 100644 api/store/index.js diff --git a/api/store/index.js b/api/store/index.js deleted file mode 100644 index 56daf90..0000000 --- a/api/store/index.js +++ /dev/null @@ -1,9 +0,0 @@ -import request from "../request.js" - -export function insertSubscribeMessageRecord(data) { - return request({ - url: `/nurseApplet/patientInfo/insertSubscribeMessageRecord`, - method: 'POST', - data - }) -} diff --git a/main.js b/main.js index bc56f3e..a43ada7 100644 --- a/main.js +++ b/main.js @@ -13,7 +13,6 @@ const app = new Vue({ }) app.$mount() // #endif - // #ifdef VUE3 import { createSSRApp diff --git a/store/index.js b/store/index.js index 3f65a44..4223c7e 100644 --- a/store/index.js +++ b/store/index.js @@ -1,9 +1,6 @@ import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) -import { - insertSubscribeMessageRecord -} from '@/api/store/index.js' const store = new Vuex.Store({ state: { //公共的变量,这里的变量不能随便修改,只能通过触发mutations的方法才能改变