style(flowable): 优化流程相关代码的import顺序和代码结构
This commit is contained in:
@@ -178,7 +178,7 @@
|
||||
</template>
|
||||
|
||||
<script setup name="Config">
|
||||
import { collectionList,editStatus } from "./components/collect.js";
|
||||
import {collectionList, editStatus} from "./components/collect.js";
|
||||
import {formatDateStr} from "@/utils/index.js";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
@@ -222,7 +222,7 @@
|
||||
</template>
|
||||
|
||||
<script setup name="InstrumentDialog">
|
||||
import { editInstrument, addInstrument, deptTreeSelect, locationTreeSelect } from './instrument.js';
|
||||
import {addInstrument, deptTreeSelect, editInstrument} from './instrument.js';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
const title = ref('');
|
||||
|
||||
@@ -332,11 +332,13 @@
|
||||
|
||||
<script setup name="instrument">
|
||||
import {
|
||||
editInstrumentStatus,
|
||||
getInstrumentInit,
|
||||
getInstrumentList,
|
||||
getInstrumentOne, getInstrumentInit, editInstrumentStatus,
|
||||
getInstrumentOne,
|
||||
} from "./components/instrument.js";
|
||||
import instrumentDialog from "./components/instrumentDialog.vue";
|
||||
import { nextTick } from "vue";
|
||||
import {nextTick} from "vue";
|
||||
import {parseTime} from "../../../utils/his.js";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
@@ -268,11 +268,9 @@
|
||||
</template>
|
||||
|
||||
<script setup name="itemList">
|
||||
import {
|
||||
getItemList, getItemDetailList, getInfoList, saveAllConfig
|
||||
} from './components/lisConfig.js';
|
||||
import { ElMessage } from "element-plus";
|
||||
import {saveAll} from "@/views/basicmanage/medicalOrderSet/components/api.js";
|
||||
import {getInfoList, getItemDetailList, getItemList, saveAllConfig} from './components/lisConfig.js';
|
||||
import {ElMessage} from "element-plus";
|
||||
|
||||
const itemList = ref([]);
|
||||
const loading = ref(true);
|
||||
const itemListTotal = ref(0);
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
</template>
|
||||
|
||||
<script setup name="ObservationDialog">
|
||||
import { editObservation, addObservation } from './observation.js';
|
||||
import {addObservation, editObservation} from './observation.js';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
const title = ref('');
|
||||
|
||||
@@ -199,12 +199,13 @@
|
||||
|
||||
<script setup name="observation">
|
||||
import {
|
||||
editObservationStatus,
|
||||
getObservationInit,
|
||||
getObservationList,
|
||||
getObservationOne, getObservationInit, editObservationStatus,
|
||||
getObservationOne,
|
||||
} from "./components/observation.js";
|
||||
import observationDialog from "./components/observationDialog.vue";
|
||||
import { nextTick } from "vue";
|
||||
import {parseTime} from "../../../utils/his.js";
|
||||
import {nextTick} from "vue";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
|
||||
@@ -177,7 +177,7 @@
|
||||
</template>
|
||||
|
||||
<script setup name="Config">
|
||||
import { collectionList,editStatus } from "./components/collect.js";
|
||||
import {collectionList, editStatus} from "./components/collect.js";
|
||||
import {formatDateStr} from "@/utils/index.js";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
@@ -120,7 +120,7 @@
|
||||
</template>
|
||||
|
||||
<script setup name="SpecimenDialog">
|
||||
import { editSpecimen, addSpecimen, deptTreeSelect, locationTreeSelect } from './specimen.js';
|
||||
import {addSpecimen, editSpecimen} from './specimen.js';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
const title = ref('');
|
||||
|
||||
@@ -240,12 +240,9 @@
|
||||
</template>
|
||||
|
||||
<script setup name="specimen">
|
||||
import {
|
||||
getSpecimenList,
|
||||
getSpecimenOne, getSpecimenInit, editSpecimenStatus,
|
||||
} from "./components/specimen.js";
|
||||
import {editSpecimenStatus, getSpecimenInit, getSpecimenList, getSpecimenOne,} from "./components/specimen.js";
|
||||
import specimenDialog from "./components/specimenDialog.vue";
|
||||
import { nextTick } from "vue";
|
||||
import {nextTick} from "vue";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user