style(flowable): 优化流程相关代码的import顺序和代码结构
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
* 操作日志工具
|
||||
* 所有操作必须有操作日志
|
||||
*/
|
||||
import { addOperationLog } from './outpatientNumber'
|
||||
import {addOperationLog} from './outpatientNumber'
|
||||
|
||||
/**
|
||||
* 记录操作日志
|
||||
|
||||
@@ -133,11 +133,11 @@
|
||||
</template>
|
||||
|
||||
<script setup name="outpatientNoManagement">
|
||||
import { ref, reactive, toRefs, onActivated, getCurrentInstance } from 'vue'
|
||||
import {getCurrentInstance, onActivated, reactive, ref, toRefs} from 'vue'
|
||||
import useUserStore from '@/store/modules/user'
|
||||
import { getConfigKey } from '@/api/system/config'
|
||||
import { logQuery, logCreate, logUpdate, logDelete } from './components/operationLog'
|
||||
import { listOutpatientNo, addOutpatientNo, updateOutpatientNo, deleteOutpatientNo } from './components/outpatientNumber'
|
||||
import {getConfigKey} from '@/api/system/config'
|
||||
import {logCreate, logDelete, logQuery, logUpdate} from './components/operationLog'
|
||||
import {addOutpatientNo, deleteOutpatientNo, listOutpatientNo, updateOutpatientNo} from './components/outpatientNumber'
|
||||
|
||||
const { proxy } = getCurrentInstance()
|
||||
const userStore = useUserStore()
|
||||
|
||||
Reference in New Issue
Block a user