Commit e580c94e authored by chenqikuai's avatar chenqikuai

feat: 新增备案号

parent 0cdff6b4
<template>
<div class="wrap15 flex mx-5 items-center">
<div class="wrap15 flex mx-5 items-center" @click="$emit('click')">
<div class="bd5 ml-4">
<p class="word14">{{max_amount}}<span class="unit"></span></p>
<p class="txt8">最高可借</p>
......@@ -20,6 +20,8 @@ import Icon from "@/components/common/Icon.vue";
import { eLoanMode } from "@/views/withMenu/Loan/types";
import { PropType } from "vue"
defineEmits(['click'])
const props = defineProps({
max_amount:{
type:Number,
......
......@@ -64,6 +64,9 @@
/>
<HotNews v-for="n in hotNews" :key="n.uuid" :info="n" />
</div>
<div class="text-center py-3">
<a href="https://beian.miit.gov.cn">浙ICP备2021029429号-1</a>
</div>
</div>
</template>
......
module.exports = {
outputDir: 'fns_front',
// publicPath: '/app',
devServer: {
proxy: {
"/proxyApi": {
target: 'http://172.16.102.150:8091',
pathRewrite: {
'^/proxyApi': '',
},
},
'/proxyWs': {
// target: 'ws://121.36.201.96:8888',
target: 'ws://172.16.101.107:8888',
changeOrigin: true,
ws: true,
pathRewrite: {
'^/proxyWs': ''
}
}
outputDir: "fns_front",
// publicPath: '/app',
devServer: {
proxy: {
"/proxyApi": {
target: "http://172.16.102.150:8091",
// target: 'https://www.puhuijr.net/proxyApi',
pathRewrite: {
"^/proxyApi": "",
},
},
"/proxyWs": {
target: "ws://172.16.101.107:8888",
// target: 'ws://121.36.201.96:8888',
changeOrigin: true,
ws: true,
pathRewrite: {
"^/proxyWs": "",
},
},
},
}
\ No newline at end of file
},
chainWebpack: (config) => {
config.plugin("html").tap((args) => {
args[0].title = "微杰科技有限公司";
return args;
});
},
};
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