diff --git a/project/sass/apps/AppHealthReport/components/Detail.vue b/project/sass/apps/AppHealthReport/components/Detail.vue index 6f73a123..d61863b6 100644 --- a/project/sass/apps/AppHealthReport/components/Detail.vue +++ b/project/sass/apps/AppHealthReport/components/Detail.vue @@ -204,7 +204,7 @@ methods: { getInfo (id) { - this.instance.post(`/app/appepidemicreportmember/queryDetailById?id=${id}`).then(res => { + this.instance.post(`/app/appepidemicreportmember/queryDetailById?memberId=${id}`).then(res => { if (res.code === 0) { this.info = res.data this.currIndex = 0 diff --git a/project/sass/apps/AppHealthReport/components/List.vue b/project/sass/apps/AppHealthReport/components/List.vue index b9760aad..17831870 100644 --- a/project/sass/apps/AppHealthReport/components/List.vue +++ b/project/sass/apps/AppHealthReport/components/List.vue @@ -57,14 +57,11 @@ name: '' }, colConfigs: [ - { prop: 'name', label: '姓名' }, - { prop: 'phone', align: 'center', label: '手机号码' }, - { prop: 'areaName', align: 'center', label: '所属地区', width: '200px' }, - { prop: 'reportTime', align: 'center', label: '上报时间', width: '200px' }, - { prop: 'healthCode', align: 'center', label: '健康码', formart: v => v ? this.dict.getLabel('epidemicHealthCode', v) : '-' }, - { prop: 'checkTime', align: 'center', label: '核酸日期', formart: v => v ? v.split(' ')[0] : '-' }, - { prop: 'checkResult', align: 'center', label: '检测结果', formart: v => v ? this.dict.getLabel('epidemicRecentTestResult', v) : '-' }, - { prop: 'today', align: 'center', label: '今日上报', formart: v => v === '0' ? '未上报' : '已上报' }, + { prop: 'name', label: '员工姓名' }, + { prop: 'girdNames', align: 'center', label: '网格' }, + { prop: 'clockCount', align: 'center', label: '打卡次数' }, + { prop: 'lastReportTime', align: 'center', label: '最近打卡时间' }, + { prop: 'status', align: 'center', label: '健康状态', formart: v => v === '0' ? '异常' : '正常' } ], tableData: [], total: 0, diff --git a/project/sass/apps/AppSpecialAdjustment/AppSpecialAdjustment.vue b/project/sass/apps/AppSpecialAdjustment/AppSpecialAdjustment.vue new file mode 100644 index 00000000..c69d922f --- /dev/null +++ b/project/sass/apps/AppSpecialAdjustment/AppSpecialAdjustment.vue @@ -0,0 +1,70 @@ + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialAdjustment/components/Add.vue b/project/sass/apps/AppSpecialAdjustment/components/Add.vue new file mode 100644 index 00000000..ef5f1196 --- /dev/null +++ b/project/sass/apps/AppSpecialAdjustment/components/Add.vue @@ -0,0 +1,406 @@ + + + + + + + + + + + + + + + + + + {{ item.dictName }} + + + + + + 选择网格 + + + + + + + + + + {{ item.dictName }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 取消 + 提交 + + + + + + + diff --git a/project/sass/apps/AppSpecialAdjustment/components/Detail.vue b/project/sass/apps/AppSpecialAdjustment/components/Detail.vue new file mode 100644 index 00000000..2b23e254 --- /dev/null +++ b/project/sass/apps/AppSpecialAdjustment/components/Detail.vue @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ item.name.substr(item.name.length - 2) }} + {{ item.name }} + + {{ item.visitTime }} + + {{ item.title }} + {{ item.description }} + + + + + 现实状态: + {{ dict.getLabel('visitCondolenceReality', item.reality) }} + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialAdjustment/components/List.vue b/project/sass/apps/AppSpecialAdjustment/components/List.vue new file mode 100644 index 00000000..5ce9dac1 --- /dev/null +++ b/project/sass/apps/AppSpecialAdjustment/components/List.vue @@ -0,0 +1,158 @@ + + + + + + + + 添加 + + + + + + + + + + + + 详情 + 编辑 + 删除 + + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialDisabled/AppSpecialDisabled.vue b/project/sass/apps/AppSpecialDisabled/AppSpecialDisabled.vue new file mode 100644 index 00000000..ba82b653 --- /dev/null +++ b/project/sass/apps/AppSpecialDisabled/AppSpecialDisabled.vue @@ -0,0 +1,62 @@ + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialDisabled/components/Detail.vue b/project/sass/apps/AppSpecialDisabled/components/Detail.vue new file mode 100644 index 00000000..68015423 --- /dev/null +++ b/project/sass/apps/AppSpecialDisabled/components/Detail.vue @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + 详情 + + + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialDisabled/components/List.vue b/project/sass/apps/AppSpecialDisabled/components/List.vue new file mode 100644 index 00000000..430d6260 --- /dev/null +++ b/project/sass/apps/AppSpecialDisabled/components/List.vue @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + 详情 + 删除 + + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialDrug/AppSpecialDrug.vue b/project/sass/apps/AppSpecialDrug/AppSpecialDrug.vue new file mode 100644 index 00000000..c1da935a --- /dev/null +++ b/project/sass/apps/AppSpecialDrug/AppSpecialDrug.vue @@ -0,0 +1,70 @@ + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialDrug/components/Add.vue b/project/sass/apps/AppSpecialDrug/components/Add.vue new file mode 100644 index 00000000..a434028f --- /dev/null +++ b/project/sass/apps/AppSpecialDrug/components/Add.vue @@ -0,0 +1,414 @@ + + + + + + + + + + + + + + + + + + {{ item.dictName }} + + + + + + 选择网格 + + + + + + + + + + {{ item.dictName }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 取消 + 提交 + + + + + + + diff --git a/project/sass/apps/AppSpecialDrug/components/Detail.vue b/project/sass/apps/AppSpecialDrug/components/Detail.vue new file mode 100644 index 00000000..88cddc45 --- /dev/null +++ b/project/sass/apps/AppSpecialDrug/components/Detail.vue @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ item.name.substr(item.name.length - 2) }} + {{ item.name }} + + {{ item.visitTime }} + + {{ item.title }} + {{ item.description }} + + + + + 现实状态: + {{ dict.getLabel('visitCondolenceReality', item.reality) }} + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialDrug/components/List.vue b/project/sass/apps/AppSpecialDrug/components/List.vue new file mode 100644 index 00000000..4894de01 --- /dev/null +++ b/project/sass/apps/AppSpecialDrug/components/List.vue @@ -0,0 +1,158 @@ + + + + + + + + 添加 + + + + + + + + + + + + 详情 + 编辑 + 删除 + + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialMental/AppSpecialMental.vue b/project/sass/apps/AppSpecialMental/AppSpecialMental.vue new file mode 100644 index 00000000..ea0951f0 --- /dev/null +++ b/project/sass/apps/AppSpecialMental/AppSpecialMental.vue @@ -0,0 +1,62 @@ + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialMental/components/Detail.vue b/project/sass/apps/AppSpecialMental/components/Detail.vue new file mode 100644 index 00000000..68015423 --- /dev/null +++ b/project/sass/apps/AppSpecialMental/components/Detail.vue @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + 详情 + + + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialMental/components/List.vue b/project/sass/apps/AppSpecialMental/components/List.vue new file mode 100644 index 00000000..e51ef8d8 --- /dev/null +++ b/project/sass/apps/AppSpecialMental/components/List.vue @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + 详情 + 删除 + + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialPrison/AppSpecialPrison.vue b/project/sass/apps/AppSpecialPrison/AppSpecialPrison.vue new file mode 100644 index 00000000..6cf26f92 --- /dev/null +++ b/project/sass/apps/AppSpecialPrison/AppSpecialPrison.vue @@ -0,0 +1,70 @@ + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialPrison/components/Add.vue b/project/sass/apps/AppSpecialPrison/components/Add.vue new file mode 100644 index 00000000..abc02063 --- /dev/null +++ b/project/sass/apps/AppSpecialPrison/components/Add.vue @@ -0,0 +1,426 @@ + + + + + + + + + + + + + + + + + + {{ item.dictName }} + + + + + + 选择网格 + + + + + + + + + + {{ item.dictName }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 取消 + 提交 + + + + + + + diff --git a/project/sass/apps/AppSpecialPrison/components/Detail.vue b/project/sass/apps/AppSpecialPrison/components/Detail.vue new file mode 100644 index 00000000..af10ca47 --- /dev/null +++ b/project/sass/apps/AppSpecialPrison/components/Detail.vue @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ item.name.substr(item.name.length - 2) }} + {{ item.name }} + + {{ item.visitTime }} + + {{ item.title }} + {{ item.description }} + + + + + 现实状态: + {{ dict.getLabel('visitCondolenceReality', item.reality) }} + + + + + + + + + + + diff --git a/project/sass/apps/AppSpecialPrison/components/List.vue b/project/sass/apps/AppSpecialPrison/components/List.vue new file mode 100644 index 00000000..09f1c63b --- /dev/null +++ b/project/sass/apps/AppSpecialPrison/components/List.vue @@ -0,0 +1,157 @@ + + + + + + + + 添加 + + + + + + + + + + + + 详情 + 编辑 + 删除 + + + + + + + + + + + +
{{ item.description }}