Commit e580c94e authored by chenqikuai's avatar chenqikuai

feat: 新增备案号

parent 0cdff6b4
<template> <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"> <div class="bd5 ml-4">
<p class="word14">{{max_amount}}<span class="unit"></span></p> <p class="word14">{{max_amount}}<span class="unit"></span></p>
<p class="txt8">最高可借</p> <p class="txt8">最高可借</p>
...@@ -20,6 +20,8 @@ import Icon from "@/components/common/Icon.vue"; ...@@ -20,6 +20,8 @@ import Icon from "@/components/common/Icon.vue";
import { eLoanMode } from "@/views/withMenu/Loan/types"; import { eLoanMode } from "@/views/withMenu/Loan/types";
import { PropType } from "vue" import { PropType } from "vue"
defineEmits(['click'])
const props = defineProps({ const props = defineProps({
max_amount:{ max_amount:{
type:Number, type:Number,
......
...@@ -64,6 +64,9 @@ ...@@ -64,6 +64,9 @@
/> />
<HotNews v-for="n in hotNews" :key="n.uuid" :info="n" /> <HotNews v-for="n in hotNews" :key="n.uuid" :info="n" />
</div> </div>
<div class="text-center py-3">
<a href="https://beian.miit.gov.cn">浙ICP备2021029429号-1</a>
</div>
</div> </div>
</template> </template>
......
module.exports = { module.exports = {
outputDir: 'fns_front', outputDir: "fns_front",
// publicPath: '/app', // publicPath: '/app',
devServer: { devServer: {
proxy: { proxy: {
"/proxyApi": { "/proxyApi": {
target: 'http://172.16.102.150:8091', target: "http://172.16.102.150:8091",
pathRewrite: { // target: 'https://www.puhuijr.net/proxyApi',
'^/proxyApi': '', pathRewrite: {
}, "^/proxyApi": "",
},
'/proxyWs': {
// target: 'ws://121.36.201.96:8888',
target: 'ws://172.16.101.107:8888',
changeOrigin: true,
ws: true,
pathRewrite: {
'^/proxyWs': ''
}
}
}, },
},
"/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