From e77971ba940991da6130a5a5c06a3da9afbc5f5f 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:03:02 +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 --------- store/index.js | 3 --- 2 files changed, 12 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/store/index.js b/store/index.js index c431573..63dff0b 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的方法才能改变