返回按钮

This commit is contained in:
shidongli 2024-12-09 17:12:29 +08:00
parent 26936a66ad
commit 7ebc5dd5ca

View File

@ -35,6 +35,14 @@
v-if="patientUploadButtonVisible == 'true'" v-if="patientUploadButtonVisible == 'true'"
>导入</el-button >导入</el-button
> >
<el-button
type="success"
plain
size="mini"
@click="handleback"
v-if="this.$router.currentRoute.path == '/patient/ImportDetails'"
>返回</el-button
>
<Button <Button
v-show="collapsiable" v-show="collapsiable"
type="text" type="text"
@ -605,6 +613,13 @@ export default {
cancelphone() { cancelphone() {
this.openphone = false; this.openphone = false;
}, },
//
handleback(){
this.$router.push({
path: "/patient/patientinfoimport",
});
},
// //
handleUpload() { handleUpload() {
// this.openphone=true; // this.openphone=true;
@ -641,7 +656,7 @@ export default {
this.open = false; this.open = false;
// this.reset(); // this.reset();
}, },
// //
additem(item, index) { additem(item, index) {
this.indexadd = index this.indexadd = index
this.reset(); this.reset();
@ -1063,4 +1078,4 @@ export default {
} }
} }
} }
</style> </style>