Commit 513dc9e6 authored by 盖献康's avatar 盖献康

Merge remote-tracking branch 'origin/master'

parents 6b5968c2 919fa78b
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
:model="form" :model="form"
:rules="rules" :rules="rules"
label-width="80px" label-width="80px"
label-position="left" label-position="right"
style="padding-left: 13px" style="padding-left: 13px"
> >
<el-form-item label="文章标题" prop="articleTitle" style="padding-top: 32px"> <el-form-item label="文章标题" prop="articleTitle" style="padding-top: 32px">
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<!-- 0-- 文章信息的页面--修改文章信息 --> <!-- 0-- 文章信息的页面--修改文章信息 -->
<div class="base-msg"> <div class="base-msg">
<div style="display:flex;"> <div style="display:flex;">
<el-form ref="form" :model="form" :rules="rules" label-width="80px" label-position="left"> <el-form ref="form" :model="form" :rules="rules" label-width="80px" label-position="right">
<el-form-item label="文章标题" prop="articleTitle"> <el-form-item label="文章标题" prop="articleTitle">
<el-input v-model="form.articleTitle" maxlength="60" placeholder="请输入文章标题" /> <el-input v-model="form.articleTitle" maxlength="60" placeholder="请输入文章标题" />
</el-form-item> </el-form-item>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<!-- 0-- 文章信息的页面--新增文章信息 --> <!-- 0-- 文章信息的页面--新增文章信息 -->
<div class="base-msg"> <div class="base-msg">
<div style="display:flex;"> <div style="display:flex;">
<el-form ref="form" :model="form" :rules="rules" label-width="80px" label-position="left"> <el-form ref="form" :model="form" :rules="rules" label-width="80px" label-position="right">
<el-form-item label="文章标题" prop="articleTitle"> <el-form-item label="文章标题" prop="articleTitle">
<el-input v-model.trim="form.articleTitle" maxlength="60" placeholder="请输入文章标题" /> <el-input v-model.trim="form.articleTitle" maxlength="60" placeholder="请输入文章标题" />
</el-form-item> </el-form-item>
......
...@@ -286,7 +286,7 @@ ...@@ -286,7 +286,7 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="支付金额"> <el-form-item label="支付金额">
<el-input v-model="form.payAmount" :disabled="true" placeholder="-" style=" width: 190px" /> <el-input v-model="form.payAmount" :disabled="true" placeholder="-" style=" width: 90%" />
<span style="margin-left: 5px"></span> <span style="margin-left: 5px"></span>
</el-form-item> </el-form-item>
</el-col> </el-col>
......
...@@ -186,6 +186,7 @@ ...@@ -186,6 +186,7 @@
import { listUseManagement, listUseManagementAll } from '@/api/business/use' import { listUseManagement, listUseManagementAll } from '@/api/business/use'
import { listItemByType } from '@/api/business/item' import { listItemByType } from '@/api/business/item'
import { getInfo } from '@/api/login' import { getInfo } from '@/api/login'
import { parseStrEmpty } from '@/utils/ruoyi'
export default { export default {
name: 'UseManagement', name: 'UseManagement',
...@@ -285,7 +286,7 @@ export default { ...@@ -285,7 +286,7 @@ export default {
methods: { methods: {
// 表格显示病房单价保留两位小数 // 表格显示病房单价保留两位小数
formatPrice(cellValue) { formatPrice(cellValue) {
return cellValue.toFixed(2) + '元' if (parseStrEmpty(cellValue) !== '') { return cellValue.toFixed(2) + '元' }
}, },
// 表单选择框对齐 // 表单选择框对齐
cellClass(row) { cellClass(row) {
...@@ -387,6 +388,7 @@ export default { ...@@ -387,6 +388,7 @@ export default {
listUseManagement(this.queryParams).then(res => { listUseManagement(this.queryParams).then(res => {
this.total = res.total this.total = res.total
this.userList = res.rows this.userList = res.rows
console.log('this.userList', this.userList)
this.loading = false this.loading = false
console.log('列表', res) console.log('列表', res)
}) })
......
...@@ -268,7 +268,7 @@ export default { ...@@ -268,7 +268,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const jobLogIds = this.ids const jobLogIds = this.ids
this.$modal.confirm('是否确认删除调度日志编号为"' + jobLogIds + '"的数据项').then(function() { this.$modal.confirm('是否确认删除调度日志编号为"' + jobLogIds + '"的数据项').then(function() {
return delJobLog(jobLogIds) return delJobLog(jobLogIds)
}).then(() => { }).then(() => {
this.getList() this.getList()
......
...@@ -285,7 +285,7 @@ export default { ...@@ -285,7 +285,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const operIds = row.operId || this.ids const operIds = row.operId || this.ids
this.$modal.confirm('是否确认删除日志编号为"' + operIds + '"的数据项').then(function() { this.$modal.confirm('是否确认删除日志编号为"' + operIds + '"的数据项').then(function() {
return delOperlog(operIds) return delOperlog(operIds)
}).then(() => { }).then(() => {
this.getList() this.getList()
...@@ -294,7 +294,7 @@ export default { ...@@ -294,7 +294,7 @@ export default {
}, },
/** 清空按钮操作 */ /** 清空按钮操作 */
handleClean() { handleClean() {
this.$modal.confirm('是否确认清空所有操作日志数据项').then(function() { this.$modal.confirm('是否确认清空所有操作日志数据项').then(function() {
return cleanOperlog() return cleanOperlog()
}).then(() => { }).then(() => {
this.getList() this.getList()
......
...@@ -200,7 +200,7 @@ export default { ...@@ -200,7 +200,7 @@ export default {
}, },
// 打开加载层 // 打开加载层
openLoading() { openLoading() {
this.$modal.loading('正在加载服务监控数据,请稍候') this.$modal.loading('正在加载服务监控数据,请稍候')
} }
} }
} }
......
...@@ -345,7 +345,7 @@ export default { ...@@ -345,7 +345,7 @@ export default {
moneyFormat, moneyFormat,
highlightRow(scope) { highlightRow(scope) {
if (scope.row.diseaseLevel === '1') { if (scope.row.diseaseLevel === '1') {
return 'height-line' return 'expenditure-highlight-row'
} }
}, },
// 病房下拉框 // 病房下拉框
...@@ -492,14 +492,19 @@ export default { ...@@ -492,14 +492,19 @@ export default {
} }
} }
</script> </script>
<style> <!--<style>-->
.height-line{ <!--/*.height-line{*/-->
background-color: rgba(85, 163, 67, 0.2) !important; <!--/* background: #F6FCF5;*/-->
} <!--//}-->
</style> <!--</style>-->
<style scoped lang="scss"> <style scoped lang="scss">
.app-container{ .app-container{
background-color: #FFFFFF; background-color: #FFFFFF;
} }
.el-table{
.expenditure-highlight-row {
background: #F6FCF5;
}
}
</style> </style>
...@@ -867,7 +867,7 @@ export default { ...@@ -867,7 +867,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const ids = row.id || this.ids const ids = row.id || this.ids
this.$modal.confirm('是否确认删除业务管理-检查管理编号为"' + ids + '"的数据项').then(function() { this.$modal.confirm('是否确认删除业务管理-检查管理编号为"' + ids + '"的数据项').then(function() {
return delManage(ids) return delManage(ids)
}).then(() => { }).then(() => {
this.getList() this.getList()
......
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