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 @@ + + + + + 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - \ 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 @@ - - - - - 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - - - - 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 @@ - - - - - \ 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 @@ - - - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - 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 @@ - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - \ 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 @@ - - - - - - - \ 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 @@ - - - - - \ 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 @@ + + + + + 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 @@ + + + + +