|
|
@@ -5,6 +5,7 @@ import { VxeUI } from 'vxe-pc-ui';
|
|
|
import { getCopyCwMethod } from '@/request/api/care.api';
|
|
|
import AddItems from '@/service/addItems.vue';
|
|
|
import HealthEvaluation from '@/service/HealthEvaluation.vue';
|
|
|
+import { CheckCircleOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
submit: [data: any];
|
|
|
@@ -48,7 +49,6 @@ onMounted(async () => {
|
|
|
|
|
|
}
|
|
|
});
|
|
|
-const checked = ref(true);
|
|
|
function addProject(row: any) {
|
|
|
console.log(row, '添加项目');
|
|
|
row.sourceId = row.id;
|
|
|
@@ -119,7 +119,7 @@ function addProject(row: any) {
|
|
|
<vxe-column title="是否可引入" align="center">
|
|
|
<template #default="{ row }">
|
|
|
<span v-if="row.isForCopyCw !== 'Y'" style="color: #f5222d; font-size: 11px">机构没有此项目,请先维护</span>
|
|
|
- <a-checkbox v-else v-model:checked="checked" />
|
|
|
+ <CheckCircleOutlined v-else style="color: #52c41a; font-size: 16px" />
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
<vxe-column field="conditioningProgramDetail" title="操作" align="center">
|