From bbe690f5edeef3bb36fc05b7cdd510409e632fca Mon Sep 17 00:00:00 2001 From: Wangxubin Date: Fri, 25 Nov 2022 15:48:17 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/index.js | 2 +- src/api/login.js | 2 +- src/api/storeManage.js | 9 + src/components/project/index.vue | 7 +- src/components/project/selection/index.vue | 5 + src/login/login.vue | 4 +- .../eashier/collectionList/collectionList.vue | 11 +- .../raiseReatment/components/index.vue | 7 +- src/pages/eashier/reatment/reatment.vue | 2 +- src/pages/eashier/service/course.vue | 1 - src/pages/eashier/service/service.vue | 494 ++++++------------ src/pages/statistics/storeDaily/form.vue | 51 +- .../storeManage/baseProject/baseProject.vue | 16 +- src/pages/storeManage/baseProject/project.vue | 219 ++++++++ .../storeManage/dept/components/detail.vue | 5 +- 15 files changed, 468 insertions(+), 367 deletions(-) create mode 100644 src/pages/storeManage/baseProject/project.vue diff --git a/config/index.js b/config/index.js index bee214c..1271fd8 100644 --- a/config/index.js +++ b/config/index.js @@ -30,7 +30,7 @@ module.exports = { //target: "http://192.168.31.209:8084/", //设置你调用的接口域名和端口号 别忘了加http 本地 // target: "http://192.168.31.201:8084/", //设置你调用的接口域名和端口号 别忘了加http 本地 // target: "http://139.9.185.131:8098/", //设置你调用的接口域名和端口号 别忘了加http 天懿达正式 - // target: "http://139.9.58.205:8084/", //设置你调用的接口域名和端口号 别忘了加http 天懿达正式华为云 + // target: "http://192.168.31.209:8084/", //设置你调用的接口域名和端口号 别忘了加http 天懿达正式华为云 // target: "http://139.9.185.131:9094/", //设置你调用的接口域名和端口号 别忘了加http 盛联 // target: "http://139.9.185.131:8084/", //设置你调用的接口域名和端口号 别忘了加http 天懿达正式 // target: "http://192.168.31.209:8084/", //设置你调用的接口域名和端口号 别忘了加http 天懿达线上 diff --git a/src/api/login.js b/src/api/login.js index 933a5fd..ffd89e1 100644 --- a/src/api/login.js +++ b/src/api/login.js @@ -4,7 +4,7 @@ import { localPath } from "./api.js"; // 门店员工获取手机短信验证码接口 export function getSmsCode(params) { return service({ - url: "/api" + "/demay/ssm/staffLogin/getSmsCode", + url: "/api" + "/demay/ssm/staffLogin/getCode", method: "post", data: params }); diff --git a/src/api/storeManage.js b/src/api/storeManage.js index 1048d9e..cdf670f 100644 --- a/src/api/storeManage.js +++ b/src/api/storeManage.js @@ -274,12 +274,21 @@ export function propageNew(params) { } //查询开疗程时人员 export function selectRatioInfo(params) { + return service({ + url: "/api" + "/demay/ssm/staff/selectRatioInfo", + method: "post", + data: params + }); +} + +export function selectRatioInfo1(params) { return service({ url: "/api" + "/demay/ssm/pro/copyProject", method: "post", data: params }); } + //项目删除 export function delpro(params) { return service({ diff --git a/src/components/project/index.vue b/src/components/project/index.vue index 925a958..e1b30e4 100644 --- a/src/components/project/index.vue +++ b/src/components/project/index.vue @@ -1,9 +1,10 @@