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

@@ -46,7 +46,7 @@
</template>
<script setup name="AuthRole">
import { getAuthRole, updateAuthRole } from "@/api/system/user copy";
import {getAuthRole, updateAuthRole} from "@/api/system/user copy";
const route = useRoute();
const { proxy } = getCurrentInstance();

View File

@@ -330,8 +330,17 @@
</template>
<script setup name="User">
import { getToken } from "@/utils/auth";
import { changeUserStatus, listUser, resetUserPwd, delUser, getUser, updateUser, addUser, deptTreeSelect } from "@/api/system/user copy";
import {getToken} from "@/utils/auth";
import {
addUser,
changeUserStatus,
delUser,
deptTreeSelect,
getUser,
listUser,
resetUserPwd,
updateUser
} from "@/api/system/user copy";
const router = useRouter();
const { proxy } = getCurrentInstance();

View File

@@ -66,7 +66,7 @@
import userAvatar from "./userAvatar";
import userInfo from "./userInfo";
import resetPwd from "./resetPwd";
import { getUserProfile } from "@/api/system/user copy";
import {getUserProfile} from "@/api/system/user copy";
const activeTab = ref("userinfo");
const state = reactive({

View File

@@ -25,7 +25,7 @@
</template>
<script setup>
import { updateUserPwd } from "@/api/system/user copy";
import {updateUserPwd} from "@/api/system/user copy";
const { proxy } = getCurrentInstance();

View File

@@ -60,8 +60,8 @@
<script setup>
import "vue-cropper/dist/index.css";
import { VueCropper } from "vue-cropper";
import { uploadAvatar } from "@/api/system/user copy";
import {VueCropper} from "vue-cropper";
import {uploadAvatar} from "@/api/system/user copy";
import useUserStore from "@/store/modules/user";
const userStore = useUserStore();

View File

@@ -23,7 +23,7 @@
</template>
<script setup>
import { updateUserProfile } from "@/api/system/user copy";
import {updateUserProfile} from "@/api/system/user copy";
const props = defineProps({
user: {