This commit is contained in:
parent
80e12db279
commit
26929058b0
|
|
@ -24,6 +24,9 @@ declare module 'vue' {
|
|||
ElCountdown: typeof import('element-plus/es')['ElCountdown']
|
||||
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
|
||||
ElDialog: typeof import('element-plus/es')['ElDialog']
|
||||
ElDropdown: typeof import('element-plus/es')['ElDropdown']
|
||||
ElDropdownItem: typeof import('element-plus/es')['ElDropdownItem']
|
||||
ElDropdownMenu: typeof import('element-plus/es')['ElDropdownMenu']
|
||||
ElEmpty: typeof import('element-plus/es')['ElEmpty']
|
||||
ElForm: typeof import('element-plus/es')['ElForm']
|
||||
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
||||
|
|
|
|||
|
|
@ -144,43 +144,6 @@ const routes: Array<RouteRecordRaw> = [
|
|||
},
|
||||
component: () => import('views/collect/index.vue'),
|
||||
},
|
||||
// 寻源比价页面
|
||||
{
|
||||
path: '/parity',
|
||||
name: 'parity',
|
||||
meta: {
|
||||
title: '租赁需求大厅',
|
||||
isLogin: true,
|
||||
AuthFlag: false,
|
||||
activeName: 'parity',
|
||||
},
|
||||
// redirect: '/parity/hall',
|
||||
component: () => import('views/parity/index.vue'),
|
||||
children: [
|
||||
{
|
||||
path: 'hall',
|
||||
name: 'hall',
|
||||
meta: {
|
||||
title: '租赁需求大厅',
|
||||
isLogin: true,
|
||||
AuthFlag: false,
|
||||
activeName: 'parity',
|
||||
},
|
||||
component: () => import('views/parity/parityCom/hall.vue'),
|
||||
},
|
||||
{
|
||||
path: 'notice',
|
||||
name: 'notice',
|
||||
meta: {
|
||||
title: '寻源结果公示公告',
|
||||
isLogin: true,
|
||||
AuthFlag: false,
|
||||
activeName: 'parity',
|
||||
},
|
||||
component: () => import('views/parity/parityCom/notice.vue'),
|
||||
},
|
||||
],
|
||||
},
|
||||
// 寻源比价 (报价)
|
||||
{
|
||||
path: '/quotation',
|
||||
|
|
@ -206,6 +169,43 @@ const routes: Array<RouteRecordRaw> = [
|
|||
},
|
||||
],
|
||||
},
|
||||
// 寻源比价页面
|
||||
{
|
||||
path: '/parity',
|
||||
name: 'parity',
|
||||
meta: {
|
||||
title: '租赁需求大厅',
|
||||
isLogin: true,
|
||||
AuthFlag: false,
|
||||
activeName: 'parity',
|
||||
},
|
||||
// redirect: '/parity/hall',
|
||||
component: () => import('views/parity/index.vue'),
|
||||
children: [
|
||||
{
|
||||
path: 'hall',
|
||||
name: 'hall',
|
||||
meta: {
|
||||
title: '租赁需求大厅',
|
||||
isLogin: true,
|
||||
AuthFlag: false,
|
||||
activeName: 'parity',
|
||||
},
|
||||
component: () => import('views/parity/parityCom/hall.vue'),
|
||||
},
|
||||
{
|
||||
path: 'notice',
|
||||
name: 'notice',
|
||||
meta: {
|
||||
title: '寻源结果公示公告',
|
||||
isLogin: true,
|
||||
AuthFlag: false,
|
||||
activeName: 'parity',
|
||||
},
|
||||
component: () => import('views/parity/parityCom/notice.vue'),
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
path: '/qr-code',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
<template>
|
||||
<div class="equipList">
|
||||
<NavMenu></NavMenu>
|
||||
<div class="container">
|
||||
<!-- <NavMenu></NavMenu> -->
|
||||
|
||||
<div class="screen">
|
||||
<div class="choose">
|
||||
|
|
@ -221,6 +222,7 @@
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { computed, onMounted, onUnmounted, reactive, ref } from 'vue'
|
||||
|
|
@ -481,7 +483,16 @@ const onAcceptOrders = (id: any) => {
|
|||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.container {
|
||||
width: 98%;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
border-radius: 30px;
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.equipList {
|
||||
padding-top: 20px;
|
||||
.showScreen {
|
||||
margin: 15px 0;
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Reference in New Issue