|
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<link rel="icon" href="/favicon.jpg">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- 贵州 -->
|
||||
<title>智联装备云控平台</title>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 878 KiB After Width: | Height: | Size: 448 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 9.6 KiB |
|
|
@ -3,7 +3,7 @@ import $bus from '@/utils/bus'
|
|||
import { mainStore } from 'store/main'
|
||||
import { useStore } from 'store/user'
|
||||
import { ElMessage, ElMessageBox } from 'element-plus'
|
||||
import headerLogo from 'assets/img/zulinlogo-gz.png' // 贵州
|
||||
import headerLogo from 'assets/img/logo.png' // 贵州
|
||||
import userClass from '../../hooks/userClass'
|
||||
import {
|
||||
getUserInfo, //用户信息
|
||||
|
|
|
|||
|
|
@ -821,7 +821,7 @@ onMounted(() => {
|
|||
height: 40px; // 贵州
|
||||
background-color: orange;
|
||||
/* background: url('@/assets/img/logo.png') no-repeat; */
|
||||
background: url('@/assets/img/logo-gz.png') no-repeat; // 贵州
|
||||
background: url('@/assets/img/logo.png') no-repeat; // 贵州
|
||||
background-size: 100% 100%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -327,7 +327,7 @@ onMounted(async () => {
|
|||
<el-image
|
||||
style="width: 100%; height: 100%; cursor: pointer"
|
||||
:src="item.slidePicture"
|
||||
fit="cover"
|
||||
|
||||
/>
|
||||
</el-carousel-item>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@
|
|||
|
||||
<div
|
||||
@click="router.push({ name: 'demand-details', query: { id: item.id } })"
|
||||
style="margin-bottom: 26px; border: 1px solid #00ae9c; color: #00ae9c"
|
||||
style="margin-bottom: 26px; border: 1px solid #00377a; color: #00377a"
|
||||
>
|
||||
需求详情
|
||||
</div>
|
||||
|
|
@ -183,7 +183,7 @@
|
|||
style="
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #00ae9c;
|
||||
background-color: #00377a;
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
|
|
@ -626,7 +626,7 @@ const onAcceptOrders = (id: any) => {
|
|||
background-color: orange;
|
||||
width: 30%;
|
||||
padding: 12px 0;
|
||||
background: linear-gradient(to right, #4dd1c7, #00af9f);
|
||||
background: linear-gradient(to right, #00377a, #00377a);
|
||||
}
|
||||
|
||||
.btn-items {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ const userInfo = JSON.parse(localStorage.getItem('main')).userInfo
|
|||
// const isAdmin = ref(userInfo.userId == 226 || userInfo.userId == 225 || userInfo.admin)
|
||||
const isAdmin = ref(true) // 临时放开权限
|
||||
// console.log('🚀 ~ isAdmin:', isAdmin.value)
|
||||
import imgSrc from '@/assets/img/logo-gz.png'
|
||||
import imgSrc from '@/assets/img/logo.png'
|
||||
|
||||
const handleSelect = (name: any, path: any) => {
|
||||
console.log('🚀 ~ handleSelect ~ name:', name)
|
||||
|
|
|
|||