<template>
|
<div>
|
<div class="zixuancontainer">
|
<Newheader ref="newheader"></Newheader>
|
<div class="pages">
|
<div class="pages_txt" style="font-size: 26px;margin-top: 180px;">Golden Finger</div>
|
<div class="pages_txt">AllianceStock Code:(BRAC)
|
Corporate Name: BROAD CAPITAL ACQUISITION CORP
|
Golden Finger Alliance is a limited liability partnership registered in England, numbered OC381003,
|
headquartered in New York, USA. It is a global investment bank, a SEC registered securities firm, and has
|
offices in major financial centers worldwide, engaged in the business of buying and selling securities -
|
stocks, bonds, mutual funds, and certain other investments
|
Golden Finger Alliance is authorized and regulated by the Financial Conduct Authority (FRN 593758).
|
Certificate No: 290775
|
Latest Filing: 03/30/2023
|
U.S. Securities and Exchange Commission Number: 801-112127
|
Organizational Form: Limited Liability Company
|
Address: California
|
Registration: The Securities and Exchange CommissionSEC Securities and Exchange
|
Commission:https://www.sec.gov/Archives/edgar/data/1865120/000149315221020721/forms-1.htm
|
</div>
|
<img class="pages_img" src="../../assets/image/zz_img.png" />
|
<div class="pages_txt">We are partners of capital market professionals with a unique combination of product
|
skills and customer relationships
|
|
Our goal is to help clients generate trading ideas, search for assets, and achieve better execution in
|
illiquid or complex securities.
|
|
We expect to leverage the advantages of new technologies in our target industries, such as artificial
|
intelligence, machine learning, electric and hybrid propulsion, advanced materials and manufacturing
|
technologies, control systems, advanced telecommunications, autonomous flight operations, networked satellite
|
systems, and other continuously evolving technologies. Our team is composed of experienced industry leaders
|
and experienced capital investors, with a strong network in the target industry and extensive experience in
|
strategic investment procurement, due diligence, acquisition, and execution. In addition, our team has a
|
global track record in executing investments and managing the subsequent growth of target industries, with
|
transaction sizes ranging from hundreds of millions to billions.
|
|
We plan to collaborate with the management and owners of one or more high-quality companies to seek
|
alternative solutions to traditional initial public offerings (IPOs). We will leverage our management team's
|
extensive experience in venture capital and private equity in procurement transactions and due diligence to
|
determine and negotiate a merger with a sustainable enterprise. The traditional initial public offering
|
process requires a lot of preparation work, investment time and resources, and there is a great deal of
|
uncertainty. Therefore, management and owners are seeking feasible alternatives to the public market. We
|
believe that the combined experience of our management and board members represents a convincing choice and
|
has the potential to create long-term value.
|
|
In their careers, our management team and board have established extensive networks of connections and
|
corporate relationships, and we believe these networks will become useful sources of opportunities. This
|
network has developed through extensive investment and operational experience in various fields, including
|
diversified business services, technology, telecommunications, media and entertainment, pharmaceuticals and
|
consumer healthcare, financial services and financial technology, consumer goods, energy and electricity, real
|
estate including real estate services and related businesses, environmental services, liquidity and
|
electrification in the transportation industry, and insurance and insurance related services. We anticipate
|
that these networks will provide us with a plethora of potential business consolidation opportunities.</div>
|
</div>
|
</div>
|
</div>
|
</template>
|
<script>
|
import * as api from "../../axios/api";
|
import Newheader from '@/components/newheader';
|
import Newfooter from '@/components/newfooters';
|
export default {
|
components: {
|
Newheader,
|
Newfooter
|
},
|
data() {
|
return {
|
windowWidth: document.documentElement.clientWidth, //实时屏幕宽度
|
windowHeight: document.documentElement.clientHeight, //实时屏幕高
|
tableHeight: (document.documentElement.clientHeight - 104) + 'px',
|
keyWords: '',
|
pageNum: 1,
|
pageSize: 15,
|
zixuanlist: [],
|
loading: true,
|
isshow: true,
|
dialogVisible: false,
|
that: this,
|
sgvalue: '',
|
currentitem: {},
|
userData: '',
|
idx: 0,
|
recordList: []
|
}
|
},
|
computed: {},
|
watch: {
|
windowHeight(val) {
|
let that = this;
|
console.log("实时屏幕高度:", val, that.windowHeight);
|
},
|
windowWidth(val) {
|
let that = this;
|
console.log("实时屏幕宽度:", val, that.windowHeight);
|
}
|
},
|
mounted() {
|
var that = this;
|
window.onresize = () => {
|
return (() => {
|
window.fullHeight = document.documentElement.clientHeight;
|
window.fullWidth = document.documentElement.clientWidth;
|
that.windowHeight = window.fullHeight; // 高
|
that.windowWidth = window.fullWidth; // 宽
|
that.$nextTick(() => {
|
that.tableHeight = (that.windowHeight - 104) + 'px'
|
})
|
})()
|
};
|
this.getzixuan()
|
this.getUserInfo()
|
},
|
beforeDestroy() {
|
window.onresize = null;
|
this.isshow = false
|
},
|
filters: {
|
formatTime(value, that) {
|
if (value) {
|
return that.dayjs(value).format('YYYY-MM-DD HH:mm:ss')
|
} else {
|
return '--'
|
}
|
}
|
},
|
methods: {
|
getrenjiao(val) {
|
this.$confirm(this.$t('hj251'), this.$t('hj165'), {
|
confirmButtonText: this.$t('hj161'),
|
cancelButtonText: this.$t('hj106'),
|
type: 'warning'
|
}).then(async () => {
|
let opt = {
|
id: val
|
}
|
let data = await api.submitSubscribe(opt)
|
if (data.status == 0) {
|
this.$message({
|
message: data.msg,
|
type: 'success'
|
});
|
this.getnewguRecord();
|
this.$refs.newheader.getUserInfo()
|
} else {
|
this.$message({
|
message: data.msg,
|
type: 'error'
|
});
|
}
|
}).catch(() => {
|
|
});
|
},
|
firstselect() {
|
this.idx = 0;
|
this.pageNum = 1
|
this.zixuanlist = []
|
this.loading = true;
|
this.tableHeight = (document.documentElement.clientHeight - 104) + 'px',
|
this.getzixuan()
|
},
|
twoselect() {
|
this.idx = 1;
|
this.pageNum = 1
|
this.recordList = []
|
this.getnewguRecord()
|
},
|
async getnewguRecord() {
|
this.loading = true;
|
let params = {
|
pageNum: this.pageNum,
|
pageSize: this.pageSize,
|
}
|
let res = await api.getOneSubscribeByUserId(params);
|
if (res.status == 0) {
|
this.recordList = res.data;
|
this.loading = false;
|
}
|
},
|
async getzixuan() {
|
var that = this;
|
var opt = {
|
keyWords: this.keyWords,
|
pageNum: this.pageNum,
|
pageSize: this.pageSize,
|
};
|
var data = await api.getNewguList(opt);
|
if (data.data.list.length > 0) {
|
this.zixuanlist = data.data.list
|
// for (const i in data.data.list) {
|
// this.zixuanlist.push(data.data.list[i])
|
// }
|
// if (that.isshow) {
|
// setTimeout(() => {
|
// that.pageNum++
|
// that.getzixuan()
|
// }, 100);
|
// }
|
if (this.loading == true && this.pageNum >= 1) {
|
this.loading = false;
|
}
|
} else {
|
this.loading = false;
|
}
|
},
|
handleTableRow(row, event, column) {
|
console.log(row, event, column)
|
this.dialogVisible = true
|
this.currentitem = row
|
},
|
async getUserInfo() {
|
let data = await api.getUserInfo();
|
if (data.status == 0) {
|
this.userData = data.data;
|
}
|
},
|
async getshengou() {
|
if (!this.sgvalue) {
|
this.$message({
|
message: this.$t('qsrsgsl'),
|
type: 'warning'
|
});
|
return
|
}
|
if (this.sgvalue < 1) {
|
this.$message({
|
message: this.$t('sgtips'),
|
type: 'warning'
|
});
|
return
|
}
|
if (this.sgvalue > this.currentitem.orderNumber) {
|
this.$message({
|
message: this.$t('sgtips2'),
|
type: 'warning'
|
});
|
return
|
}
|
var opt = {
|
newCode: this.currentitem.code,
|
applyNums: this.sgvalue,
|
phone: this.userData.phone,
|
};
|
var data = await api.getNewguAdd(opt);
|
if (data.status == 0) {
|
this.dialogVisible = false
|
this.$message({
|
message: this.$t('hj70'),
|
type: 'success'
|
});
|
this.currentitem = ''
|
} else {
|
this.$message({
|
message: data.msg,
|
type: 'warning'
|
});
|
}
|
},
|
}
|
}
|
</script>
|
<style lang="less" scoped>
|
.pages_img {
|
width: 600px;
|
height: 400px;
|
}
|
|
.pages_txt {
|
color: #fff;
|
// font-size: 18px;
|
margin: 20px 80px;
|
line-height: 30px;
|
}
|
|
.pages {
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
align-items: center;
|
margin-top: 20px;
|
height: 800px;
|
overflow-y: scroll;
|
}
|
|
.bgblue {
|
color: #1890ff;
|
background: #e6f7ff;
|
border-color: #91d5ff;
|
padding: 2px 7px;
|
font-size: 12px;
|
border-radius: 2px;
|
|
}
|
|
.bgpurple {
|
color: #722ed1;
|
background: #f9f0ff;
|
border-color: #d3adf7;
|
padding: 2px 7px;
|
font-size: 12px;
|
border-radius: 2px;
|
}
|
|
.el-table {
|
background: #25262a;
|
}
|
|
/deep/ .el-table__body td {
|
color: #fff !important;
|
font-size: 14px;
|
}
|
|
/deep/ .el-table tbody tr:hover>td,
|
.el-table tbody tr:hover>tr,
|
.el-table tbody tr:hover .el-table tbody tr td {
|
background-color: rgb(33, 59, 76) !important;
|
background: rgb(33, 59, 76) !important;
|
}
|
|
// /deep/.el-table--enable-row-hover .el-table__body tr:hover > td {
|
// background-color: rgb(19, 75, 132) !important; //颜色必须是rgb
|
// }
|
/deep/ .el-table__body-wrapper {
|
background-color: rgb(37, 38, 42) !important;
|
}
|
|
/deep/ .el-table__body-wrapper::-webkit-scrollbar-corner {
|
width: 8px;
|
height: 8px;
|
display: none;
|
}
|
|
/deep/ .el-table--border::after,
|
.el-table--group::after,
|
.el-table::before {
|
background-color: rgb(37, 38, 42);
|
}
|
|
/deep/ .el-table__body-wrapper::-webkit-scrollbar-thumb {
|
background: rgb(37, 38, 42);
|
/*滚动条里面小方块*/
|
}
|
|
/deep/ .el-table__body-wrapper::-webkit-scrollbar-track {
|
// -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
border-radius: unset;
|
/*滚动条的背景区域的圆角*/
|
background-color: rgb(37, 38, 42);
|
/*滚动条的背景颜色*/
|
}
|
|
/deep/ .el-table__body-wrapper::-webkit-scrollbar-thumb {
|
border-radius: unset;
|
/*滚动条的圆角*/
|
// -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
background-color: rgb(50, 51, 55);
|
/*滚动条的背景颜色*/
|
}
|
|
.greens {
|
color: rgb(22, 135, 64) !important;
|
}
|
|
.blues {
|
color: rgb(3, 182, 191) !important;
|
}
|
|
.reds {
|
color: rgb(237, 58, 59) !important;
|
}
|
|
.zixuancontainer {
|
background: #25262a;
|
height: calc(100vh - 34px);
|
overflow: unset;
|
|
.newguheader {
|
display: flex;
|
align-items: center;
|
color: #c9c9c9;
|
height: 30px;
|
font-size: 12px;
|
background: #323337;
|
|
div {
|
padding: 0 20px;
|
line-height: 30px;
|
cursor: pointer;
|
border: 1px solid #4a4b51;
|
}
|
|
.newguheaderactive {
|
background: rgb(74, 75, 81);
|
color: #fff;
|
}
|
}
|
|
.renjiao {
|
text-align: center;
|
color: #c9c9c9;
|
cursor: pointer;
|
border: 1px solid #757575;
|
padding: 0 6px;
|
border-radius: 4px;
|
background: rgb(50, 51, 55);
|
}
|
|
.shengoutime {
|
line-height: 2;
|
margin-bottom: 10px;
|
color: #999;
|
}
|
}
|
</style>
|