潜在服务商修改
This commit is contained in:
@ -19,6 +19,14 @@ const routes = [
|
||||
title: '信息录入',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/supplierAddResult',
|
||||
name: 'supplierAddResult',
|
||||
component: () => import('@/views/index/supplierAddResult'),
|
||||
meta:{
|
||||
title: '审核中',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/supplierInfo',
|
||||
name: 'supplierInfo',
|
||||
|
||||
@ -264,7 +264,7 @@
|
||||
title: '提示',
|
||||
message: "操作成功"
|
||||
}).then(async () => {
|
||||
this.goPage('supplierInfo', { id : res?.data })
|
||||
this.goPage('supplierAddResult', { id : res?.data })
|
||||
this.clickFlag = true
|
||||
});
|
||||
} finally {
|
||||
|
||||
83
src/views/index/supplierAddResult.vue
Normal file
83
src/views/index/supplierAddResult.vue
Normal file
@ -0,0 +1,83 @@
|
||||
<template>
|
||||
<div class="wrap">
|
||||
<div class="top-wrap"></div>
|
||||
<div class="center-info">
|
||||
<img class="wait_icon" src="@/assets/supplier/successIcon.png" alt="">
|
||||
<div class="info-tip">信息录入完成,请等待审核结果。</div>
|
||||
</div>
|
||||
<div class="btn_wrap">
|
||||
<div class="btn" @click="searchInfo">信息查看</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
export default {
|
||||
name: "supplierAddResult",
|
||||
mixins:[myMixins],
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
this.id = this.$route.query.id || urlParams.get('id');
|
||||
},
|
||||
methods: {
|
||||
searchInfo() {
|
||||
this.goPage('supplierInfo', { id : this.id })
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import "@/styles/mixin.scss";
|
||||
@import "@/styles/common.scss";
|
||||
.wrap{
|
||||
@include wh(100%,100%);
|
||||
box-sizing: border-box;
|
||||
padding-bottom: 100px;
|
||||
overflow-y: auto;
|
||||
background: linear-gradient( 180deg, #FBFDFE 0%, #F6FBFF 73%, #F0F7FF 100%);
|
||||
backdrop-filter: blur(5.602678571428572px);
|
||||
}
|
||||
.top-wrap {
|
||||
width: 100%;
|
||||
height: 175px;
|
||||
background: linear-gradient( 180deg, #DAECFF 0%, rgba(233,243,255,0) 100%);
|
||||
}
|
||||
.center-info {
|
||||
text-align: center;
|
||||
.wait_icon {
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.info-tip {
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #2C2A53;
|
||||
}
|
||||
}
|
||||
.btn_wrap {
|
||||
width: 100%;
|
||||
padding: 15px 0;
|
||||
position: fixed;
|
||||
bottom: 10px;
|
||||
z-index: 10000 !important;
|
||||
.btn {
|
||||
width: calc(100% - 80px);
|
||||
margin-left: 40px;
|
||||
height: 46px;
|
||||
background: #0E76F4;
|
||||
border-radius: 5px;
|
||||
font-size: 15px;
|
||||
color: #FFFFFF;
|
||||
text-align: center;
|
||||
line-height: 46px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -48,6 +48,18 @@
|
||||
<div class="label">服务商名称:</div>
|
||||
<div class="content">{{supplierInfo?.name}}</div>
|
||||
</div>
|
||||
<div class="info_item" v-if="supplierInfo?.abbr">
|
||||
<div class="label">服务商简称:</div>
|
||||
<div class="content">{{supplierInfo?.abbr}}</div>
|
||||
</div>
|
||||
<div class="info_item" v-if="supplierInfo?.supplierCode">
|
||||
<div class="label">服务商编号:</div>
|
||||
<div class="content">{{supplierInfo?.supplierCode}}</div>
|
||||
</div>
|
||||
<div class="info_item" v-if="supplierInfo?.areaName">
|
||||
<div class="label">注册地址:</div>
|
||||
<div class="content">{{supplierInfo?.areaName}}</div>
|
||||
</div>
|
||||
<div class="info_item">
|
||||
<div class="label">法人姓名:</div>
|
||||
<div class="content">{{supplierInfo?.legalName}}</div>
|
||||
|
||||
Reference in New Issue
Block a user