feat: 首页添加url列表
BIN
src/assets/images/16_DH_E_FB_商户管理.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
src/assets/images/admin_panel_settings_100dp_EA3323.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
src/assets/images/aim.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 12 KiB |
BIN
src/assets/images/jifuyun.cn.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
src/assets/images/manage_accounts_100dp_5985E1.png
Normal file
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 14 KiB |
BIN
src/assets/images/store_100dp_0000F5.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
src/assets/images/storefront_100dp_188B5F.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
src/assets/images/support_agent_100dp_EA33F7.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
src/assets/images/供应商查询 (1).png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
src/assets/images/供应商查询.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
src/assets/images/发布闲置.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
src/assets/images/发布闲置2.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
src/assets/images/可视检索.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
src/assets/images/商户2.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
src/assets/images/商户管理 (1).png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
src/assets/images/商户管理.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
src/assets/images/工作台-报价.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/assets/images/我的设备.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/images/批量查件.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/images/收藏关注.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
src/assets/images/数据处理.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/assets/images/智能报价.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/images/服务报价模板.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
src/assets/images/查件订单.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/assets/images/查价-copy.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
src/assets/images/查价.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/assets/images/查价下单.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
src/assets/images/电子书.png
Normal file
After Width: | Height: | Size: 139 KiB |
BIN
src/assets/images/系统管理.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/assets/images/装配体 (1).png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
src/assets/images/装配工单.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
src/assets/images/询价.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
src/assets/images/询价管理.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
src/assets/images/附近服务.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
src/assets/images/预报价单.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
@ -26,3 +26,6 @@ export const status_name = (status,isdel=0) => {
|
||||
}
|
||||
}
|
||||
export const md5 = str => CryptoJS.MD5(str).toString()
|
||||
export const getAssetsImages = (url) => {
|
||||
return new URL(`../assets/images/${url}`, import.meta.url).href
|
||||
};
|
@ -35,7 +35,7 @@ export const adminMenus = [
|
||||
}
|
||||
]
|
||||
},{
|
||||
icon: 'fa fa-yen',
|
||||
icon: 'fa fa-usd',
|
||||
name: '订单处理',
|
||||
id: 'order',
|
||||
children: [
|
||||
|
@ -39,6 +39,16 @@
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-card>
|
||||
<el-card shadow="hover" class="p-4">
|
||||
<div class="grid grid-cols-4 items-center gap-20px">
|
||||
<a v-for="items in menuItems" :key="items.title" :href="items.url" target="_blank">
|
||||
<div class="flex flex-col items-center">
|
||||
<img :src="getAssetsImages(items.icon)" class="w-60px h-60px" alt="">
|
||||
<span class="mt-4 hover:scale-105 hover:text-green-700 hover:font-bold">{{ items.title }}</span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</el-card>
|
||||
<el-card shadow="hover" :style="{height: cardHeight + 'px'}">
|
||||
<template #header>
|
||||
<div class="flex items-center px-4 justify-between">
|
||||
@ -96,6 +106,7 @@
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useUserStore } from '@/store'
|
||||
import { inquiryFilter } from '@/api/inquiry'
|
||||
import { getAssetsImages } from '@/utils'
|
||||
|
||||
const cardHeight = ref(420)
|
||||
const tableHeight = ref(320)
|
||||
@ -127,6 +138,25 @@
|
||||
processing_inquiry.value = []
|
||||
}
|
||||
}
|
||||
|
||||
const menuItems = ref([
|
||||
{'title': '批量查件','icon': '批量查件.png','url': 'https://www.jifuyun.cn/sitex/search','_blank': false},
|
||||
{'title': '查件订单','icon': '查件订单.png','url': 'https://www.jifuyun.cn/ucenterx/preorder','_blank': false},
|
||||
{'title': '可视检索','icon': '可视检索.png','url': 'https://epc.jifuyun.cn','_blank': false},
|
||||
{'title': '收藏关注','icon': '收藏关注.png','url': 'https://www.jifuyun.cn/ucenterx/user_cart','_blank': false},
|
||||
{'title': '发布闲置','icon': '发布闲置.png','url': 'https://www.jifuyun.cn/sitex/upspareparts','_blank': false},
|
||||
{'title': '我的设备','icon': '我的设备.png','url': 'https://www.jifuyun.cn/ucenterx/device','_blank': false},
|
||||
{'title': '附近服务','icon': '附近服务.png','url': 'https://www.jifuyun.cn/sitex/nearest','_blank': false},
|
||||
{'title': '机服云主站','icon': 'jifuyun.cn.png','url': 'https://www.jifuyun.cn','_blank': false},
|
||||
{'title': '数据后台','icon': '数据处理.png','url': 'https://adm.jifuyun.cn','_blank': false},
|
||||
{'title': '询盘订单','icon': '预报价单.png','url': 'https://m2.jifuyun.cn','_blank': false},
|
||||
{'title': '机联商家','icon': '商户管理 (1).png','url': 'https://sh.jifuyun.cn','_blank': false},
|
||||
{'title': '供应商','icon': '工作台-报价.png','url': 'https://g.jifuyun.cn','_blank': false},
|
||||
{'title': '可视化检索','icon': '装配工单.png','url': 'https://epc.jifuyun.cn','_blank': false},
|
||||
{'title': '寻件通','icon': 'aim.png','url': 'https://xjt.jifuyun.cn/admin/index','_blank': false},
|
||||
{'title': '旧版后台','icon': '系统管理.png','url': 'https://www.jifuyun.cn/admin/index','_blank': false}
|
||||
])
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|