no message
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
<text class="text-32 text-bold text-zu text-overflow1">{{obj.title}}</text>
|
<text class="text-32 text-bold text-zu text-overflow1">{{obj.title}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="right-bottom-view">
|
<view class="right-bottom-view">
|
||||||
<text class="text-28 text-zi text-bold">¥{{obj.price}}积分</text>
|
<text class="text-28 text-zi text-bold">¥{{obj.price}}兑换券</text>
|
||||||
<MyBtn @ok="onClick" mh="64rpx" text="立即兑换" br="8rpx" bg="linear-gradient( 270deg, #B164FB 0%, #7934F6 100%)" wd="200rpx"></MyBtn>
|
<MyBtn @ok="onClick" mh="64rpx" text="立即兑换" br="8rpx" bg="linear-gradient( 270deg, #B164FB 0%, #7934F6 100%)" wd="200rpx"></MyBtn>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
+1
-1
@@ -99,7 +99,7 @@
|
|||||||
<view class="min_card_item" @click="jumpIntegral">
|
<view class="min_card_item" @click="jumpIntegral">
|
||||||
<!-- <up-image src="/static/home/min_card_jfdh.png" width="60" height="14" bgColor="#f1f6ff00" ></up-image> -->
|
<!-- <up-image src="/static/home/min_card_jfdh.png" width="60" height="14" bgColor="#f1f6ff00" ></up-image> -->
|
||||||
<view class="min_card_item_content">
|
<view class="min_card_item_content">
|
||||||
<view class="min_card_item_title">积分兑换</view>
|
<view class="min_card_item_title">信任桥兑换</view>
|
||||||
<view class="content_msg">
|
<view class="content_msg">
|
||||||
<view>好物随心兑</view>
|
<view>好物随心兑</view>
|
||||||
<view class="content_msg_but">
|
<view class="content_msg_but">
|
||||||
|
|||||||
@@ -39,7 +39,8 @@
|
|||||||
v-if="orderList && orderList.length !== 0">
|
v-if="orderList && orderList.length !== 0">
|
||||||
<view class="purse_info_left">
|
<view class="purse_info_left">
|
||||||
<!-- <up-image :src="item.type === 1? '/static/mine/purse_sf.png' : '/static/mine/purse_xf.png'" width="40" height="40" bgColor="#f1f6ff00"></up-image> -->
|
<!-- <up-image :src="item.type === 1? '/static/mine/purse_sf.png' : '/static/mine/purse_xf.png'" width="40" height="40" bgColor="#f1f6ff00"></up-image> -->
|
||||||
<up-image src="/static/mine/purse_sf.png" width="32" height="32" bgColor="#f1f6ff00"></up-image>
|
<up-image :src="item.amount > 0 ? '/static/mine/zhen.png' : '/static/mine/fu.png'" width="32" height="32" bgColor="#f1f6ff00"></up-image>
|
||||||
|
|
||||||
<view class="purse_data_warp">
|
<view class="purse_data_warp">
|
||||||
<view class="purse_info_name">{{ getValue(BALANCE_TYPE, item.type) }}</view>
|
<view class="purse_info_name">{{ getValue(BALANCE_TYPE, item.type) }}</view>
|
||||||
<view class="purse_info_value">{{ formatDate(item.ctdate) }}</view>
|
<view class="purse_info_value">{{ formatDate(item.ctdate) }}</view>
|
||||||
@@ -137,7 +138,7 @@ export default {
|
|||||||
key: "totalMallBonus"
|
key: "totalMallBonus"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "分红资金池剩余",
|
name: "共享资金池剩余",
|
||||||
key: "poolBonus"
|
key: "poolBonus"
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -85,33 +85,45 @@ export default {
|
|||||||
myChart:null,
|
myChart:null,
|
||||||
myChartTwo:null,
|
myChartTwo:null,
|
||||||
data: [
|
data: [
|
||||||
{ value: '51', name: '股东' },
|
{ value: '51', name: '用户股东' },
|
||||||
{ value: '29', name: '推广' },
|
{ value: '10', name: '推广奖励' },
|
||||||
{ value: '10', name: '团队' },
|
{ value: '10', name: '运营团队' },
|
||||||
|
{ value: '10', name: '活动激励' },
|
||||||
|
{ value: '9', name: '投资机构' },
|
||||||
{ value: '10', name: '基金会' },
|
{ value: '10', name: '基金会' },
|
||||||
|
|
||||||
],
|
],
|
||||||
dataSeries:{
|
dataSeries:{
|
||||||
series:[
|
series:[
|
||||||
{
|
{
|
||||||
"name": "股东",
|
"name": "用户股东",
|
||||||
"data": 51,
|
"data": 51,
|
||||||
"color":"#FC5E05"
|
"color":"#FC5E05"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "推广",
|
"name": "推广奖励",
|
||||||
"data": 29,
|
"data": 10,
|
||||||
"color":"#BC52FD"
|
"color":"#BC52FD"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "团队",
|
"name": "运营团队",
|
||||||
"data": 10,
|
"data": 10,
|
||||||
"color":"#FCC139"
|
"color":"#FCC139"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "基金会",
|
"name": "投资机构",
|
||||||
"data": 10,
|
"data": 10,
|
||||||
"color":"#0474E0"
|
"color":"#0474E0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "活动激励",
|
||||||
|
"data": 9,
|
||||||
|
"color":"#1890ff"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "基金会",
|
||||||
|
"data": 10,
|
||||||
|
"color":"#91cb74"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -164,17 +176,17 @@ export default {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
dataColor:['#FC5E05', '#BC52FD', '#FCC139', '#0474E0'],
|
dataColor:['#FC5E05', '#BC52FD', '#FCC139', '#0474E0','#1890ff','#91cb74'],
|
||||||
dataTwo:[
|
dataTwo:[
|
||||||
{ value: '25', name: '成本' },
|
{ value: '25', name: '成本' },
|
||||||
{ value: '15', name: '分红' },
|
{ value: '15', name: '消费贡献共享计划' },
|
||||||
{ value: '13', name: '销售增值税' },
|
{ value: '13', name: '销售增值税' },
|
||||||
{ value: '12', name: '市场激励' },
|
{ value: '12', name: '市场激励' },
|
||||||
{ value: '10.5', name: '次年发展资金' },
|
{ value: '10.5', name: '次年发展资金' },
|
||||||
{ value: '10', name: 'RWA市值管理' },
|
{ value: '10', name: 'RWA市值管理' },
|
||||||
{ value: '5', name: '股标护盘' },
|
{ value: '5', name: '股标护盘' },
|
||||||
{ value: '5', name: '交易激励' },
|
{ value: '5', name: '交易激励' },
|
||||||
{ value: '4.5', name: '年终分红' },
|
{ value: '4.5', name: '年终共享' },
|
||||||
],
|
],
|
||||||
dataTwoColor:['#FF8400','#6136FF', '#19CEB3', '#F1B900', '#AE9BF5'
|
dataTwoColor:['#FF8400','#6136FF', '#19CEB3', '#F1B900', '#AE9BF5'
|
||||||
,'#94F7A1','#006EFF','#FF2440','#00A776'],
|
,'#94F7A1','#006EFF','#FF2440','#00A776'],
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<view style="margin-top: 20rpx;" @click="leftJump">
|
<view style="margin-top: 20rpx;" @click="leftJump">
|
||||||
<up-image src="/static/common/left_b.png" width="18" height="20" bgColor="#f1f6ff00" />
|
<up-image src="/static/common/left_b.png" width="18" height="20" bgColor="#f1f6ff00" />
|
||||||
</view>
|
</view>
|
||||||
<view class="title_">RWA交易</view>
|
<view class="title_">数字积分兑换</view>
|
||||||
<view></view>
|
<view></view>
|
||||||
</view>
|
</view>
|
||||||
<view class="amount_">
|
<view class="amount_">
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="rwa_withdrawal">
|
<view class="rwa_withdrawal">
|
||||||
<Header leftTitle="行权" left-path-type="navigateTo" left-path="/pages/rwa_package/rwa/rwa" rightTitle="记录"
|
<Header leftTitle="共享计划终止" left-path-type="navigateTo" left-path="/pages/rwa_package/rwa/rwa" rightTitle="记录"
|
||||||
rightPath="/pages/rwa_package/rwa_withdrawal_log/rwa_withdrawal_log?back=withdrawal" rightPathType="navigateTo" />
|
rightPath="/pages/rwa_package/rwa_withdrawal_log/rwa_withdrawal_log?back=withdrawal" rightPathType="navigateTo" />
|
||||||
<view class="rwa_withdrawal_content">
|
<view class="rwa_withdrawal_content">
|
||||||
<view class="_content">
|
<view class="_content">
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="_content_item">
|
<view class="_content_item">
|
||||||
<view class="_content_item_title">交易密码<text class="_content_item_setting_pwd"
|
<view class="_content_item_title">交易密码<text class="_content_item_setting_pwd"
|
||||||
@click="jumpSettingPwd">《股权交割同意书》</text></view>
|
@click="jumpSettingPwd">《共享计划终止协议》</text></view>
|
||||||
<up-input placeholder="请输入交易密码" border="surround" v-model="form.password" :customStyle="inputCss"></up-input>
|
<up-input placeholder="请输入交易密码" border="surround" v-model="form.password" :customStyle="inputCss"></up-input>
|
||||||
</view>
|
</view>
|
||||||
<view class="_content_item">
|
<view class="_content_item">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<TopSafe></TopSafe>
|
<TopSafe></TopSafe>
|
||||||
<Header title="积分兑换专区" >
|
<Header title="兑换券专区" >
|
||||||
<!-- #ifndef MP-WEIXIN -->
|
<!-- #ifndef MP-WEIXIN -->
|
||||||
<template v-slot:right>
|
<template v-slot:right>
|
||||||
<u-icon name="share-fill" @click="onShare" color="#333" size="24"></u-icon>
|
<u-icon name="share-fill" @click="onShare" color="#333" size="24"></u-icon>
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="mid-panel">
|
<view class="mid-panel">
|
||||||
<up-image src="/static/common/jingxuan_left.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
<up-image src="/static/common/jingxuan_left.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
||||||
<view style="margin:0 12rpx">信任桥积分</view>
|
<view style="margin:0 12rpx">信任桥兑换</view>
|
||||||
<up-image src="/static/common/jingxuan_right.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
<up-image src="/static/common/jingxuan_right.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
||||||
</view>
|
</view>
|
||||||
<view class="setting-view">
|
<view class="setting-view">
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
Reference in New Issue
Block a user