Compare commits

...

10 Commits

@ -21,7 +21,6 @@ exports.cssLoaders = function (options) {
sourceMap: options.sourceMap
}
}
const postcssLoader = {
loader: 'postcss-loader',
options: {

@ -6,7 +6,6 @@ const path = require('path')
module.exports = {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',

@ -50,7 +50,7 @@
<template v-for="(item, index) in myAppsList" >
<el-col :span="8" class="tc">
<el-link :href="item.applicationLink" :underline="false" target="_blank">
<el-image class="yinyong_img" :src="$getUrl(item.applicationCarousel)"></el-image>
<el-image class="yinyong_img" :src="$getUrl(item.thumbnailUrl)"></el-image>
<p class="font14 limit_line_one">{{item.applicationName}}</p>
</el-link>
</el-col>

@ -58,7 +58,7 @@
<template v-for="(item, index) in myAppsList" >
<el-col :span="8" class="tc">
<el-link :href="item.realUrl" :underline="false" target="_blank">
<el-image class="yinyong_img" :src="$getUrl(item.applicationCarousel)"></el-image>
<el-image class="yinyong_img" :src="$getUrl(item.thumbnailUrl)"></el-image>
<p class="font14 limit_line_one">{{item.applicationName}}</p>
</el-link>
</el-col>

@ -49,7 +49,7 @@
{{scope.row.availableFunds || 0}}
</template>
</el-table-column>
<el-table-column prop="intoAccount" header-align="center" align="center" label="转入账户">
<el-table-column prop="intoAccount" header-align="center" align="center" label="转入账户" class-name="AmountValue">
<template slot-scope="scope">
<template v-if="accountTypeMap[scope.row.name] == '银行账户'">
<el-select v-model="scope.row.value" placeholder="请选择">
@ -66,14 +66,14 @@
</template>
</template>
</el-table-column>
<el-table-column prop="zzje" header-align="center" align="center" label="转账金额">
<el-table-column prop="zzje" header-align="center" align="center" label="转账金额" class-name="AmountValue">
<template slot-scope="scope">
<el-input v-model="scope.row.input"></el-input>
</template>
</el-table-column>
<el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120">
<template slot-scope="scope">
<el-link type="primary" :underline="false" disabled @click="">确定</el-link>
<el-link type="primary" :underline="false" @click="allOpenAccount(scope.row)"></el-link>
</template>
</el-table-column>
</el-table>
@ -88,7 +88,7 @@
<template slot-scope="scope">
<p style="writing-mode: lr-tb;width: 20px;margin: 0 auto;">
<el-image class="user_img" :src="jigou"></el-image>
机构投资账户
企业投资账户
</p>
</template>
</el-table-column>
@ -147,7 +147,7 @@
</el-table-column>
<el-table-column prop="messageAcceptState" header-align="center" align="center" label="操作" width="120">
<template slot-scope="scope">
<el-link type="primary" :underline="false" disabled @click="">确定</el-link>
<el-link type="primary" :underline="false" disabled @click="allOpenAccount"></el-link>
</template>
</el-table-column>
</el-table>
@ -162,7 +162,10 @@
type="daterange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期">
end-placeholder="结束日期"
value-format="timestamp"
@change="getPageList"
>
</el-date-picker>
</el-row>
<el-table
@ -213,7 +216,7 @@ export default {
label: '现金账户'
}, {
value: '选项2',
label: 'p2p账户'
label: '网络融资账户'
}, {
value: '选项3',
label: '众筹账户'
@ -237,7 +240,7 @@ export default {
accountTypeMap:{
CASH_ACCOUNT:"现金账户",
BANK_ACCOUNT:"银行账户",
P2P_ACCOUNT:"P2P账户",
P2P_ACCOUNT:"网络融资账户",
CROWDFUNDING_ACCOUNT:"众筹账户",
EQUITY_FUND_INVESTMENT_ACCOUNT:"股票基金投资账户",
FUTURES_INVESTMENT_ACCOUNT:"期货投资账户",
@ -251,6 +254,7 @@ export default {
TRUST_ACCOUNT:"信托账户",
INSURANCE_ACCOUNT:"保险账户",
SUPPLY_CHAIN_ASSET_ACCOUNT:"供应链资产账户",
FINANCIAL_ACCOUNT:"理财账户",
}
};
},
@ -280,25 +284,43 @@ export default {
}
},
getInfo(){ //
this.$get("/api/studentAccountAssetAllocation/getList.do",{studentId:this.identityInfo.studentId}).then((ret) =>{
this.$get("/api/studentAccountAssetAllocation/getList.do",{studentId:this.identityInfo.studentId,isInstitution:1}).then((ret) =>{
if(ret.code == 0){
this.tableData = ret.data;
this.noticeList = ret.data;
}else{
this.$message({message: ret.msg,type: 'error'});
}
});
this.$get("/api/studentAccountAssetAllocation/getList.do",{studentId:this.identityInfo.studentId,isInstitution:2}).then((ret) =>{
if(ret.code == 0){
this.noticeList= ret.data;
}else{
this.$message({message: ret.msg,type: 'error'});
}
});
},
allOpenAccount(){ //
allOpenAccount(val){ //
let value=''
if(val.hasOwnProperty('value')){
value=val.value
}else{
this.tableData.forEach(item=>{
if(item.name=='BANK_ACCOUNT'){
value=item.applicationId
}
})
}
let param = {
studentId:this.identityInfo.studentId,
toAccountsApplicationId:"",//
outAccountsApplicationId:"",//
money:"",//
toAccountsApplicationId:value,//
outAccountsApplicationId:val.applicationId,//
money:val.input,//
}
this.$post("/api/studentAccountAssetAllocation/allOpenAccount.do",param).then((ret) =>{
if(ret.code == 0){
this.tableData = ret.data;
this.getInfo()
}else{
this.$message({message: ret.msg,type: 'error'});
}
@ -316,8 +338,8 @@ export default {
getPageList(){ //List
let param = {
studentId:this.identityInfo.studentId,
startTime:"",
endTime:"",
startTime:this.value1[0],
endTime:this.value1[1],
}
this.$post("/api/studentAccountTradingRecordSheet/getPageList.do",param).then((ret) =>{
if(ret.code == 0){
@ -339,7 +361,8 @@ export default {
this.$addSystemUseLog(param);
},timeNum);
//
}
},
},
beforeDestroy() {
clearInterval(this.timeIn); //
@ -380,5 +403,14 @@ export default {
line-height: 23px;
}
}
.AmountValue{
padding: 0;
.cell{
padding: 0 !important;
.el-input__inner{
border-radius: 0;
}
}
}
</style>
<!-- Add "scoped" attribute to limit CSS to this component only -->

@ -13,7 +13,7 @@
<ul v-if="myAppsList.length > 0">
<template v-for="(item, index) in myAppsList">
<li :key="index" @click="openNewWindow(item)">
<el-image class="apps_img c_p" :src="$getUrl(item.applicationCarousel)"></el-image>
<el-image class="apps_img c_p" :src="$getUrl(item.thumbnailUrl)"></el-image>
<p class="limit_line_one c_p mt10" style="margin-bottom: 0;font-size: 12px;">{{item.applicationName}}</p>
</li>
</template>
@ -32,7 +32,11 @@ export default {
yingyong:require("../../images/index/yingyong@2x.png"),
type:this.$route.query.type,
myAppsList: [],
timeIn:null
timeIn:null,
queryParams:{
page:1,
limit:30
}
};
},
created() {
@ -40,11 +44,10 @@ export default {
//this.addSystem();
},
mounted() {
},
methods: {
getInfo(){
this.$post("/api/base/myPageApplication.do").then((ret) =>{
this.$post("/api/base/myPageApplication.do",this.queryParams).then((ret) =>{
if(ret.code == 0){
this.myAppsList = ret.data;
this.$forceUpdate();

@ -202,10 +202,10 @@
<a @click="myAppsDetails('......')" :class="'layui-btn' + disabledInfo('......')"><img src="../../images/apps/54.png"><span>......</span></a>
<a @click="myAppsDetails('数字票据')" :class="'layui-btn' + disabledInfo('数字票据')"><img src="../../images/apps/55.png"><span>数字票据</span></a>
<a @click="myAppsDetails('供应链金融')" :class="'layui-btn' + disabledInfo('供应链金融')"><img src="../../images/apps/56.png"><span>供应链金融</span></a>
<a @click="myAppsDetails('智能合约')" :class="'layui-btn' + disabledInfo('智能合约')"><img src="../../images/apps/57.png"><span>智能合约</span></a>
<a @click="myAppsDetails('区块链发票')" :class="'layui-btn' + disabledInfo('区块链发票')"><img src="../../images/apps/57.png"><span>区块链发票</span></a>
<a @click="myAppsDetails('数字资产')" :class="'layui-btn' + disabledInfo('数字资产')"><img src="../../images/apps/58.png"><span>数字资产</span></a>
<a @click="myAppsDetails('分布式账本')" :class="'layui-btn' + disabledInfo('分布式账本')"><img src="../../images/apps/59.png"><span>分布式账本</span></a>
<a @click="myAppsDetails('区块链底层开发平台')" :class="'layui-btn' + disabledInfo('区块链底层开发平台')"><img src="../../images/apps/60.png"><span>区块链底层开发平台</span></a>
<a @click="myAppsDetails('数字人民币')" :class="'layui-btn' + disabledInfo('数字人民币')"><img src="../../images/apps/59.png"><span>数字人民币</span></a>
<a @click="myAppsDetails('区块链技术')" :class="'layui-btn' + disabledInfo('区块链技术')"><img src="../../images/apps/60.png"><span>区块链技术</span></a>
</div>
</li>
</ul>

@ -1,6 +1,9 @@
(function () {
var config = {
site:'http://zycloud.sztzjy.com/server', //数据请求地址
site:'http://localhost:9090/server', //数据请求地址
// site:'http://10.0.149.100:9090/server', //数据请求地址
// site:'http://202.199.90.115:9090/server', //数据请求地址
// site:'http://zycloud.sztzjy.com/Login/server', //数据请求地址
viewUrl:'http://39.108.104.1/op/view.aspx?src=', //PDF、PPT、WORD等在线预览的地址
// site:'http://192.168.110.95:9090/server'
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Loading…
Cancel
Save