优化:修改部分内容的文字

This commit is contained in:
wuhui_zzw 2023-12-11 10:42:17 +08:00
parent 5977b4e940
commit d21895c86a
4 changed files with 19 additions and 9 deletions

View File

@ -3,11 +3,10 @@
<div id="incomedetailed">
<!--<c-title :hide="false"
text='收入明细'></c-title>-->
<!--right-text="筛选"-->
<van-nav-bar
left-arrow
:title="`${income_name_text}明细`"
right-text="筛选"
@click-right="screen()"
fixed
@click-left="goto"

View File

@ -145,7 +145,7 @@ export default {
{title: '消费增值', sub_title: '查看文创豆收益', icon: '1.png', path_name: 'legumes_center_withdrawal_record', query: {} },
{title: '生态发展收益', sub_title: '好友购买得奖励', icon: '2.png', path_name: 'legumes_center_record_list', query: { type_name: 'ecological' } },
{title: '贡献分红', sub_title: '贡献值分红', icon: '3.png', path_name: 'legumes_center_record_list', query: { type_name: 'contribution' } },
{title: '权证兑换', sub_title: '事参与分股权', icon: '4.png', path_name: 'legumes_center_record_list', query: { type_name: 'shareholding' } },
{title: '权证兑换', sub_title: '事参与分股权', icon: '4.png', path_name: 'legumes_center_record_list', query: { type_name: 'shareholding' } },
]
};
},

View File

@ -29,7 +29,7 @@
<div class="top-info-content" v-else-if="page_params.type_name == 'contribution'">
<div class="hold-info">
<div class="hold-num">{{ info.contribution_bonus }}</div>
<div class="hold-desc" @click="goToPage('weight_value_detailed',{},{key_name: 'contribution_bonus',content_type: 'cultural_space'})">股权收益明细<i class="fa fa-angle-right"></i></div>
<div class="hold-desc" @click="goToPage('weight_value_detailed',{},{key_name: 'contribution_bonus',content_type: 'cultural_space'})">贡献分红明细<i class="fa fa-angle-right"></i></div>
</div>
<div class="statistics-list">
<div class="statistics-block">

View File

@ -265,9 +265,9 @@ export default {
_this.getGoodsList();
_this.getAccountInfo();
//
// _this.$nextTick(() => {
// _this.is_show_share = _this.fun.getTyep() == 1;
// });
_this.$nextTick(() => {
//_this.is_show_share = _this.fun.getTyep() == 1;
});
},
methods: {
//
@ -395,12 +395,23 @@ export default {
} else {
//
_this.$dialog.alert({message: "请点击右上角微信分享"});
_this.fun.wxShare("", {mid: _this.fun.getKeyByMid()}, {},
let shareConfig = {
title: '这里是分享标题',
imgUrl: '',
description: '这里是描述信息',
// link: ''
};
_this.fun.wxShare("", {mid: _this.fun.getKeyByMid()}, shareConfig,
data => {},
success => {
_this.task_status = true;
_this.$dialog.alert({message: "分享成功"}).then(()=>{
_this.submitWithdrawal();//
_this.$dialog.alert({message: "分享成功,触发自动提交!"});
// _this.submitWithdrawal();//
});
});
}