diff --git a/src/views/system/record/record.vue b/src/views/system/record/record.vue
index 43bb443..d41ca15 100644
--- a/src/views/system/record/record.vue
+++ b/src/views/system/record/record.vue
@@ -23,6 +23,7 @@
{{ list.age }}
+
身份证号:{{ list.cardNo }}
患者电话:{{ list.patientPhone }}
出生日期:{{ list.birthDate }}
+
返回
@@ -102,7 +108,7 @@
-->
-
+
@@ -400,7 +406,10 @@
-
+
-
+
{
+ this.$router.push({
+ path: "/task/taskExecuteRecord",
+ });
+ });
+ },
scriptlook(e) {
if (e == null || e == "") {
this.$message.error("暂无话术图");
@@ -721,9 +746,9 @@ export default {
},
info() {
- var obj={
- patientId:this.$route.query.patientId
- }
+ var obj = {
+ patientId: this.$route.query.patientId,
+ };
selectVisitRecord(obj).then((res) => {
this.list = res.data;
});
diff --git a/src/views/system/taskExecuteRecord/index.vue b/src/views/system/taskExecuteRecord/index.vue
index f181c98..b563295 100644
--- a/src/views/system/taskExecuteRecord/index.vue
+++ b/src/views/system/taskExecuteRecord/index.vue
@@ -141,7 +141,7 @@ import { selectAgencyList } from "@/api/manage/selectAgencyList";
import SearchFilter from '../../components/SearchForm.vue'
export default {
- name: "TaskExecuteRecord",
+ name: "taskExecuteRecord",
dicts: ["visit_method"],
components: { SearchFilter },
data() {
@@ -209,11 +209,14 @@ export default {
};
},
mounted() {
- this.getList();
- this.selectAgencyinfo();
+
this.getMaxTableHeight()
this.screenChange()
},
+ created(){
+ this.getList();
+ this.selectAgencyinfo();
+ },
methods: {
updateCPage(index, size) {
this.queryParams.pageNum = index
@@ -330,6 +333,7 @@ export default {
this.$router.push({
path: "/task/record",
query: {
+ pageNum: this.queryParams.pageNum,
path: "/task/taskExecuteRecord",
patientId: row.id,
manageRouteNodeId: row.manageRouteNodeId,