Commit c2ad7ca8 authored by chenjiahao's avatar chenjiahao

修复已知问题

parent 1a3fcda7
...@@ -288,7 +288,20 @@ ...@@ -288,7 +288,20 @@
import Icon from '@/components/Icon/Icon.vue'; import Icon from '@/components/Icon/Icon.vue';
import { getToken } from '@/utils/auth'; import { getToken } from '@/utils/auth';
import { Col, Row } from 'ant-design-vue'; import { Col, Row } from 'ant-design-vue';
import cardLogo from '@/assets/images/mallHome/biaoqian.png';
import industryImg from '@/assets/images/mallHome/行业动态.png';
import dynamicImg from '@/assets/images/mallHome/hangyedongtai.png';
const items = [
{
id: '1',
url: new URL('@/assets/images/mallHome/banner1.png', import.meta.url).href,
},
{
id: '2',
url: new URL('@/assets/images/mallHome/banner.png', import.meta.url).href,
},
];
export default { export default {
name: 'Front', name: 'Front',
components: { Row, Col, Icon }, components: { Row, Col, Icon },
...@@ -337,19 +350,10 @@ ...@@ -337,19 +350,10 @@
activeName2: 'first', activeName2: 'first',
enrollNotice: '1', enrollNotice: '1',
isDetail: false, isDetail: false,
cardLogo: 'src/assets/images/mallHome/biaoqian.png', cardLogo,
industryImg: 'src/assets/images/mallHome/行业动态.png', industryImg,
dynamicImg: 'src/assets/images/mallHome/hangyedongtai.png', dynamicImg,
items: [ items,
{
id: '1',
url: 'src/assets/images/mallHome/banner1.png',
},
{
id: '2',
url: 'src/assets/images/mallHome/banner.png',
},
],
formSchema1: [ formSchema1: [
{ {
label: '申请人', label: '申请人',
......
...@@ -101,21 +101,22 @@ ...@@ -101,21 +101,22 @@
import Icon from '@/components/Icon/Icon.vue'; import Icon from '@/components/Icon/Icon.vue';
import { getToken } from '@/utils/auth'; import { getToken } from '@/utils/auth';
export default { const items = [
name: 'DemandHall',
components: { Icon },
data() {
return {
items: [
{ {
id: '1', id: '1',
url: 'src/assets/images/mallHome/banner1.png', url: new URL('@/assets/images/mallHome/banner1.png', import.meta.url).href,
}, },
{ {
id: '2', id: '2',
url: 'src/assets/images/mallHome/banner.png', url: new URL('@/assets/images/mallHome/banner.png', import.meta.url).href,
}, },
], ];
export default {
name: 'DemandHall',
components: { Icon },
data() {
return {
items,
tabSelect: 0, tabSelect: 0,
tabList: [ tabList: [
{ {
......
...@@ -47,9 +47,15 @@ ...@@ -47,9 +47,15 @@
>注册</el-button >注册</el-button
> >
</div> </div>
<div v-else> <div v-else style="display: flex;align-items: center">
<a-button class="long_btn" type="link"> </a-button> <a-button class="long_btn" type="link" />
<a-button class="long_btn" type="link" @click="toBackstage"> 个人中心 </a-button> <a-button
style="color: #486fe1; background-color: #dce5f9"
type="link"
@click="toBackstage"
>
<span style="text-align: center">个人中心</span>
</a-button>
</div> </div>
</div> </div>
<!-- </div>--> <!-- </div>-->
......
...@@ -670,6 +670,17 @@ ...@@ -670,6 +670,17 @@
import { BasicTable, useTable, TableAction } from '@/components/Table'; import { BasicTable, useTable, TableAction } from '@/components/Table';
import { columns } from './tableSchema'; import { columns } from './tableSchema';
const items = [
{
id: '1',
url: new URL('@/assets/images/mallHome/banner1.png', import.meta.url).href,
},
{
id: '2',
url: new URL('@/assets/images/mallHome/banner.png', import.meta.url).href,
},
];
const fileType = ref(''); // 文件下载后缀 const fileType = ref(''); // 文件下载后缀
const choseFile = ref({}); // 选择文件对象 const choseFile = ref({}); // 选择文件对象
const downloadType = ref(''); // 1是本地文件下载,2是oss文件下载 const downloadType = ref(''); // 1是本地文件下载,2是oss文件下载
...@@ -721,16 +732,6 @@ ...@@ -721,16 +732,6 @@
console.log('clickpush'); console.log('clickpush');
router.push('/aaaFont/nationalPolicy/details'); router.push('/aaaFont/nationalPolicy/details');
} }
const items = [
{
id: '1',
url: 'src/assets/images/mallHome/banner1.png',
},
{
id: '2',
url: 'src/assets/images/mallHome/banner.png',
},
];
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
/* 报名参赛按钮 */ /* 报名参赛按钮 */
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment