Commit a6f7ed1b by 唐玉峰

患者详情 页面

parent 19f217ba
......@@ -19,17 +19,17 @@ body,
margin: 0;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
width: 15px;
height: 15px;
}
::-webkit-scrollbar-track {
border-radius: 10px;
border-radius: 8px;
background: #f4f4f4;
width: 10px;
width: 15px;
}
::-webkit-scrollbar-thumb {
background-color: #27aae2;
border: 3px solid transparent;
background-color: rgb(2, 131, 187);
/* border: 3px solid transparent; */
border-radius: 9px;
background-clip: content-box;
}
......
......@@ -13,7 +13,7 @@ import router from "@/router/index";
Vue.config.productionTip = false;
import http from "@/utils/http.js";
import "@/assets/app.scss";
Vue.prototype.$http = http;
import ElementUI from "element-ui";
......
......@@ -71,6 +71,10 @@ const router = new Router({
path: "/clinicalLog",
component: (resolve) => require(["@/views/clinicalLog.vue"], resolve),
},
{
path: "/patientinfo",
component: (resolve) => require(["@/views/patientinfo.vue"], resolve),
},
],
// mode: 'history' /*hash*/ /*不显示路由中的#*/
});
......
......@@ -469,7 +469,7 @@ export default {
type: "warning",
});
} 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) => {
Message.success({
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