Commit 92ba81b3 authored by 小费同学阿's avatar 小费同学阿 💬

65938 病历管理,药品已缴费/挂账点击【查看】未跳转(具体详情跳转)

parent 42293f75
......@@ -13,5 +13,11 @@ VUE_APP_TEST_API = 'http://114.67.241.140:9000'
# A端前端地址
VUE_APP_WEB = 'http://localhost:80'
# business微服务地址
VUE_APP_MICRO_BUSINESS = 'http://114.67.241.140:1099'
# finance微服务地址
VUE_APP_MICRO_FINANCE = 'http://114.67.241.140:1098'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
......@@ -15,3 +15,9 @@ VUE_APP_TEST_API = 'http://114.67.241.140:9000'
# A端前端地址
VUE_APP_WEB = 'http://114.67.241.140:80'
# business微服务地址
VUE_APP_MICRO_BUSINESS = 'http://114.67.241.140:1099'
# finance微服务地址
VUE_APP_MICRO_FINANCE = 'http://114.67.241.140:1098'
......@@ -13,3 +13,9 @@ VUE_APP_TEST_API = 'http://47.92.195.144:9000'
# A端前端地址
VUE_APP_WEB = 'http://47.92.195.144:80'
# business微服务地址
VUE_APP_MICRO_BUSINESS = 'http://114.67.241.140:1099'
# finance微服务地址
VUE_APP_MICRO_FINANCE = 'http://114.67.241.140:1098'
......@@ -15,3 +15,9 @@ VUE_APP_TEST_API = 'http://47.92.55.88:9000'
# A端前端地址
VUE_APP_WEB = 'http://47.92.55.88:80'
# business微服务地址
VUE_APP_MICRO_BUSINESS = 'http://114.67.241.140:1099'
# finance微服务地址
VUE_APP_MICRO_FINANCE = 'http://114.67.241.140:1098'
......@@ -846,7 +846,7 @@ export default {
hpshow: ''
}
},
mounted() {
mounted: function() {
this.$route.meta.title = '2222'
},
created() {
......
......@@ -596,11 +596,13 @@ color: #333333;"
min-width="180"
show-overflow-tooltip
>
<!-- :disabled="!checkPermi(['finance:drug:list'])"-->
<template slot-scope="scope">
<el-button
:disabled="!checkPermi(['finance:drug:list'])"
v-if="!isEdit || (scope.row.paymentStatus !== '0' && !scope.row.isAdd)"
icon="el-icon-document"
:disabled="!checkPermi(['finance:drug:list'])"
plain
size="mini"
style="width: 50px; border-radius: 6px 6px 6px 6px;border: 1px solid rgb(95,181,75);"
......@@ -1696,9 +1698,13 @@ export default {
query: { checkId: row.id }
})
} else if (type === 'treatManageBo') {
const local = process.env.VUE_APP_WEB
window.location.href = `${local}/pet-finance-web/inventory-management/drug-delivery-detail/${row.id}`
} else if (type === 'stockDispenseOutboundList') {
/* 跳转到配药出库详情*/
this.$router.push({
name: 'TreatmentDetail',
query: { treatId: row.id }
name: 'EquipmentAdd',
query: { equipmentId: row.id }
})
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment