Commit cacbc7a9 by wangshuangqing

三个页面样式

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