diff --git a/src/App.vue b/src/App.vue index 569a43c..27f7878 100644 --- a/src/App.vue +++ b/src/App.vue @@ -14,15 +14,24 @@ this.initConfig() // 检查用户登录状态 //#ifdef H5 - this.checkLogin() + // this.checkLogin() // 临时注释登录检查,用于开发测试 //#endif }, initConfig() { this.globalData.config = config }, checkLogin() { - if (!getToken()) { - this.$tab.reLaunch('/pages/login') + // 获取当前页面路径 + const pages = getCurrentPages() + const currentPage = pages[pages.length - 1] + const currentRoute = currentPage ? currentPage.route : '' + + // 无需登录的页面白名单 + const whiteList = ['pages/index', 'pages/login', 'pages/register'] + + // 如果没有token且不在白名单中,跳转到登录页 + if (!getToken() && !whiteList.includes(currentRoute)) { + this.$tab.reLaunch('/pages/login') } } } diff --git a/src/api/collect/CommemorativeBanknote.js b/src/api/collect/CommemorativeBanknote.js new file mode 100644 index 0000000..8102dca --- /dev/null +++ b/src/api/collect/CommemorativeBanknote.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询纪念钞列表 +export function listCommemorativeBanknote(query) { + return request({ + url: '/collect/CommemorativeBanknote/list', + method: 'get', + params: query + }) +} + +// 查询纪念钞详细 +export function getCommemorativeBanknote(id) { + return request({ + url: '/collect/CommemorativeBanknote/' + id, + method: 'get' + }) +} + +// 新增纪念钞 +export function addCommemorativeBanknote(data) { + return request({ + url: '/collect/CommemorativeBanknote', + method: 'post', + data + }) +} + +// 修改纪念钞 +export function updateCommemorativeBanknote(data) { + return request({ + url: '/collect/CommemorativeBanknote', + method: 'put', + data + }) +} + +// 删除纪念钞 +export function delCommemorativeBanknote(id) { + return request({ + url: '/collect/CommemorativeBanknote/' + id, + method: 'delete' + }) +} diff --git a/src/api/collect/commemorativeCoin.js b/src/api/collect/commemorativeCoin.js new file mode 100644 index 0000000..1a4f164 --- /dev/null +++ b/src/api/collect/commemorativeCoin.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询流通纪念币列表 +export function listCommemorativeCoin(query) { + return request({ + url: '/collect/commemorativeCoin/list', + method: 'get', + params: query + }) +} + +// 查询流通纪念币详细 +export function getCommemorativeCoin(id) { + return request({ + url: '/collect/commemorativeCoin/' + id, + method: 'get' + }) +} + +// 新增流通纪念币 +export function addCommemorativeCoin(data) { + return request({ + url: '/collect/commemorativeCoin', + method: 'post', + data + }) +} + +// 修改流通纪念币 +export function updateCommemorativeCoin(data) { + return request({ + url: '/collect/commemorativeCoin', + method: 'put', + data + }) +} + +// 删除流通纪念币 +export function delCommemorativeCoin(id) { + return request({ + url: '/collect/commemorativeCoin/' + id, + method: 'delete' + }) +} diff --git a/src/api/collect/preciousMetalCoin.js b/src/api/collect/preciousMetalCoin.js new file mode 100644 index 0000000..1045332 --- /dev/null +++ b/src/api/collect/preciousMetalCoin.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询贵金属纪念币列表 +export function listPreciousMetalCoin(query) { + return request({ + url: '/collect/preciousMetalCoin/list', + method: 'get', + params: query + }) +} + +// 查询贵金属纪念币详细 +export function getPreciousMetalCoin(id) { + return request({ + url: '/collect/preciousMetalCoin/' + id, + method: 'get' + }) +} + +// 新增贵金属纪念币 +export function addPreciousMetalCoin(data) { + return request({ + url: '/collect/preciousMetalCoin', + method: 'post', + data + }) +} + +// 修改贵金属纪念币 +export function updatePreciousMetalCoin(data) { + return request({ + url: '/collect/preciousMetalCoin', + method: 'put', + data + }) +} + +// 删除贵金属纪念币 +export function delPreciousMetalCoin(id) { + return request({ + url: '/collect/preciousMetalCoin/' + id, + method: 'delete' + }) +} diff --git a/src/api/health/activity.js b/src/api/health/activity.js deleted file mode 100644 index 00ea5cf..0000000 --- a/src/api/health/activity.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询活动记录列表 -export function listActivity(query) { - return request({ - url: '/health/activity/list', - method: 'get', - params: query - }) -} - -// 查询活动记录详细 -export function getActivity(id) { - return request({ - url: '/health/activity/' + id, - method: 'get' - }) -} - -// 新增活动记录 -export function addActivity(data) { - return request({ - url: '/health/activity', - method: 'post', - data - }) -} - -// 修改活动记录 -export function updateActivity(data) { - return request({ - url: '/health/activity', - method: 'put', - data - }) -} - -// 删除活动记录 -export function delActivity(id) { - return request({ - url: '/health/activity/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/doctorRecord.js b/src/api/health/doctorRecord.js deleted file mode 100644 index 055d389..0000000 --- a/src/api/health/doctorRecord.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询就医记录列表 -export function listDoctorRecord(query) { - return request({ - url: '/health/doctorRecord/list', - method: 'get', - params: query - }) -} - -// 查询就医记录详细 -export function getDoctorRecord(id) { - return request({ - url: '/health/doctorRecord/' + id, - method: 'get' - }) -} - -// 新增就医记录 -export function addDoctorRecord(data) { - return request({ - url: '/health/doctorRecord', - method: 'post', - data - }) -} - -// 修改就医记录 -export function updateDoctorRecord(data) { - return request({ - url: '/health/doctorRecord', - method: 'put', - data - }) -} - -// 删除就医记录 -export function delDoctorRecord(id) { - return request({ - url: '/health/doctorRecord/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/healthRecord.js b/src/api/health/healthRecord.js deleted file mode 100644 index 8997827..0000000 --- a/src/api/health/healthRecord.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询健康档案列表 -export function listHealthRecord(query) { - return request({ - url: '/health/healthRecord/list', - method: 'get', - params: query - }) -} - -// 查询健康档案详细 -export function getHealthRecord(id) { - return request({ - url: '/health/healthRecord/' + id, - method: 'get' - }) -} - -// 新增健康档案 -export function addHealthRecord(data) { - return request({ - url: '/health/healthRecord', - method: 'post', - data - }) -} - -// 修改健康档案 -export function updateHealthRecord(data) { - return request({ - url: '/health/healthRecord', - method: 'put', - data - }) -} - -// 删除健康档案 -export function delHealthRecord(id) { - return request({ - url: '/health/healthRecord/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/heightWeightRecord.js b/src/api/health/heightWeightRecord.js deleted file mode 100644 index 8bf1e83..0000000 --- a/src/api/health/heightWeightRecord.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询身高体重记录列表 -export function listHeightWeightRecord(query) { - return request({ - url: '/health/heightWeightRecord/list', - method: 'get', - params: query - }) -} - -// 查询身高体重记录详细 -export function getHeightWeightRecord(id) { - return request({ - url: '/health/heightWeightRecord/' + id, - method: 'get' - }) -} - -// 新增身高体重记录 -export function addHeightWeightRecord(data) { - return request({ - url: '/health/heightWeightRecord', - method: 'post', - data - }) -} - -// 修改身高体重记录 -export function updateHeightWeightRecord(data) { - return request({ - url: '/health/heightWeightRecord', - method: 'put', - data - }) -} - -// 删除身高体重记录 -export function delHeightWeightRecord(id) { - return request({ - url: '/health/heightWeightRecord/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/marRecord.js b/src/api/health/marRecord.js deleted file mode 100644 index ddb437f..0000000 --- a/src/api/health/marRecord.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询用药记录列表 -export function listMarRecord(query) { - return request({ - url: '/health/marRecord/list', - method: 'get', - params: query - }) -} - -// 查询用药记录详细 -export function getMarRecord(id) { - return request({ - url: '/health/marRecord/' + id, - method: 'get' - }) -} - -// 新增用药记录 -export function addMarRecord(data) { - return request({ - url: '/health/marRecord', - method: 'post', - data - }) -} - -// 修改用药记录 -export function updateMarRecord(data) { - return request({ - url: '/health/marRecord', - method: 'put', - data - }) -} - -// 删除用药记录 -export function delMarRecord(id) { - return request({ - url: '/health/marRecord/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/medicineBasic.js b/src/api/health/medicineBasic.js deleted file mode 100644 index 0e13201..0000000 --- a/src/api/health/medicineBasic.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询药品基础信息列表 -export function listMedicineBasic(query) { - return request({ - url: '/health/medicineBasic/list', - method: 'get', - params: query - }) -} - -// 查询药品基础信息详细 -export function getMedicineBasic(id) { - return request({ - url: '/health/medicineBasic/' + id, - method: 'get' - }) -} - -// 新增药品基础信息 -export function addMedicineBasic(data) { - return request({ - url: '/health/medicineBasic', - method: 'post', - data - }) -} - -// 修改药品基础信息 -export function updateMedicineBasic(data) { - return request({ - url: '/health/medicineBasic', - method: 'put', - data - }) -} - -// 删除药品基础信息 -export function delMedicineBasic(id) { - return request({ - url: '/health/medicineBasic/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/medicineStock.js b/src/api/health/medicineStock.js deleted file mode 100644 index eaff3d0..0000000 --- a/src/api/health/medicineStock.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询药品实时库存列表 -export function listMedicineStock(query) { - return request({ - url: '/health/medicineStock/list', - method: 'get', - params: query - }) -} - -// 查询药品实时库存详细 -export function getMedicineStock(id) { - return request({ - url: '/health/medicineStock/' + id, - method: 'get' - }) -} - -// 新增药品实时库存 -export function addMedicineStock(data) { - return request({ - url: '/health/medicineStock', - method: 'post', - data - }) -} - -// 修改药品实时库存 -export function updateMedicineStock(data) { - return request({ - url: '/health/medicineStock', - method: 'put', - data - }) -} - -// 删除药品实时库存 -export function delMedicineStock(id) { - return request({ - url: '/health/medicineStock/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/medicineStockIn.js b/src/api/health/medicineStockIn.js deleted file mode 100644 index aaa7706..0000000 --- a/src/api/health/medicineStockIn.js +++ /dev/null @@ -1,53 +0,0 @@ -import request from '@/utils/request' - -// 查询药品入库清单列表 -export function listMedicineStockIn(query) { - return request({ - url: '/health/medicineStockIn/list', - method: 'get', - params: query - }) -} - -// 查询药品入库清单详细 -export function getMedicineStockIn(id) { - return request({ - url: '/health/medicineStockIn/' + id, - method: 'get' - }) -} - -// 新增药品入库清单 -export function addMedicineStockIn(data) { - return request({ - url: '/health/medicineStockIn', - method: 'post', - data - }) -} - -// 修改药品入库清单 -export function updateMedicineStockIn(data) { - return request({ - url: '/health/medicineStockIn', - method: 'put', - data - }) -} - -// 删除药品入库清单 -export function delMedicineStockIn(id) { - return request({ - url: '/health/medicineStockIn/' + id, - method: 'delete' - }) -} - -// 查询药品入库清单列表 -export function listMedicineRealtimeStock(query) { - return request({ - url: '/health/medicineStockIn/realTimeList', - method: 'get', - params: query - }) -} diff --git a/src/api/health/milkPowderRecord.js b/src/api/health/milkPowderRecord.js deleted file mode 100644 index c7083b8..0000000 --- a/src/api/health/milkPowderRecord.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询吃奶记录列表 -export function listMilkPowderRecord(query) { - return request({ - url: '/health/milkPowderRecord/list', - method: 'get', - params: query - }) -} - -// 查询吃奶记录详细 -export function getMilkPowderRecord(id) { - return request({ - url: '/health/milkPowderRecord/' + id, - method: 'get' - }) -} - -// 新增吃奶记录 -export function addMilkPowderRecord(data) { - return request({ - url: '/health/milkPowderRecord', - method: 'post', - data - }) -} - -// 修改吃奶记录 -export function updateMilkPowderRecord(data) { - return request({ - url: '/health/milkPowderRecord', - method: 'put', - data - }) -} - -// 删除吃奶记录 -export function delMilkPowderRecord(id) { - return request({ - url: '/health/milkPowderRecord/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/person.js b/src/api/health/person.js deleted file mode 100644 index 3f92fe1..0000000 --- a/src/api/health/person.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询成员管理列表 -export function listPerson(query) { - return request({ - url: '/health/person/list', - method: 'get', - params: query - }) -} - -// 查询成员管理详细 -export function getPerson(id) { - return request({ - url: '/health/person/' + id, - method: 'get' - }) -} - -// 新增成员管理 -export function addPerson(data) { - return request({ - url: '/health/person', - method: 'post', - data - }) -} - -// 修改成员管理 -export function updatePerson(data) { - return request({ - url: '/health/person', - method: 'put', - data - }) -} - -// 删除成员管理 -export function delPerson(id) { - return request({ - url: '/health/person/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/processRecord.js b/src/api/health/processRecord.js deleted file mode 100644 index 3a024d8..0000000 --- a/src/api/health/processRecord.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询档案过程记录列表 -export function listProcessRecord(query) { - return request({ - url: '/health/processRecord/list', - method: 'get', - params: query - }) -} - -// 查询档案过程记录详细 -export function getProcessRecord(id) { - return request({ - url: '/health/processRecord/' + id, - method: 'get' - }) -} - -// 新增档案过程记录 -export function addProcessRecord(data) { - return request({ - url: '/health/processRecord', - method: 'post', - data - }) -} - -// 修改档案过程记录 -export function updateProcessRecord(data) { - return request({ - url: '/health/processRecord', - method: 'put', - data - }) -} - -// 删除档案过程记录 -export function delProcessRecord(id) { - return request({ - url: '/health/processRecord/' + id, - method: 'delete' - }) -} diff --git a/src/api/health/statisticAnalysis.js b/src/api/health/statisticAnalysis.js deleted file mode 100644 index 8552779..0000000 --- a/src/api/health/statisticAnalysis.js +++ /dev/null @@ -1,50 +0,0 @@ -import request from '@/utils/request' - -export function getMarAnalysis(query) { - return request({ - url: '/health/analysis/marAnalysis', - method: 'get', - params: query - }) -} - -export function getTemperatureAnalysis(query) { - return request({ - url: '/health/analysis/temperatureAnalysis', - method: 'get', - params: query - }) -} - - -export function getHealthAnalysis(query) { - return request({ - url: '/health/analysis/healthAnalysis', - method: 'get', - params: query - }) -} - -export function getRecordAnalysis(query) { - return request({ - url: '/health/analysis/recordAnalysis', - method: 'get', - params: query - }) -} - -export function getDoctorAnalysis(query) { - return request({ - url: '/health/analysis/doctorAnalysis', - method: 'get', - params: query - }) -} - -export function getMilkPowderAnalysis(query) { - return request({ - url: '/health/analysis/milkPowderAnalysis', - method: 'get', - params: query - }) -} diff --git a/src/api/health/temperatureRecord.js b/src/api/health/temperatureRecord.js deleted file mode 100644 index 77355b1..0000000 --- a/src/api/health/temperatureRecord.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询体温记录列表 -export function listTemperatureRecord(query) { - return request({ - url: '/health/temperatureRecord/list', - method: 'get', - params: query - }) -} - -// 查询体温记录详细 -export function getTemperatureRecord(id) { - return request({ - url: '/health/temperatureRecord/' + id, - method: 'get' - }) -} - -// 新增体温记录 -export function addTemperatureRecord(data) { - return request({ - url: '/health/temperatureRecord', - method: 'post', - data - }) -} - -// 修改体温记录 -export function updateTemperatureRecord(data) { - return request({ - url: '/health/temperatureRecord', - method: 'put', - data - }) -} - -// 删除体温记录 -export function delTemperatureRecord(id) { - return request({ - url: '/health/temperatureRecord/' + id, - method: 'delete' - }) -} diff --git a/src/pages.json b/src/pages.json index db2c98e..2c383a4 100644 --- a/src/pages.json +++ b/src/pages.json @@ -11,6 +11,27 @@ } }, "pages": [ + { + "path": "pages/index", + "style": { + "navigationBarTitleText": "", + "navigationStyle": "custom" + } + }, + { + "path": "pages/banknote/index", + "style": { + "navigationBarTitleText": "", + "navigationStyle": "custom" + } + }, + { + "path": "pages/metal/index", + "style": { + "navigationBarTitleText": "", + "navigationStyle": "custom" + } + }, { "path": "pages/login", "style": { @@ -36,225 +57,13 @@ "navigationBarTitleText": "浏览文本" } }, - { - "path": "pages/health/homepage/index", - "style": { - "navigationBarTitleText": "", - "navigationStyle": "custom" - } - }, - { - "path": "pages/health/index", - "style": { - "navigationBarTitleText": "", - "navigationStyle": "custom" - } - }, - { - "path": "pages/health/statistic/index", - "style": { - "navigationBarTitleText": "" - } - }, { "path": "pages/mine", "style": { "navigationBarTitleText": "", "navigationStyle": "custom" } - }, - { - "path": "pages/health/doctorRecord/list", - "style": { - "navigationBarTitleText": "就医记录" - } } - , - { - "path": "pages/health/doctorRecord/addEdit", - "style": { - "navigationBarTitleText": "就医记录" - } - }, - { - "path": "pages/health/healthRecord/list", - "style": { - "navigationBarTitleText": "健康档案" - } - } , - { - "path": "pages/health/healthRecord/addEdit", - "style": { - "navigationBarTitleText": "健康档案" - } - }, - { - "path": "pages/health/marRecord/list", - "style": { - "navigationBarTitleText": "用药记录" - } - } - , - { - "path": "pages/health/marRecord/addEdit", - "style": { - "navigationBarTitleText": "用药记录" - } - }, - { - "path": "pages/health/medicineBasic/list", - "style": { - "navigationBarTitleText": "药品基础信息" - } - } - , - { - "path": "pages/health/medicineBasic/details", - "style": { - "navigationBarTitleText": "药品基础信息详情" - } - } - , - { - "path": "pages/health/medicineBasic/addEdit", - "style": { - "navigationBarTitleText": "药品基础信息" - } - }, - { - "path": "pages/health/medicineStockIn/list", - "style": { - "navigationBarTitleText": "药品入库清单" - } - } - , - { - "path": "pages/health/medicineStockIn/details", - "style": { - "navigationBarTitleText": "药品入库清单详情" - } - } - , - { - "path": "pages/health/medicineStockIn/addEdit", - "style": { - "navigationBarTitleText": "药品入库清单" - } - }, { - "path": "pages/health/medicineStock/list", - "style": { - "navigationBarTitleText": "药品实时库存" - } - } - , - { - "path": "pages/health/temperatureRecord/list", - "style": { - "navigationBarTitleText": "体温记录" - } - } - , - { - "path": "pages/health/temperatureRecord/addEdit", - "style": { - "navigationBarTitleText": "体温记录" - } - } , - { - "path": "pages/health/processRecord/list", - "style": { - "navigationBarTitleText": "档案过程记录" - } - } - , - { - "path": "pages/health/processRecord/addEdit", - "style": { - "navigationBarTitleText": "过程记录" - } - }, - { - "path": "pages/health/heightWeightRecord/list", - "style": { - "navigationBarTitleText": "身高体重记录" - } - } - , - { - "path": "pages/health/milkPowderRecord/addEdit", - "style": { - "navigationBarTitleText": "吃奶记录" - } - }, - { - "path": "pages/health/milkPowderRecord/list", - "style": { - "navigationBarTitleText": "吃奶记录" - } - } - , - { - "path": "pages/health/heightWeightRecord/addEdit", - "style": { - "navigationBarTitleText": "身高体重记录" - } - }, - { - "path": "pages/health/person/list", - "style": { - "navigationBarTitleText": "成员管理" - } - } - , - { - "path": "pages/health/person/addEdit", - "style": { - "navigationBarTitleText": "成员管理" - } - }, - { - "path": "pages/health/activity/list", - "style": { - "navigationBarTitleText": "活动记录" - } - } - , - { - "path": "pages/health/activity/addEdit", - "style": { - "navigationBarTitleText": "活动记录" - } - } , - { - "path": "pages/health/statistic/doctorStatistic/index", - "style": { - "navigationBarTitleText": "就医统计" - } - } , - { - "path": "pages/health/statistic/healthStatistic/index", - "style": { - "navigationBarTitleText": "档案统计" - } - } , - { - "path": "pages/health/statistic/marStatistic/index", - "style": { - "navigationBarTitleText": "用药统计" - } - } , - { - "path": "pages/health/statistic/temperatureStatistic/index", - "style": { - "navigationBarTitleText": "体温统计" - } - } , - { - "path": "pages/health/statistic/milkPowderStatistic/index", - "style": { - "navigationBarTitleText": "吃奶量统计" - } - } ], "subPackages": [ { @@ -307,35 +116,30 @@ ], "tabBar": { - "color": "#000000", - "selectedColor": "#000000", + "color": "#999999", + "selectedColor": "#667eea", "borderStyle": "white", "backgroundColor": "#ffffff", "list": [ { - "pagePath": "pages/health/homepage/index", + "pagePath": "pages/index", "iconPath": "static/images/tabbar/home.png", "selectedIconPath": "static/images/tabbar/home_.png", - "text": "首页" + "text": "纪念币" }, { - "pagePath": "pages/health/index", + "pagePath": "pages/banknote/index", "iconPath": "static/images/tabbar/work.png", "selectedIconPath": "static/images/tabbar/work_.png", - "text": "工作台" - }, - // { - // "pagePath": "pages/health/statistic/index", - // "iconPath": "static/images/tabbar/statistic.png", - // "selectedIconPath": "static/images/tabbar/statistic_.png", - // "text": "统计分析" - // }, - { - "pagePath": "pages/mine", - "iconPath": "static/images/tabbar/mine.png", - "selectedIconPath": "static/images/tabbar/mine_.png", - "text": "我的" + "text": "纪念钞" } + // , + // { + // "pagePath": "pages/metal/index", + // "iconPath": "static/images/tabbar/statistic.png", + // "selectedIconPath": "static/images/tabbar/statistic.png", + // "text": "贵金属" + // } ] }, "globalStyle": { diff --git a/src/pages/banknote/index.vue b/src/pages/banknote/index.vue new file mode 100644 index 0000000..75ec3f8 --- /dev/null +++ b/src/pages/banknote/index.vue @@ -0,0 +1,777 @@ + + + + + + + + + + + + + + + + + 重置 + + + + + 筛选 + + + + + + 材质选择 + + + {{ item.dictLabel }} + + + + + + + + 重置 + + + + 确定 + + + + + + + + + + + + + + + + + + {{ item.fullName }} + + + + + + + + 名称 + {{ item.shortName || '--' }} + + + 发行时间 + {{ item.issueDate || '--' }} + + + 面值 + {{ item.faceValue }}元 + + + 发行量 + {{ item.mintage }} + + + + 材质 + {{ getCompositionLabel(item.composition) }} + + + + 发行单位 + {{ item.coinageUnit || '--' }} + + + 发行公告 + {{ item.remark || '--' }} + + + + + + + + + + + + +{{ item.collectFileList.length - 4 }} + + + + + + + + + + + + + + + + + + + diff --git a/src/pages/health/activity/addEdit.vue b/src/pages/health/activity/addEdit.vue deleted file mode 100644 index 7fb5ef2..0000000 --- a/src/pages/health/activity/addEdit.vue +++ /dev/null @@ -1,426 +0,0 @@ - - - - {{ title}} - - - - - - - - - ▼ - - - - - - - - - - - - ▼ - - - - - - ▼ - - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/activity/list.vue b/src/pages/health/activity/list.vue deleted file mode 100644 index 29c5a04..0000000 --- a/src/pages/health/activity/list.vue +++ /dev/null @@ -1,572 +0,0 @@ - - - - - - - - - 新增 - - - - - - - - - - - - - {{ item.place }} - - - - {{ item.exerciseTimeStr || '--' }} - - - {{ item.name }} - - - - - - - 活动类型 - {{ dictStr(item.type,typeList) || '--' }} - - - 总费用 - {{ item.totalCost }} 元 - - - 成员 - {{ item.partner || '--' }} - - - 活动量 - {{ dictStr(item.activityVolume,activityVolumeList) || '--' }} - - - - - 开始时间 - {{ item.startTime || '--' }} - - - 结束时间 - {{ item.endTime || '--' }} - - - 费用明细 - {{ item.costDetail }} - - - 饮食 - {{ item.foods }} - - - 收获 - {{ item.harvest }} - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 复制 - - - - 删除 - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/doctorRecord/addEdit.vue b/src/pages/health/doctorRecord/addEdit.vue deleted file mode 100644 index 7142ca2..0000000 --- a/src/pages/health/doctorRecord/addEdit.vue +++ /dev/null @@ -1,482 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - ▼ - - - - - - - - - ▼ - - - - - - - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/doctorRecord/list.vue b/src/pages/health/doctorRecord/list.vue deleted file mode 100644 index c1a2856..0000000 --- a/src/pages/health/doctorRecord/list.vue +++ /dev/null @@ -1,853 +0,0 @@ - - - - - - - - - - - - - - 新增 - - - - - - - - - - - - 筛选 - - - - - - - - 就诊日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - {{ item.healthRecordName }} - {{ item.hospitalName }} - - - - - - - 就医类型 - {{ dictStr(item.type, typeList) || '--' }} - - - 就诊时间 - {{ item.visitingTime || '--' }} - - - - 科室 - {{ item.departments || '--' }} - - - 大夫 - {{ item.doctor || '--' }} - - - 陪同人 - {{ item.partner || '--' }} - - - 总费用 - {{ item.totalCost || '--' }} 元 - - - 诊断结果 - {{ item.diagnosis }} - - - 处理及医嘱 - {{ item.prescribe }} - - - 费用明细 - {{ item.costDetail }} - - - 备注 - {{ item.remark }} - - - - - - - 修改 - - - - 复制 - - - - 删除 - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/healthRecord/addEdit.vue b/src/pages/health/healthRecord/addEdit.vue deleted file mode 100644 index 9698208..0000000 --- a/src/pages/health/healthRecord/addEdit.vue +++ /dev/null @@ -1,507 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/healthRecord/list.vue b/src/pages/health/healthRecord/list.vue deleted file mode 100644 index 6f9b033..0000000 --- a/src/pages/health/healthRecord/list.vue +++ /dev/null @@ -1,822 +0,0 @@ - - - - - - - - - - - - - 筛选 - - - - 新增 - - - - - - 档案类型 - - {{ item.dictLabel }} - - 发生日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - - - {{ item.name }} - {{ dictStr(item.type, typeList) }} · {{ dictStr(item.state, stateList) }} - - - - - - - - 人员名称 - {{ item.personName || '--' }} - - - 发生时间 - {{ item.occurTime }} - - - 康复时间 - {{ item.rehabilitationTime }} - - - 康复周期 - {{ item.duration }} - - - 发生原因 - {{ dictStr(item.etiology, etiologyList) }} - - - 初期症状 - {{ item.initialSymptoms }} - - - 中期症状 - {{ item.mediumTermSymptoms }} - - - 后期症状 - {{ item.laterStageSymptoms }} - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 删除 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/heightWeightRecord/addEdit.vue b/src/pages/health/heightWeightRecord/addEdit.vue deleted file mode 100644 index 4d86e3a..0000000 --- a/src/pages/health/heightWeightRecord/addEdit.vue +++ /dev/null @@ -1,319 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/heightWeightRecord/list.vue b/src/pages/health/heightWeightRecord/list.vue deleted file mode 100644 index 95c69a2..0000000 --- a/src/pages/health/heightWeightRecord/list.vue +++ /dev/null @@ -1,703 +0,0 @@ - - - - - - - - - - - - - 筛选 - - - - 新增 - - - - - - 测量日期 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{ item.personName }} - {{ item.measureTime }} - - - - {{ item.height }}CM - {{ item.weight }}KG - - - - - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 删除 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/homepage/index.vue b/src/pages/health/homepage/index.vue deleted file mode 100644 index 2d17fe6..0000000 --- a/src/pages/health/homepage/index.vue +++ /dev/null @@ -1,449 +0,0 @@ - - - - - 健康总览 - - - - - - - - - - 成员总数 - {{ personCount }}人 - - - - - - - - 档案数量 - {{ healthRecordCount }}份 - - - - - - - - - - - 活动次数 - {{ activityCount }}次 - - - - - - - - 活动费用 - {{ activityCost }}元 - - - - - - - - - - 就医医院 - {{ hospitalCount }}个 - - - - - - - - 就诊大夫 - {{ doctorTotalCount }}个 - - - - - - - - - - 就医次数 - {{ doctorCount }}次 - - - - - - - - 就医费用 - {{ doctorCost }}元 - - - - - - - - - - - 用药天数 - {{ marDayCount }}天 - - - - - - - - 用药次数 - {{ marCount }}次 - - - - - - - - - - - 用药种类 - {{ medicalTypeCount }}种 - - - - - - - - 测量体温次数 - {{ temperatureTotalCount }}次 - - - - - - - - - - - 发烧天数(>=37℃) - {{ feverDayCount }}天 - - - - - - - - 低烧(36.9~37.5℃) - {{ lowerTempCount }}次 - - - - - - - - - - - 中烧(37.5~38.5℃) - {{ middleTempCount }}次 - - - - - - - - 高烧(>=38.5℃) - {{ higherTempCount }}次 - - - - - - - {{ item.personName + '-健康档案概览' }} - - - - - - - - 档案数量 - {{ item.healthRecordCount }}份 - - - - - - - - 就医医院 - {{ item.hospitalCount }}个 - - - - - - - - - - 就诊大夫 - {{ item.doctorTotalCount }}个 - - - - - - - - 就医次数 - {{ item.doctorCount }}次 - - - - - - - - - - 就医费用 - {{ item.doctorCost }}元 - - - - - - - - 用药天数 - {{ item.marDayCount }}天 - - - - - - - - - - 用药次数 - {{ item.marCount }}次 - - - - - - - - 发烧天数(>=37℃) - {{ item.feverDayCount }}天 - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/index.vue b/src/pages/health/index.vue deleted file mode 100644 index 03418d6..0000000 --- a/src/pages/health/index.vue +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - 健康管理 - - - - - - - - {{ item.text }} - - - - - - - 婴幼儿管理 - - - - - - - - {{ item.text }} - - - - - - - 统计分析 - - - - - - - - {{ item.text }} - - - - - - - - - diff --git a/src/pages/health/marRecord/addEdit.vue b/src/pages/health/marRecord/addEdit.vue deleted file mode 100644 index 4a812c6..0000000 --- a/src/pages/health/marRecord/addEdit.vue +++ /dev/null @@ -1,615 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/marRecord/list.vue b/src/pages/health/marRecord/list.vue deleted file mode 100644 index 0120fbe..0000000 --- a/src/pages/health/marRecord/list.vue +++ /dev/null @@ -1,904 +0,0 @@ - - - - - - - - - - - - - - 新增 - - - - - - - - 筛选 - - - - - - - - 健康档案 - - - - - - 用药类型 - - {{ item.dictLabel }} - - - 用药日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - {{ item.name }} - - - - {{ item.dosage }} {{ dictStr(item.unit, unitList) }} - - - - - - - 人员名称 - {{ item.personName || '--' }} - - - 用药时间 - {{ item.dosingTime || '--' }} - - - 用药类型 - {{ dictStr(item.type, typeList) || '--' }} - - - 药品来源 - {{ dictStr(item.resource, resourceList) || '--' }} - - - 用药地点 - {{ dictStr(item.place, placeList) || '--' }} - - - 健康档案 - {{ item.healthRecordName || '--' }} - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 复制 - - - - 删除 - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/medicineBasic/addEdit.vue b/src/pages/health/medicineBasic/addEdit.vue deleted file mode 100644 index c655f87..0000000 --- a/src/pages/health/medicineBasic/addEdit.vue +++ /dev/null @@ -1,637 +0,0 @@ - - - - {{ title}} - - - - - - - - - - - - - - - - - - - - - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - - ▼ - - - - - - ▼ - - - - - - - ▼ - - - - - - - - - ▼ - - - - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/medicineBasic/details.vue b/src/pages/health/medicineBasic/details.vue deleted file mode 100644 index ed5a20a..0000000 --- a/src/pages/health/medicineBasic/details.vue +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - - - - - {{ detailInfo.name }}-{{ detailInfo.brand }}({{ detailInfo.packaging }}) - - - - - - - - 基本信息 - - - - 药品简称 - {{ detailInfo.shortName || '-' }} - - - 药品编码 - {{ detailInfo.code || '-' }} - - - 药品剂型 - {{ detailInfo.dosageForm || '-' }} - - - 治疗类型 - {{ detailInfo.treatmentType || '-' }} - - - 药品分类 - {{ detailInfo.classification || '-' }} - - - 类别 - {{ detailInfo.category || '-' }} - - - - - - - - 产品信息 - - - - 品牌 - {{ detailInfo.brand || '-' }} - - - 药品包装 - {{ detailInfo.packaging || '-' }} - - - 包装单位 - {{ detailInfo.packageUnit || '-' }} - - - 生产厂家 - {{ detailInfo.manufacturers || '-' }} - - - 是否进口 - {{ detailInfo.isImport || '-' }} - - - 生产地址 - {{ detailInfo.address || '-' }} - - - - - - - - 规格信息 - - - - 规格 - {{ detailInfo.specifications || '-' }} - - - 规格单位 - {{ detailInfo.unit || '-' }} - - - 单个含量 - {{ detailInfo.content || '-' }} - - - 含量单位 - {{ detailInfo.contentUnit || '-' }} - - - - - - - - 功能主治 - - - {{ detailInfo.indications }} - - - - - - - 贮藏 - - - {{ detailInfo.storage }} - - - - - - - 药品成分 - - - {{ detailInfo.ingredients }} - - - - - - - 用法用量 - - - {{ detailInfo.usage }} - - - - - - - 性状 - - - {{ detailInfo.character }} - - - - - - - 不良反应 - - - {{ detailInfo.adverseReaction }} - - - - - - - 备注 - - - {{ detailInfo.remark }} - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/medicineBasic/list.vue b/src/pages/health/medicineBasic/list.vue deleted file mode 100644 index 51d8044..0000000 --- a/src/pages/health/medicineBasic/list.vue +++ /dev/null @@ -1,738 +0,0 @@ - - - - - - - - - 筛选 - - - - 新增 - - - - - 治疗类型 - - {{ item.dictLabel }} - - 录入日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - {{ item.shortName }}-{{ item.brand }}({{ item.packaging }}) - - - - - - - - 药品全称 - {{ item.name || '--' }} - - - 治疗类型 - {{ dictStr(item.treatmentType, typeList) || '--' }} - - - 药品编码 - {{ item.code || '--' }} - - - 药品分类 - {{ dictStr(item.classification, classificationList) || '--' }} - - - 类别 - {{ dictStr(item.category, categoryList) || '--' }} - - - 药品剂型 - {{ dictStr(item.dosageForm, dosageFormList) || '--' }} - - - 生产厂家 - {{ item.manufacturers || '--' }} - - - 录入时间 - {{ item.createTime || '--' }} - - - - - - - - 修改 - - - - 复制 - - - - 删除 - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/medicineStock/list.vue b/src/pages/health/medicineStock/list.vue deleted file mode 100644 index 0540848..0000000 --- a/src/pages/health/medicineStock/list.vue +++ /dev/null @@ -1,358 +0,0 @@ - - - - - - - - - - - - - - - - - - {{ item.medicineName }} - 库存{{ item.leftCount }}{{ dictStr(item.unit, unitList) }} - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/medicineStockIn/addEdit.vue b/src/pages/health/medicineStockIn/addEdit.vue deleted file mode 100644 index cb0cc3a..0000000 --- a/src/pages/health/medicineStockIn/addEdit.vue +++ /dev/null @@ -1,645 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - ▼ - - - - - - - - - - - - - - - ▼ - - - - - - ▼ - - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/medicineStockIn/details.vue b/src/pages/health/medicineStockIn/details.vue deleted file mode 100644 index c6b8f17..0000000 --- a/src/pages/health/medicineStockIn/details.vue +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - - {{ detailInfo.medicineName }} - - - - - - - - 入库信息 - - - - 入库编号 - {{ detailInfo.code || '-' }} - - - 入库数量 - {{ detailInfo.quantity || '-' }} - - - 购买时间 - {{ detailInfo.purchaseDate || '-' }} - - - 使用状态 - {{ detailInfo.state || '-' }} - - - 生产日期 - {{ detailInfo.productionDate || '-' }} - - - 过期日期 - {{ detailInfo.expiringDate || '-' }} - - - - - - - - 规格信息 - - - - 包装单位 - {{ detailInfo.packageUnit || '-' }} - - - 规格总数 - {{ detailInfo.totalCount || '-' }} - - - 规格单位 - {{ detailInfo.unit || '-' }} - - - 已使用数量 - {{ detailInfo.usedCount || '-' }} - - - 剩余数量 - {{ detailInfo.leftCount || '-' }} - - - - - - - - 价格信息 - - - - 药品单价 - {{ detailInfo.purchasePrice || '-' }} - - - 药品总价 - {{ detailInfo.totalPrice || '-' }} - - - 年龄体重 - {{ detailInfo.ageWeight || '-' }} - - - 购买地址 - {{ detailInfo.purchaseAddress || '-' }} - - - - - - - - 医嘱 - - - {{ detailInfo.usage }} - - - - - - - 备注 - - - {{ detailInfo.remark }} - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/medicineStockIn/list.vue b/src/pages/health/medicineStockIn/list.vue deleted file mode 100644 index cf03ef5..0000000 --- a/src/pages/health/medicineStockIn/list.vue +++ /dev/null @@ -1,752 +0,0 @@ - - - - - - - - - 筛选 - - - - 新增 - - - - - 使用状态 - - {{ item.dictLabel }} - - 购买时间 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - {{ item.medicineName }} - 入库{{ item.quantity }}{{ dictStr(item.packageUnit, packageUnitList) }} - - - - - - - - 购买时间 - {{ item.purchaseDate || '--' }} - - - 使用状态 - {{ dictStr(item.state, stateList) || '--' }} - - - 入库编号 - {{ item.code || '--' }} - - - 过期日期 - {{ item.expiringDate || '--' }} - - - 规格总数 - {{ item.totalCount }}{{ dictStr(item.unit, unitList) }} - - - 剩余数量 - {{ item.leftCount }}{{ dictStr(item.unit, unitList) }} - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 复制 - - - - 删除 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/milkPowderRecord/addEdit.vue b/src/pages/health/milkPowderRecord/addEdit.vue deleted file mode 100644 index 50b262d..0000000 --- a/src/pages/health/milkPowderRecord/addEdit.vue +++ /dev/null @@ -1,306 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/milkPowderRecord/list.vue b/src/pages/health/milkPowderRecord/list.vue deleted file mode 100644 index 24f4705..0000000 --- a/src/pages/health/milkPowderRecord/list.vue +++ /dev/null @@ -1,680 +0,0 @@ - - - - - - - - - - - - - 筛选 - - - - 新增 - - - - - 吃奶日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - {{ item.personName }} - {{ item.sucklesTime }} - - - - {{ item.consumption }}毫升 - - - - - - - 奶粉品牌 - {{ item.milkPowderBrand || '--' }} - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 删除 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/person/addEdit.vue b/src/pages/health/person/addEdit.vue deleted file mode 100644 index 4fd8428..0000000 --- a/src/pages/health/person/addEdit.vue +++ /dev/null @@ -1,371 +0,0 @@ - - - - {{ title }} - - - - - - - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/pages/health/person/list.vue b/src/pages/health/person/list.vue deleted file mode 100644 index 017219f..0000000 --- a/src/pages/health/person/list.vue +++ /dev/null @@ -1,447 +0,0 @@ - - - - - - - - - 新增 - - - - - - - - - - - - - {{ item.name }}({{ item.nickName }}) - {{ dictStr(item.sex, sexList) }} · {{ dictStr(item.type, typeList) }} · {{ item.age }} - - - - - - - - 生日 - {{ item.birthday }} - - - 身份证 - {{ item.identityCard }} - - - 身高(CM) - {{ item.height }} - - - 体重(KG) - {{ item.weight }} - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 删除 - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/processRecord/addEdit.vue b/src/pages/health/processRecord/addEdit.vue deleted file mode 100644 index 2b7bfb3..0000000 --- a/src/pages/health/processRecord/addEdit.vue +++ /dev/null @@ -1,388 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/processRecord/list.vue b/src/pages/health/processRecord/list.vue deleted file mode 100644 index 5892bae..0000000 --- a/src/pages/health/processRecord/list.vue +++ /dev/null @@ -1,779 +0,0 @@ - - - - - - - - - - - - - 筛选 - - - - 新增 - - - - - - 健康档案 - - - - - - 记录日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - {{ item.healthRecordName }} - {{ item.recordingTime }} - - - - - - - - - 记录内容 - {{ item.content }} - - - 备注 - {{ item.remark }} - - - - - - - - 修改 - - - - 复制 - - - - 删除 - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/statistic/doctorStatistic/index.vue b/src/pages/health/statistic/doctorStatistic/index.vue deleted file mode 100644 index aa9b87b..0000000 --- a/src/pages/health/statistic/doctorStatistic/index.vue +++ /dev/null @@ -1,1567 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 筛选 - - - - - - - - - - - 就医次数 - {{ doctor.doctorCount }}次 - - - - - - - - 就医费用 - {{ doctor.doctorCost }}元 - - - - - - - - - - 常去医院 - {{ doctor.commonHospital }} - - - - - - - - 常去科室 - {{ doctor.commonDepartments }} - - - - - - - - - 就医统计 - - - - 列表 - - - - 曲线图 - - - - 柱状图 - - - - - - - - - - 就医日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - - - - - - - - - 明细 - - - - 医院 - - - - 科室 - - - - 大夫 - - - - 费用 - - - - - - - - - - - - - - {{ item.hospitalName }} - {{ dictStr(item.type, typeList) }} - - - - 费用{{ item.totalCost }}元 - - - - - - - 就诊人 - {{ item.personName || '--' }} - - - 大夫 - {{ item.doctor || '--' }} - - - 就诊时间 - {{ item.visitingTime || '--' }} - - - 诊断结果 - {{ item.diagnosis || '--' }} - - - 处理及医嘱 - {{ item.prescribe || '--' }} - - - - - - - - - - - - - - - - - - - - {{ item.hospitalName }} - - - - 次数{{ item.count }}次 - - - - - - - - - - - - - - - - - - - {{ item.departments }} - - - - 次数{{ item.count }}次 - - - - - - - - - - - - - - - - - - - {{ item.doctor }} - {{ item.hospitalName }} - - - - 次数{{ item.count }}次 - - - - - - - - - - - - - - - - - - - {{ item.time }} - - - - 费用{{ item.value }}元 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/statistic/healthStatistic/index.vue b/src/pages/health/statistic/healthStatistic/index.vue deleted file mode 100644 index e725b82..0000000 --- a/src/pages/health/statistic/healthStatistic/index.vue +++ /dev/null @@ -1,1366 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 筛选 - - - - - - - - - - - 档案数量 - {{ record.healthRecordCount }}份 - - - - - - - - 平均康复周期 - - {{ record.perDuration ? record.perDuration.split(',')[0] : '0' }} - 天 - {{ record.perDuration ? record.perDuration.split(',')[1] : '0' }} - 小时 - - - - - - - - - - - 就医医院 - {{ record.hospitalCount }}个 - - - - - - - - 就诊大夫 - {{ record.doctorTotalCount }}个 - - - - - - - - - - 就医次数 - {{ record.doctorCount }}次 - - - - - - - - 就医费用 - {{ record.doctorCost }}元 - - - - - - - - - - 用药天数 - {{ record.marDayCount }}天 - - - - - - - - 用药次数 - {{ record.marCount }}次 - - - - - - - - - - 发烧天数 - {{ record.feverDayCount }}天 - - - - - - - - - 档案统计 - - - - 档案明细 - - - - 费用明细 - - - - 曲线图 - - - - 柱状图 - - - - - - - - - - 建档日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{ item.name }} - - - - 费用{{ item.doctorCost }}元 - - - - - - - 发生时间 - {{ item.occurTime || '--' }} - - - 持续时间 - {{ item.duration || '--' }} - - - 过程记录 - {{ item.processCount || 0 }}次 - - - 就医次数 - {{ item.doctorCount || 0 }}次 - - - 用药天数 - {{ item.marDayCount || 0 }}天 - - - 用药次数 - {{ item.marCount || 0 }}次 - - - 发烧天数 - {{ item.feverDayCount || 0 }}天 - - - - - - - - - - - - - - - - - - - - {{ item.time }} - - - - 费用{{ item.value }}元 - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/statistic/index.vue b/src/pages/health/statistic/index.vue deleted file mode 100644 index 47fa66b..0000000 --- a/src/pages/health/statistic/index.vue +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - 统计分析 - - - - - - - - - - - {{ item.text }} - - - - - - - - - - diff --git a/src/pages/health/statistic/marStatistic/index.vue b/src/pages/health/statistic/marStatistic/index.vue deleted file mode 100644 index 5ab2893..0000000 --- a/src/pages/health/statistic/marStatistic/index.vue +++ /dev/null @@ -1,1363 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 筛选 - - - - - - - - - - - 用药天数 - {{ mar.marDays }}天 - - - - - - - - 用药种类 - {{ mar.marCategoryCount }}种 - - - - - - - - - - 用药次数 - {{ mar.marCount }}次 - - - - - - - - {{ mar.top1Name }} - {{ mar.top1 }}次 - - - - - - - - - - {{ mar.top2Name }} - {{ mar.top2 }}次 - - - - - - - - {{ mar.top3Name }} - {{ mar.top3 }}次 - - - - - - - - - - {{ mar.top4Name }} - {{ mar.top4 }}次 - - - - - - - - {{ mar.top5Name }} - {{ mar.top5 }}次 - - - - - - - - - - {{ mar.top6Name }} - {{ mar.top6 }}次 - - - - - - - - {{ mar.top7Name }} - {{ mar.top7 }}次 - - - - - - - - - - {{ mar.top8Name }} - {{ mar.top8 }}次 - - - - - - - - {{ mar.top9Name }} - {{ mar.top9 }}次 - - - - - - - - - - {{ mar.top10Name }} - {{ mar.top10 }}次 - - - - - - - - {{ mar.top11Name }} - {{ mar.top11 }}次 - - - - - - - - - - {{ mar.top12Name }} - {{ mar.top12 }}次 - - - - - - - - {{ mar.top13Name }} - {{ mar.top13 }}次 - - - - - - - - - - {{ mar.top14Name }} - {{ mar.top14 }}次 - - - - - - - - {{ mar.top15Name }} - {{ mar.top15 }}次 - - - - - - - - - - {{ mar.top16Name }} - {{ mar.top16 }}次 - - - - - - - - {{ mar.top17Name }} - {{ mar.top17 }}次 - - - - - - - - - 用药统计 - - - - 列表 - - - - 曲线图 - - - - 柱状图 - - - - - - - - - - 用药日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{ item.medicalName }} - {{ item.useDays || 0 }}天 - - - - - - - - 用药次数 - {{ item.count || 0 }}次 - - - 用药总量 - {{ item.dosage }}{{ item.unit }} - - - - - - - - - - - - - - - - - - - - {{ item.time }} - - - - 次数{{ item.value }}次 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/statistic/milkPowderStatistic/index.vue b/src/pages/health/statistic/milkPowderStatistic/index.vue deleted file mode 100644 index fa386af..0000000 --- a/src/pages/health/statistic/milkPowderStatistic/index.vue +++ /dev/null @@ -1,1122 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - 筛选 - - - - - - - - - - - 今日吃奶次数 - {{ milkPowder.todayCount }}次 - - - - - - - - 今日吃奶量 - {{ milkPowder.todayConsumption }}毫升 - - - - - - - - - - 今日单次平均吃奶量 - {{ milkPowder.todayPerConsumption }}毫升 - - - - - - - - 近7日吃奶量 - {{ milkPowder.sevenDayConsumption }}毫升 - - - - - - - - - - 近7日日平均吃奶量 - {{ milkPowder.sevenDayPerConsumption }}毫升 - - - - - - - - 近1月吃奶量 - {{ milkPowder.oneMonthConsumption }}毫升 - - - - - - - - - - 近3月吃奶量 - {{ milkPowder.threeMonthConsumption }}毫升 - - - - - - - - 近6月吃奶量 - {{ milkPowder.sixMonthConsumption }}毫升 - - - - - - - - - - 近1年吃奶量 - {{ milkPowder.oneYearConsumption }}毫升 - - - - - - - - 总吃奶量 - {{ milkPowder.totalConsumption }}毫升 - - - - - - - - - 吃奶量统计 - - - - 列表 - - - - 曲线图 - - - - 柱状图 - - - - - - - - - - 吃奶日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{ item.time }} - - - - {{ item.value }}ml - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/statistic/temperatureStatistic/index.vue b/src/pages/health/statistic/temperatureStatistic/index.vue deleted file mode 100644 index 0ddf53e..0000000 --- a/src/pages/health/statistic/temperatureStatistic/index.vue +++ /dev/null @@ -1,1246 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 筛选 - - - - - - - - - - - - 发烧天数 - {{ temp.feverDay }}天 - - - - - - - - 最高体温 - {{ temp.maxTemp }}℃ - - - - - - - - - - 最低体温 - {{ temp.minTemp }}℃ - - - - - - - - 平均体温 - {{ temp.averageTemp }}℃ - - - - - - - - - - 正常(低于36.9℃) - {{ temp.normalTempCount }}次 - - - - - - - - 低烧(36.9~37.5℃) - {{ temp.lowerTempCount }}次 - - - - - - - - - - 中烧(37.5~38.5℃) - {{ temp.middleTempCount }}次 - - - - - - - - 高烧(高于38.5℃) - {{ temp.higherTempCount }}次 - - - - - - - - - 体温统计 - - - - 列表 - - - - 曲线图 - - - - 柱状图 - - - - - - - - - - 测量日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - - - - - - - - - - - {{ item.time }} - - - - 测量次数 - {{ item.count }}次 - - - - - 最高体温 - {{ item.max }} ℃ - - - 最低体温 - {{ item.min }} ℃ - - - 平均体温 - {{ item.average }} ℃ - - - - 测量明细 - - - {{ formatMultiLineData(item.detail) || '-' }} - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/temperatureRecord/addEdit.vue b/src/pages/health/temperatureRecord/addEdit.vue deleted file mode 100644 index c06d7f4..0000000 --- a/src/pages/health/temperatureRecord/addEdit.vue +++ /dev/null @@ -1,374 +0,0 @@ - - - - {{ title}} - - - - - - ▼ - - - - - - ▼ - - - - - - ▼ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/health/temperatureRecord/list.vue b/src/pages/health/temperatureRecord/list.vue deleted file mode 100644 index e2425e6..0000000 --- a/src/pages/health/temperatureRecord/list.vue +++ /dev/null @@ -1,813 +0,0 @@ - - - - - - - - - - - - - - 新增 - - - - - - - - - - - - 筛选 - - - - - - - - 测量日期 - - - - - - - - - - - - - - - - - 重置 - - - - 确定 - - - - - - - - - - - - - - - - {{ item.personName }} - {{ item.measureTime }} - - - - {{ item.temperature }}℃ - - - - - - 健康档案 - {{ item.healthRecordName || '--' }} - - - 备注 - {{ item.remark }} - - - - - - - 修改 - - - - 复制 - - - - 删除 - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/pages/index.vue b/src/pages/index.vue new file mode 100644 index 0000000..c28c591 --- /dev/null +++ b/src/pages/index.vue @@ -0,0 +1,818 @@ + + + + + + + + + + + + + + + + + 重置 + + + + + 筛选 + + + + + + 系列选择 + + + {{ item.dictLabel }} + + + + + + + + 重置 + + + + 确定 + + + + + + + + + + + + + + + + + + {{ item.fullName }} + + + + + + + + 名称 + {{ item.shortName || '--' }} + + + 系列 + {{ getSeriesLabel(item.series) }} + + + 发行时间 + {{ item.issueDate || '--' }} + + + 面值 + {{ item.faceValue }}元 + + + 发行量 + {{ item.mintage }} + + + + 材质 + {{ getCompositionLabel(item.composition) }} + + + 形状 + {{ getShapeLabel(item.shape) }} + + + 重量 + {{ item.weight || '--' }} + + + 规格尺寸 + {{ item.dimension || '--' }} + + + 厚度 + {{ item.thickness || '--' }} + + + 序号 + {{ item.setNumber || '--' }} + + + 币齿 + {{ getCoinTeethLabel(item.coinTeeth) }} + + + + + + + + + + +{{ item.collectFileList.length - 4 }} + + + + + + + + + + + + + + + + + + + diff --git a/src/pages/metal/index.vue b/src/pages/metal/index.vue new file mode 100644 index 0000000..045468f --- /dev/null +++ b/src/pages/metal/index.vue @@ -0,0 +1,753 @@ + + + + + + + + + + + + + + + + + 筛选 + + + + + + 系列选择 + + + {{ item.dictLabel }} + + + + + + + + 重置 + + + + 确定 + + + + + + + + + + + + + + + + + + {{ item.fullName }} + + + + + + + + 名称 + {{ item.shortName || '--' }} + + + 系列 + {{ getSeriesLabel(item.series) }} + + + 发行时间 + {{ item.issueDate || '--' }} + + + 面值 + {{ item.faceValue }}元 + + + 发行量 + {{ item.mintage }} + + + + 材质 + {{ getCompositionLabel(item.composition) }} + + + 形状 + {{ getShapeLabel(item.shape) }} + + + 重量 + {{ item.weight || '--' }} + + + 规格尺寸 + {{ item.dimension || '--' }} + + + 厚度 + {{ item.thickness || '--' }} + + + 序号 + {{ item.setNumber || '--' }} + + + 币齿 + {{ getCoinTeethLabel(item.coinTeeth) }} + + + + + + + + + +{{ item.collectFileList.length - 4 }} + + + + + + + + + + + + + + + + + + +