Commit f70ebd2c by wangshuangqing

勾选展示当前时间字段

parent 048a0eab
......@@ -2,7 +2,7 @@
* @Author: wsq
* @Date: 2022-04-22 15:20:58
* @LastEditors: wsq
* @LastEditTime: 2023-02-27 15:05:14
* @LastEditTime: 2023-02-27 15:53:26
* @Description:
-->
<template>
......@@ -158,7 +158,19 @@
label="路径名称"
width="120"
/>
<el-table-column
show-overflow-tooltip
property="tickTime"
label="当前时间"
width="90"
>
<template #default="scope">
<span
v-if="scope.row.advice_name == null && scope.row.ischeck == 1"
>{{ transformTime() }}</span
>
</template>
</el-table-column>
<el-table-column
show-overflow-tooltip
property="orderType"
......@@ -507,7 +519,7 @@ import { useRoute, useRouter } from "../utils/useVueRouter";
import { setItem, getItem } from "../utils/auth";
import { Loading } from "element-ui";
import _ from "lodash";
import { transformTimestampnow } from "../utils/formatTime";
export default {
name: "outClinicalpathway",
setup() {
......@@ -522,6 +534,9 @@ export default {
}
const monthlyPlanTable = ref();
const multipleTable = ref();
const transformTime = computed(() => {
return transformTimestampnow;
});
let state = reactive({
//患者信息
topdata: {
......@@ -948,6 +963,7 @@ export default {
gemedicUsePlanoptions,
radiochange,
getmedicalPurposeoptions,
transformTime,
};
},
};
......
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