-
状态:
-
-
-
-
+
+
+
+ 体检单位:
+
+
+
+
+
+ 性别:
+
+
+
+
+
+ 身份证号:
+
+
+
+ 检查状态:
+
+
+
+
+
+
+
+
+ 条码号:
+
+
+
+ 档案号:
+
+
+
+ 姓名:
+
+
+
+ 审核:
+
+
+
+
+
+
+ 上传:
+
+
+
+
+
+
+ 打印:
+
+
+
+
+
@@ -83,38 +90,7 @@ export default {
data() {
return {
dialogVisible: false,
-
- pickerOptions: {
- shortcuts: [
- {
- text: "最近一周",
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit("pick", [start, end]);
- },
- },
- {
- text: "最近一个月",
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- picker.$emit("pick", [start, end]);
- },
- },
- {
- text: "最近三个月",
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
- picker.$emit("pick", [start, end]);
- },
- },
- ],
- },
+
};
},
@@ -170,6 +146,11 @@ export default {
};
diff --git a/src/views/doctorCheck/sumDoctorCheck.vue b/src/views/doctorCheck/sumDoctorCheck.vue
index 3a515ea..0e2f2f2 100644
--- a/src/views/doctorCheck/sumDoctorCheck.vue
+++ b/src/views/doctorCheck/sumDoctorCheck.vue
@@ -11,7 +11,7 @@
(window.pageHeight < 600 ? 340 : window.pageHeight - 260) +
'px;'
">
-
+
diff --git a/src/views/checkStatus/index.vue b/src/views/report/checkStatus.vue
similarity index 50%
rename from src/views/checkStatus/index.vue
rename to src/views/report/checkStatus.vue
index 2801249..9b4daa8 100644
--- a/src/views/checkStatus/index.vue
+++ b/src/views/report/checkStatus.vue
@@ -3,52 +3,79 @@
组合项目检查状态
-
-
-
+
+
+ 体检单位:
+
+
+
+
+
+ 组合项目:
+
+
+
+
+
+ 状态:
+
+
+
+
+
+
+ 查询
+
+
-
+ row-key="id" size="small" highlight-current-row ref="dataList" >
+
+
- {{ dddw(dict.cardType, "id", scope.row.cardTypeId, "displayName") }}
+ {{ dddw(dict.checkCompleteFlag, 'id', scope.row.checkCompleteFlag, 'displayName') }}
-
-
-
+
-
- {{ moment(scope.row.expiryDate).format("yyyy-MM-DD") }}
-
+ {{ scope.row.checkCompleteFlag == 'Y' ? '已收费':'未收费' }}
-
-
-
-
-
+
+
+
+
+
+
- {{ scope.row.cardFlag == '0' ? '否' : '是' }}
+ {{ scope.row.customerOrgParentName ? scope.row.customerOrgParentName : scope.row.customerOrgName }}
-
-
-
+
-
- {{ moment(scope.row.creationTime).format("yyyy-MM-DD") }}
-
+ {{ scope.row.customerOrgParentName ? scope.row.customerOrgName : "" }}
-
-
+
-
- {{ moment(scope.row.lastModificationTime).format("yyyy-MM-DD") }}
+
+ {{ dddw(dict.medicalPackage, "id", scope.row.medicalPackageId, "displayName") }}
+
+
+ {{ dddw(dict.customerOrgGroupAll, "id", scope.row.customerOrgGroupId, "displayName") }}
+
+
+
+ {{ dddw(dict.sex, "id", scope.row.sexId, "displayName") }}
+
+
+
+
+
@@ -58,21 +85,15 @@
import moment from "moment";
import { mapState, mapActions } from "vuex";
import { getapi, postapi, putapi, deletapi } from "@/api/api";
-import { dddw, objCopy, arrayReduce, arrayExistObj } from "@/utlis/proFunc";
+import { dddw, objCopy, arrayReduce, arrayExistObj,tcdate } from "@/utlis/proFunc";
-import Query from './Query.vue'
export default {
components: {
- Query,
+
},
data() {
- return {
- query: {
- dateType:'createDate',
- dateType:'createDate',
- }, //查询条件
- dataList: [], //列表数据
-
+ return {
+ dataList: [], //列表数据
};
},
@@ -82,7 +103,7 @@ export default {
//挂载完成
mounted() {
- this.query();
+ this.btnQuery();
},
computed: {
@@ -90,6 +111,7 @@ export default {
},
methods: {
+ moment,dddw,
//数据初始化
dictInit() {
//性别
@@ -196,25 +218,38 @@ export default {
console.log("dict", this.dict);
},
- query(){
+ //查询
+ btnQuery(){
+ console.log('query');
+ let body = {};
+ postapi('/api',body).then(res =>{
+ if(res.code != -1 ){
+ this.dataList = res.data;
+ }
+ })
},
},
//监听事件
watch: {
//触发查询事件
- "patientRegister.query.times"(newVal, oldVal) {
- if (newVal != oldVal) {
- //alert('触发查询事件')
- this.query();
- }
- },
+ // "patientRegister.query.times"(newVal, oldVal) {
+ // if (newVal != oldVal) {
+ // //alert('触发查询事件')
+ // this.query();
+ // }
+ // },
},
};