Commit a6f7ed1b by 唐玉峰

患者详情 页面

parent 19f217ba
...@@ -19,17 +19,17 @@ body, ...@@ -19,17 +19,17 @@ body,
margin: 0; margin: 0;
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 10px; width: 15px;
height: 10px; height: 15px;
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
border-radius: 10px; border-radius: 8px;
background: #f4f4f4; background: #f4f4f4;
width: 10px; width: 15px;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background-color: #27aae2; background-color: rgb(2, 131, 187);
border: 3px solid transparent; /* border: 3px solid transparent; */
border-radius: 9px; border-radius: 9px;
background-clip: content-box; background-clip: content-box;
} }
......
...@@ -13,7 +13,7 @@ import router from "@/router/index"; ...@@ -13,7 +13,7 @@ import router from "@/router/index";
Vue.config.productionTip = false; Vue.config.productionTip = false;
import http from "@/utils/http.js"; import http from "@/utils/http.js";
import "@/assets/app.scss";
Vue.prototype.$http = http; Vue.prototype.$http = http;
import ElementUI from "element-ui"; import ElementUI from "element-ui";
......
...@@ -71,6 +71,10 @@ const router = new Router({ ...@@ -71,6 +71,10 @@ const router = new Router({
path: "/clinicalLog", path: "/clinicalLog",
component: (resolve) => require(["@/views/clinicalLog.vue"], resolve), component: (resolve) => require(["@/views/clinicalLog.vue"], resolve),
}, },
{
path: "/patientinfo",
component: (resolve) => require(["@/views/patientinfo.vue"], resolve),
},
], ],
// mode: 'history' /*hash*/ /*不显示路由中的#*/ // mode: 'history' /*hash*/ /*不显示路由中的#*/
}); });
......
...@@ -469,7 +469,7 @@ export default { ...@@ -469,7 +469,7 @@ export default {
type: "warning", type: "warning",
}); });
} else { } else {
http.post(`/medical/Update/casehisById?PatientId=${this.$route.query.id}`, [this.coreID]) http.post(`/medical/Update/casehisById?PatientId=${this.$route.query.id}&coreid=${this.coreID}`)
.then((data) => { .then((data) => {
Message.success({ Message.success({
message: `${data.message}`, message: `${data.message}`,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment