From e68fb8bd6cf6d11b4efebd8682600bd654b6540f Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Thu, 12 Dec 2024 17:36:47 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=8C=85=E5=8F=B0=E9=A2=84=E7=BA=A6?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=EF=BC=8CH5=E9=A1=B5=E9=9D=A2=EF=BC=8C?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/health/activity.js | 44 - src/api/health/doctorRecord.js | 44 - src/api/health/healthRecord.js | 44 - src/api/health/heightWeightRecord.js | 44 - src/api/health/marRecord.js | 44 - src/api/health/medicineBasic.js | 44 - src/api/health/medicineStock.js | 44 - src/api/health/medicineStockIn.js | 53 -- src/api/health/person.js | 44 - src/api/health/processRecord.js | 44 - src/api/health/statisticAnalysis.js | 17 - src/api/health/temperatureRecord.js | 44 - src/api/imaotai/iitem.js | 52 ++ src/api/imaotai/ilog.js | 44 + src/api/imaotai/ishop.js | 78 ++ src/api/imaotai/iuser.js | 88 ++ .../my-selectCheckbox/my-selectCheckbox.vue | 760 ++++++++++++++++++ src/config.js | 2 +- src/pages.json | 225 ++---- src/pages/health/activity/addEdit.vue | 266 ------ src/pages/health/doctorRecord/addEdit.vue | 297 ------- src/pages/health/doctorRecord/list.vue | 467 ----------- src/pages/health/healthRecord/addEdit.vue | 390 --------- src/pages/health/healthRecord/list.vue | 516 ------------ .../health/heightWeightRecord/addEdit.vue | 217 ----- src/pages/health/heightWeightRecord/list.vue | 432 ---------- src/pages/health/homepage/index.vue | 137 ---- src/pages/health/index.vue | 138 ---- src/pages/health/marRecord/addEdit.vue | 489 ----------- src/pages/health/marRecord/list.vue | 515 ------------ src/pages/health/medicineBasic/addEdit.vue | 524 ------------ src/pages/health/medicineBasic/details.vue | 140 ---- src/pages/health/medicineBasic/list.vue | 487 ----------- src/pages/health/medicineStockIn/addEdit.vue | 517 ------------ src/pages/health/medicineStockIn/details.vue | 117 --- src/pages/health/medicineStockIn/list.vue | 522 ------------ src/pages/health/person/addEdit.vue | 233 ------ src/pages/health/processRecord/addEdit.vue | 258 ------ src/pages/health/processRecord/list.vue | 447 ---------- src/pages/health/statistic/index.vue | 114 --- .../health/temperatureRecord/addEdit.vue | 264 ------ src/pages/health/temperatureRecord/list.vue | 443 ---------- src/pages/imaotai/iitem/list.vue | 289 +++++++ .../{health/person => imaotai/ilog}/list.vue | 97 +-- .../list.vue => imaotai/ilog/listInner.vue} | 153 ++-- .../activity => imaotai/ishop}/list.vue | 99 +-- src/pages/imaotai/iuser/add.vue | 459 +++++++++++ src/pages/imaotai/iuser/edit.vue | 476 +++++++++++ src/pages/imaotai/iuser/list.vue | 351 ++++++++ src/pages/imaotai/iuser/listInner.vue | 350 ++++++++ src/pages/imaotai/iuser/token.vue | 184 +++++ 51 files changed, 3319 insertions(+), 8828 deletions(-) delete mode 100644 src/api/health/activity.js delete mode 100644 src/api/health/doctorRecord.js delete mode 100644 src/api/health/healthRecord.js delete mode 100644 src/api/health/heightWeightRecord.js delete mode 100644 src/api/health/marRecord.js delete mode 100644 src/api/health/medicineBasic.js delete mode 100644 src/api/health/medicineStock.js delete mode 100644 src/api/health/medicineStockIn.js delete mode 100644 src/api/health/person.js delete mode 100644 src/api/health/processRecord.js delete mode 100644 src/api/health/statisticAnalysis.js delete mode 100644 src/api/health/temperatureRecord.js create mode 100644 src/api/imaotai/iitem.js create mode 100644 src/api/imaotai/ilog.js create mode 100644 src/api/imaotai/ishop.js create mode 100644 src/api/imaotai/iuser.js create mode 100644 src/components/my-selectCheckbox/my-selectCheckbox.vue delete mode 100644 src/pages/health/activity/addEdit.vue delete mode 100644 src/pages/health/doctorRecord/addEdit.vue delete mode 100644 src/pages/health/doctorRecord/list.vue delete mode 100644 src/pages/health/healthRecord/addEdit.vue delete mode 100644 src/pages/health/healthRecord/list.vue delete mode 100644 src/pages/health/heightWeightRecord/addEdit.vue delete mode 100644 src/pages/health/heightWeightRecord/list.vue delete mode 100644 src/pages/health/homepage/index.vue delete mode 100644 src/pages/health/index.vue delete mode 100644 src/pages/health/marRecord/addEdit.vue delete mode 100644 src/pages/health/marRecord/list.vue delete mode 100644 src/pages/health/medicineBasic/addEdit.vue delete mode 100644 src/pages/health/medicineBasic/details.vue delete mode 100644 src/pages/health/medicineBasic/list.vue delete mode 100644 src/pages/health/medicineStockIn/addEdit.vue delete mode 100644 src/pages/health/medicineStockIn/details.vue delete mode 100644 src/pages/health/medicineStockIn/list.vue delete mode 100644 src/pages/health/person/addEdit.vue delete mode 100644 src/pages/health/processRecord/addEdit.vue delete mode 100644 src/pages/health/processRecord/list.vue delete mode 100644 src/pages/health/statistic/index.vue delete mode 100644 src/pages/health/temperatureRecord/addEdit.vue delete mode 100644 src/pages/health/temperatureRecord/list.vue create mode 100644 src/pages/imaotai/iitem/list.vue rename src/pages/{health/person => imaotai/ilog}/list.vue (70%) rename src/pages/{health/medicineStock/list.vue => imaotai/ilog/listInner.vue} (62%) rename src/pages/{health/activity => imaotai/ishop}/list.vue (64%) create mode 100644 src/pages/imaotai/iuser/add.vue create mode 100644 src/pages/imaotai/iuser/edit.vue create mode 100644 src/pages/imaotai/iuser/list.vue create mode 100644 src/pages/imaotai/iuser/listInner.vue create mode 100644 src/pages/imaotai/iuser/token.vue 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/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 2b39859..0000000 --- a/src/api/health/statisticAnalysis.js +++ /dev/null @@ -1,17 +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 - }) -} 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/api/imaotai/iitem.js b/src/api/imaotai/iitem.js new file mode 100644 index 0000000..bc2d9fe --- /dev/null +++ b/src/api/imaotai/iitem.js @@ -0,0 +1,52 @@ +import request from '@/utils/request' + +// 查询预约项目列表 +export function listIitem(query) { + return request({ + url: '/investprod/iitem/list', + method: 'get', + params: query + }) +} + +// 查询预约项目详细 +export function getIitem(itemId) { + return request({ + url: '/investprod/iitem/' + itemId, + method: 'get' + }) +} + +// 新增预约项目 +export function addIitem(data) { + return request({ + url: '/investprod/iitem', + method: 'post', + data + }) +} + +// 修改预约项目 +export function updateIitem(data) { + return request({ + url: '/investprod/iitem', + method: 'put', + data + }) +} + +// 删除预约项目 +export function delIitem(itemId) { + return request({ + url: '/investprod/iitem/' + itemId, + method: 'delete' + }) +} + +// 刷新i茅台预约商品列表 +export function refreshItem(itemId) { + return request({ + url: '/investprod/iitem/refresh', + method: 'get' + }) +} diff --git a/src/api/imaotai/ilog.js b/src/api/imaotai/ilog.js new file mode 100644 index 0000000..6614054 --- /dev/null +++ b/src/api/imaotai/ilog.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询操作日志列表 +export function listIlog(query) { + return request({ + url: '/investprod/ilog/list', + method: 'get', + params: query + }) +} + +// 查询操作日志详细 +export function getIlog(logId) { + return request({ + url: '/investprod/ilog/' + logId, + method: 'get' + }) +} + +// 新增操作日志 +export function addIlog(data) { + return request({ + url: '/investprod/ilog', + method: 'post', + data + }) +} + +// 修改操作日志 +export function updateIlog(data) { + return request({ + url: '/investprod/ilog', + method: 'put', + data + }) +} + +// 删除操作日志 +export function delIlog(logId) { + return request({ + url: '/investprod/ilog/' + logId, + method: 'delete' + }) +} diff --git a/src/api/imaotai/ishop.js b/src/api/imaotai/ishop.js new file mode 100644 index 0000000..b4db90d --- /dev/null +++ b/src/api/imaotai/ishop.js @@ -0,0 +1,78 @@ +import request from '@/utils/request' + +// 查询门店列表列表 +export function listIshop(query) { + return request({ + url: '/investprod/ishop/list', + method: 'get', + params: query + }) +} + +// 查询门店列表详细 +export function getIshop(shopId) { + return request({ + url: '/investprod/ishop/' + shopId, + method: 'get' + }) +} + +// 新增门店列表 +export function addIshop(data) { + return request({ + url: '/investprod/ishop', + method: 'post', + data + }) +} + +// 修改门店列表 +export function updateIshop(data) { + return request({ + url: '/investprod/ishop', + method: 'put', + data + }) +} + +// 删除门店列表 +export function delIshop(shopId) { + return request({ + url: '/investprod/ishop/' + shopId, + method: 'delete' + }) +} +// i茅台商品 +export function refreshShop() { + return request({ + url: '/investprod/ishop/refresh', + method: 'get' + }) +} + +// 查询省份列表 +export function listProvince(query) { + return request({ + url: '/investprod/ishop/provinceList', + method: 'get', + params: query + }) +} + +// 查询城市列表 +export function listCity(query) { + return request({ + url: '/investprod/ishop/cityList', + method: 'get', + params: query + }) +} + +// 查询区域列表列表 +export function listDistrict(query) { + return request({ + url: '/investprod/ishop/districtList', + method: 'get', + params: query + }) +} diff --git a/src/api/imaotai/iuser.js b/src/api/imaotai/iuser.js new file mode 100644 index 0000000..45c5047 --- /dev/null +++ b/src/api/imaotai/iuser.js @@ -0,0 +1,88 @@ +import request from '@/utils/request' + +// 查询用户管理列表 +export function listIuser(query) { + return request({ + url: '/investprod/iuser/list', + method: 'get', + params: query + }) +} + +// 查询用户管理详细 +export function getIuser(mobile) { + return request({ + url: '/investprod/iuser/' + mobile, + method: 'get' + }) +} + +// 新增用户管理 +export function addIuser(data) { + return request({ + url: '/investprod/iuser', + method: 'post', + data + }) +} + +// 修改用户管理 +export function updateIuser(data) { + return request({ + url: '/investprod/iuser', + method: 'put', + data + }) +} + +// 删除用户管理 +export function delIuser(mobile) { + return request({ + url: '/investprod/iuser/' + mobile, + method: 'delete' + }) +} + +// reservation +export function reservation(mobile) { + return request({ + url: '/investprod/iuser/reservation', + method: 'get', + params: { mobile } + }) +} +//travelReward +export function travelReward(mobile) { + return request({ + url: '/investprod/iuser/travelReward', + method: 'get', + params: { mobile } + }) +} + +// 发送验证码 +export function sendCode(mobile, deviceId) { + return request({ + url: '/investprod/iuser/sendCode', + method: 'get', + params: { mobile, deviceId } + }) +} + +// 查询I茅台用户列表 +export function login(mobile, code, deviceId) { + return request({ + url: '/investprod/iuser/login', + method: 'get', + params: { mobile, code, deviceId } + }) +} + +// 新增账号管理 +export function loginIUser(data) { + return request({ + url: '/investprod/iuser/loginIUser', + method: 'post', + data + }) +} diff --git a/src/components/my-selectCheckbox/my-selectCheckbox.vue b/src/components/my-selectCheckbox/my-selectCheckbox.vue new file mode 100644 index 0000000..193d3fe --- /dev/null +++ b/src/components/my-selectCheckbox/my-selectCheckbox.vue @@ -0,0 +1,760 @@ + + + + + \ No newline at end of file diff --git a/src/config.js b/src/config.js index 0a5125b..ff19d72 100644 --- a/src/config.js +++ b/src/config.js @@ -8,7 +8,7 @@ const config = { // 应用信息 appInfo: { // 应用名称 - name: "intc-health-app", + name: "intc-imaotai-app", // 应用版本 version: "1.1.0", // 应用logo diff --git a/src/pages.json b/src/pages.json index 265eb8a..80e6a8d 100644 --- a/src/pages.json +++ b/src/pages.json @@ -18,21 +18,63 @@ } }, { - "path": "pages/health/homepage/index", + "path": "pages/register", "style": { - "navigationBarTitleText": "首页" + "navigationBarTitleText": "平台用户注册" } }, { - "path": "pages/health/index", + "path": "pages/imaotai/iuser/list", "style": { - "navigationBarTitleText": "工作台" + "navigationBarTitleText": "账号管理" + } + }, + { + "path": "pages/imaotai/iuser/listInner", + "style": { + "navigationBarTitleText": "账号管理" + } + }, + { + "path": "pages/imaotai/iuser/add", + "style": { + "navigationBarTitleText": "账号新增" + } + }, + { + "path": "pages/imaotai/iuser/edit", + "style": { + "navigationBarTitleText": "账号修改" + } + }, + { + "path": "pages/imaotai/iuser/token", + "style": { + "navigationBarTitleText": "刷新token" + } + }, + { + "path": "pages/imaotai/ilog/list", + "style": { + "navigationBarTitleText": "预约记录" } }, { - "path": "pages/health/statistic/index", + "path": "pages/imaotai/ilog/listInner", "style": { - "navigationBarTitleText": "统计分析" + "navigationBarTitleText": "预约记录" + } + }, + { + "path": "pages/imaotai/iitem/list", + "style": { + "navigationBarTitleText": "商品" + } + }, + { + "path": "pages/imaotai/ishop/list", + "style": { + "navigationBarTitleText": "门店" } }, { @@ -40,155 +82,6 @@ "style": { "navigationBarTitleText": "我的" } - }, - { - "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/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": "活动记录" - } } ], "subPackages": [ @@ -248,23 +141,29 @@ "backgroundColor": "#ffffff", "list": [ { - "pagePath": "pages/health/homepage/index", - "iconPath": "static/images/tabbar/home.png", - "selectedIconPath": "static/images/tabbar/home_.png", - "text": "首页" - }, - { - "pagePath": "pages/health/index", + "pagePath": "pages/imaotai/iuser/list", "iconPath": "static/images/tabbar/work.png", "selectedIconPath": "static/images/tabbar/work_.png", "text": "账号管理" }, { - "pagePath": "pages/health/statistic/index", + "pagePath": "pages/imaotai/ilog/list", "iconPath": "static/images/tabbar/statistic.png", "selectedIconPath": "static/images/tabbar/statistic_.png", "text": "预约记录" }, + // { + // "pagePath": "pages/imaotai/iitem/list", + // "iconPath": "static/images/tabbar/statistic.png", + // "selectedIconPath": "static/images/tabbar/statistic_.png", + // "text": "商品" + // }, + // { + // "pagePath": "pages/imaotai/ishop/list", + // "iconPath": "static/images/tabbar/statistic.png", + // "selectedIconPath": "static/images/tabbar/statistic_.png", + // "text": "门店" + // }, { "pagePath": "pages/mine", "iconPath": "static/images/tabbar/mine.png", diff --git a/src/pages/health/activity/addEdit.vue b/src/pages/health/activity/addEdit.vue deleted file mode 100644 index aea6c71..0000000 --- a/src/pages/health/activity/addEdit.vue +++ /dev/null @@ -1,266 +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 73fbaac..0000000 --- a/src/pages/health/doctorRecord/addEdit.vue +++ /dev/null @@ -1,297 +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 8e16896..0000000 --- a/src/pages/health/doctorRecord/list.vue +++ /dev/null @@ -1,467 +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 14d5d61..0000000 --- a/src/pages/health/healthRecord/addEdit.vue +++ /dev/null @@ -1,390 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/pages/health/healthRecord/list.vue b/src/pages/health/healthRecord/list.vue deleted file mode 100644 index 29ca07d..0000000 --- a/src/pages/health/healthRecord/list.vue +++ /dev/null @@ -1,516 +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 fa6116d..0000000 --- a/src/pages/health/heightWeightRecord/addEdit.vue +++ /dev/null @@ -1,217 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/pages/health/heightWeightRecord/list.vue b/src/pages/health/heightWeightRecord/list.vue deleted file mode 100644 index 22a44f7..0000000 --- a/src/pages/health/heightWeightRecord/list.vue +++ /dev/null @@ -1,432 +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 ec19c1a..0000000 --- a/src/pages/health/homepage/index.vue +++ /dev/null @@ -1,137 +0,0 @@ - - - - diff --git a/src/pages/health/index.vue b/src/pages/health/index.vue deleted file mode 100644 index 739f9d6..0000000 --- a/src/pages/health/index.vue +++ /dev/null @@ -1,138 +0,0 @@ - - - - - diff --git a/src/pages/health/marRecord/addEdit.vue b/src/pages/health/marRecord/addEdit.vue deleted file mode 100644 index f9e0e2b..0000000 --- a/src/pages/health/marRecord/addEdit.vue +++ /dev/null @@ -1,489 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/pages/health/marRecord/list.vue b/src/pages/health/marRecord/list.vue deleted file mode 100644 index af6a785..0000000 --- a/src/pages/health/marRecord/list.vue +++ /dev/null @@ -1,515 +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 fe78429..0000000 --- a/src/pages/health/medicineBasic/addEdit.vue +++ /dev/null @@ -1,524 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/pages/health/medicineBasic/details.vue b/src/pages/health/medicineBasic/details.vue deleted file mode 100644 index 9051dfc..0000000 --- a/src/pages/health/medicineBasic/details.vue +++ /dev/null @@ -1,140 +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 b57bc93..0000000 --- a/src/pages/health/medicineBasic/list.vue +++ /dev/null @@ -1,487 +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 9ddc9fb..0000000 --- a/src/pages/health/medicineStockIn/addEdit.vue +++ /dev/null @@ -1,517 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/pages/health/medicineStockIn/details.vue b/src/pages/health/medicineStockIn/details.vue deleted file mode 100644 index b382526..0000000 --- a/src/pages/health/medicineStockIn/details.vue +++ /dev/null @@ -1,117 +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 a6f551e..0000000 --- a/src/pages/health/medicineStockIn/list.vue +++ /dev/null @@ -1,522 +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 806e55b..0000000 --- a/src/pages/health/person/addEdit.vue +++ /dev/null @@ -1,233 +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 f6f2061..0000000 --- a/src/pages/health/processRecord/addEdit.vue +++ /dev/null @@ -1,258 +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 8571ea1..0000000 --- a/src/pages/health/processRecord/list.vue +++ /dev/null @@ -1,447 +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 8878e82..0000000 --- a/src/pages/health/statistic/index.vue +++ /dev/null @@ -1,114 +0,0 @@ - - - - - diff --git a/src/pages/health/temperatureRecord/addEdit.vue b/src/pages/health/temperatureRecord/addEdit.vue deleted file mode 100644 index b90e466..0000000 --- a/src/pages/health/temperatureRecord/addEdit.vue +++ /dev/null @@ -1,264 +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 6f693cb..0000000 --- a/src/pages/health/temperatureRecord/list.vue +++ /dev/null @@ -1,443 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/pages/imaotai/iitem/list.vue b/src/pages/imaotai/iitem/list.vue new file mode 100644 index 0000000..5f6345c --- /dev/null +++ b/src/pages/imaotai/iitem/list.vue @@ -0,0 +1,289 @@ + + + + + \ No newline at end of file diff --git a/src/pages/health/person/list.vue b/src/pages/imaotai/ilog/list.vue similarity index 70% rename from src/pages/health/person/list.vue rename to src/pages/imaotai/ilog/list.vue index df70669..3a629ac 100644 --- a/src/pages/health/person/list.vue +++ b/src/pages/imaotai/ilog/list.vue @@ -2,56 +2,42 @@ - - - + - 昵称: - {{ item.nickName }} + 用户: + {{ item.mobile }} 类型: {{ dictStr(item.type,typeList) }} - 生日: - {{ item.birthday }} + 操作状态: + {{ dictStr(item.status,statusList) }} - 年龄: - {{ item.age }} + 操作时间: + {{ item.operTime }} + - 身高(CM): - {{ item.height }} - - - 体重(KG): - {{ item.weight }} - - - 排序: - {{ item.ranking }} - - - 备注: - {{ item.remark }} + 记录内容: + {{ item.logContent }} - 修改 - 删除 - + 删除 + @@ -62,8 +48,8 @@ \ No newline at end of file diff --git a/src/pages/imaotai/iuser/edit.vue b/src/pages/imaotai/iuser/edit.vue new file mode 100644 index 0000000..fc5f4d9 --- /dev/null +++ b/src/pages/imaotai/iuser/edit.vue @@ -0,0 +1,476 @@ + + + + + \ No newline at end of file diff --git a/src/pages/imaotai/iuser/list.vue b/src/pages/imaotai/iuser/list.vue new file mode 100644 index 0000000..7304fee --- /dev/null +++ b/src/pages/imaotai/iuser/list.vue @@ -0,0 +1,351 @@ + + + + \ No newline at end of file diff --git a/src/pages/imaotai/iuser/listInner.vue b/src/pages/imaotai/iuser/listInner.vue new file mode 100644 index 0000000..33d3d2d --- /dev/null +++ b/src/pages/imaotai/iuser/listInner.vue @@ -0,0 +1,350 @@ + + + + + \ No newline at end of file diff --git a/src/pages/imaotai/iuser/token.vue b/src/pages/imaotai/iuser/token.vue new file mode 100644 index 0000000..d959837 --- /dev/null +++ b/src/pages/imaotai/iuser/token.vue @@ -0,0 +1,184 @@ + + + + + \ No newline at end of file