style(flowable): 优化流程相关代码的import顺序和代码结构
This commit is contained in:
@@ -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({
|
||||
|
||||
@@ -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({
|
||||
|
||||
@@ -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: {
|
||||
|
||||
@@ -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({
|
||||
|
||||
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user