style(flowable): 优化流程相关代码的import顺序和代码结构

This commit is contained in:
2025-12-30 15:11:32 +08:00
parent 54cde91aac
commit d1670b79a0
2528 changed files with 7710 additions and 10794 deletions

View File

@@ -135,7 +135,8 @@
import patientDetialDialog from './patientDetialDialog.vue';
import transferToBedDialog from './transferToBedDialog.vue';
import transferDialog from './transferDialog.vue';
import { ref, nextTick } from 'vue';
import {ref} from 'vue';
const { proxy } = getCurrentInstance();
const radio = ref(1);
const props = defineProps({

View File

@@ -411,8 +411,8 @@
</template>
<script setup>
import { ref, nextTick } from 'vue';
import { listPatient } from './api';
import {ref} from 'vue';
import {listPatient} from './api';
const { proxy } = getCurrentInstance();
const props = defineProps({

View File

@@ -98,8 +98,9 @@
</template>
<script setup>
import { ref, nextTick } from 'vue';
import { getCaty, saveDepartmentTransfer, saveDischargeHospital } from './api';
import {ref} from 'vue';
import {getCaty, saveDepartmentTransfer, saveDischargeHospital} from './api';
const { proxy } = getCurrentInstance();
const props = defineProps({
open: {

View File

@@ -53,8 +53,8 @@
</template>
<script setup>
import { ref, nextTick } from 'vue';
import { getEmptyBed, saveBedTransfer } from './api';
import {ref} from 'vue';
import {getEmptyBed, saveBedTransfer} from './api';
const { proxy } = getCurrentInstance();
const props = defineProps({

View File

@@ -174,12 +174,13 @@
</div>
</template>
<script setup>
import { ref } from 'vue';
import {ref} from 'vue';
import patientCard from './components/patientCard.vue';
import { listPatient } from './components/api';
import {listPatient} from './components/api';
import patientDetialDialog from './components/patientDetialDialog.vue';
import transferToBedDialog from './components/transferToBedDialog.vue';
import transferDialog from './components/transferDialog.vue';
const data = reactive({
form: {},
queryParams: {