Merge branch 'master' of https://gitee.com/yudaocode/yudao-ui-admin-vue3 into feature/bpm

# Conflicts:
#	pnpm-lock.yaml
pull/609/MERGE
YunaiV 2024-12-01 15:21:12 +08:00
commit f2f9391328
10 changed files with 528 additions and 398 deletions

View File

@ -71,7 +71,7 @@
"vue": "3.5.12",
"vue-dompurify-html": "^4.1.4",
"vue-i18n": "9.10.2",
"vue-router": "^4.3.0",
"vue-router": "4.4.5",
"vue-types": "^5.1.1",
"vuedraggable": "^4.1.0",
"web-storage-cache": "^1.1.1",

File diff suppressed because it is too large Load Diff

View File

@ -44,8 +44,7 @@ service.interceptors.request.use(
// 是否需要设置 token
let isToken = (config!.headers || {}).isToken === false
whiteList.some((v) => {
if (config.url) {
config.url.indexOf(v) > -1
if (config.url && config.url.indexOf(v) > -1) {
return (isToken = false)
}
})

View File

@ -51,7 +51,10 @@ import {
ElMenu,
ElMenuItem,
ElFooter,
ElMessage
ElMessage,
ElCollapse,
ElCollapseItem,
ElCard,
// ElFormItem,
// ElOption
} from 'element-plus'
@ -113,7 +116,10 @@ const components = [
UserSelect,
DeptSelect,
ApiSelect,
Editor
Editor,
ElCollapse,
ElCollapseItem,
ElCard,
]
// 参考 http://www.form-create.com/v3/element-ui/auto-import.html 文档

View File

@ -120,7 +120,7 @@ export const generateRoute = (routes: AppCustomRouteRecordRaw[]): AppRouteRecord
data.children = [childrenData]
} else {
// 目录
if (route.children) {
if (route.children?.length) {
data.component = Layout
data.redirect = getRedirect(route.path, route.children)
// 外链

View File

@ -24,7 +24,7 @@ defineOptions({ name: 'CrmProductDetail' })
const route = useRoute()
const message = useMessage()
const id = Number(route.params.id) //
const id = route.params.id //
const loading = ref(true) //
const product = ref<ProductApi.ProductVO>({} as ProductApi.ProductVO) //

View File

@ -27,7 +27,7 @@ defineOptions({ name: 'IoTDeviceDetail' })
const route = useRoute()
const message = useMessage()
const id = Number(route.params.id) //
const id = route.params.id //
const loading = ref(true) //
const product = ref<ProductVO>({} as ProductVO) //
const device = ref<DeviceVO>({} as DeviceVO) //

View File

@ -33,7 +33,7 @@ const { currentRoute } = useRouter()
const route = useRoute()
const message = useMessage()
const id = Number(route.params.id) //
const id = route.params.id //
const loading = ref(true) //
const product = ref<ProductVO>({} as ProductVO) //
const activeTab = ref('info') //

View File

@ -113,7 +113,7 @@ const getUserData = async (id: number) => {
const { currentRoute } = useRouter() //
const { delView } = useTagsViewStore() //
const route = useRoute()
const id = Number(route.params.id)
const id = route.params.id
/* 用户钱包相关信息 */
const WALLET_INIT_DATA = {
balance: 0,

View File

@ -97,7 +97,7 @@
plain
@click="handleExport"
:loading="exportLoading"
v-hasPermi="['system:tenant:export']"
v-hasPermi="['pay:order:export']"
>
<Icon icon="ep:download" class="mr-5px" /> 导出
</el-button>
@ -192,6 +192,7 @@ import { dateFormatter } from '@/utils/formatTime'
import * as OrderApi from '@/api/pay/order'
import OrderDetail from './OrderDetail.vue'
import download from '@/utils/download'
import { getAppList } from '@/api/pay/app'
defineOptions({ name: 'PayOrder' })
@ -263,6 +264,7 @@ const openDetail = (id: number) => {
/** 初始化 **/
onMounted(async () => {
await getList()
appList.value = await getAppList()
})
</script>
<style>