Commit cacbc7a9 by wangshuangqing

三个页面样式

parent aff75ccd
...@@ -96,16 +96,8 @@ ...@@ -96,16 +96,8 @@
style="width: 100%" style="width: 100%"
:default-sort="{ prop: 'date', order: 'descending' }" :default-sort="{ prop: 'date', order: 'descending' }"
:row-class-name="tableRowClassName" :row-class-name="tableRowClassName"
:height="'100%'" height="575"
> >
<!-- <el-table-column :label="item.cloumn" :prop="item.name">
<template slot-scope="scope" v-if="item.cloumn == '单价'">
{{ decimal(scope.row.fee) }}
</template>
<template slot-scope="scope" v-if="item.cloumn == '总金额'">
{{ decimal(scope.row.unitprice) }}
</template>
</el-table-column> -->
<el-table-column <el-table-column
label="开单日期" label="开单日期"
prop="iteM_CODE" prop="iteM_CODE"
...@@ -197,6 +189,7 @@ ...@@ -197,6 +189,7 @@
import http from '../utils/http'; import http from '../utils/http';
import { reactive, toRefs, onMounted, nextTick, computed } from '@vue/composition-api'; import { reactive, toRefs, onMounted, nextTick, computed } from '@vue/composition-api';
import { decimal } from '../utils/decimal'; import { decimal } from '../utils/decimal';
import { Message } from 'element-ui';
import { useRoute, useRouter } from '../utils/useVueRouter'; import { useRoute, useRouter } from '../utils/useVueRouter';
import { setItem, getItem } from '../utils/auth'; import { setItem, getItem } from '../utils/auth';
export default { export default {
...@@ -240,7 +233,7 @@ export default { ...@@ -240,7 +233,7 @@ export default {
.post(`/global/post/SetCaseProjectRuleHis?id=${route.value.query.id}`) .post(`/global/post/SetCaseProjectRuleHis?id=${route.value.query.id}`)
.then((data) => { .then((data) => {
// ElMessage.success(data.message); Message.success(data.message);
}) })
.catch((error) => { .catch((error) => {
...@@ -248,7 +241,7 @@ export default { ...@@ -248,7 +241,7 @@ export default {
}; };
//获取患者信息数据 //获取患者信息数据
const getHistoryInfo = () => { const getHistoryInfo = () => {
// var loadingInstance2 = ElLoading.service(loadingOption1);
http http
.post(`/medical/Get/getHisInfo?&code=${route.value.query.id}`, {}) .post(`/medical/Get/getHisInfo?&code=${route.value.query.id}`, {})
...@@ -262,10 +255,10 @@ export default { ...@@ -262,10 +255,10 @@ export default {
toggle(0, state.goods[0]); toggle(0, state.goods[0]);
} }
// loadingInstance2.close();
}) })
.catch((error) => { .catch((error) => {
// loadingInstance2.close();
}); });
}; };
...@@ -370,7 +363,7 @@ export default { ...@@ -370,7 +363,7 @@ export default {
// padding: 20px; // padding: 20px;
// position: relative; // position: relative;
// overflow: hidden; // overflow: hidden;
height: 100%; height: 775px;
background-color: white; background-color: white;
padding: 20px; padding: 20px;
overflow: hidden; overflow: hidden;
...@@ -537,7 +530,7 @@ export default { ...@@ -537,7 +530,7 @@ export default {
&_bottom { &_bottom {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
height: 70%; height: 80%;
&_leftShowBox { &_leftShowBox {
width: 80%; width: 80%;
height: 100%; height: 100%;
...@@ -672,14 +665,14 @@ export default { ...@@ -672,14 +665,14 @@ export default {
// 无数据样式 // 无数据样式
&_box { &_box {
width: 100%; width: 100%;
height: 100%; height: 500px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
&_img { &_img {
width: 200px; width: 100px;
height: 200px; height: 100px;
} }
&_text { &_text {
font-size: 18px; font-size: 18px;
......
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