style(flowable): 优化流程相关代码的import顺序和代码结构
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
// 查询费用定价信息列表
|
||||
export function listDefinition (query) {
|
||||
return request ({
|
||||
|
||||
@@ -16,9 +16,9 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { getMedicineListByMed, getMedicineListByDevice, getMedicineListByActivity } from './api';
|
||||
import { watch } from 'vue';
|
||||
import { throttle } from 'lodash-es';
|
||||
import {getMedicineListByActivity, getMedicineListByDevice, getMedicineListByMed} from './api';
|
||||
import {watch} from 'vue';
|
||||
import {throttle} from 'lodash-es';
|
||||
|
||||
const props = defineProps({
|
||||
searchKey: {
|
||||
|
||||
@@ -529,22 +529,22 @@
|
||||
</template>
|
||||
<script setup>
|
||||
import {
|
||||
listDefinition,
|
||||
initOption,
|
||||
checkActivityApprovalExist,
|
||||
checkDeviceApprovalExist,
|
||||
checkMedApprovalExist,
|
||||
commitChangePriceData,
|
||||
commitExamineChangePriceData,
|
||||
getInitAdjustPriceSwitchState,
|
||||
initOption,
|
||||
listDefinition,
|
||||
searchAllOrgData,
|
||||
searchHealthData,
|
||||
checkMedApprovalExist,
|
||||
checkDeviceApprovalExist,
|
||||
checkActivityApprovalExist,
|
||||
getInitAdjustPriceSwitchState,
|
||||
} from './components/api';
|
||||
import PopoverList from '@/components/OpenHis/popoverList/index.vue';
|
||||
import medicineList from './components/medicineList.vue';
|
||||
import useUserStore from '@/store/modules/user';
|
||||
import { ref, watch } from 'vue';
|
||||
import { da } from 'element-plus/es/locales.mjs';
|
||||
import {ref, watch} from 'vue';
|
||||
|
||||
const activeName = ref('1');
|
||||
const router = useRouter();
|
||||
const showSearch = ref(true);
|
||||
|
||||
Reference in New Issue
Block a user