2025-05-17 15:17:14 +00:00
|
|
|
<view class="flex-col justify-start page">
|
|
|
|
<view class="flex-col list">
|
2025-05-29 13:31:35 +00:00
|
|
|
<view class="flex-col list-item mt-15" wx:for="{{ userProjectList }}" wx:for-item="item" wx:for-index="index" wx:key="index" >
|
2025-05-17 15:17:14 +00:00
|
|
|
<view class="flex-row justify-between items-center self-stretch">
|
|
|
|
<view class="flex-row items-center">
|
|
|
|
<image
|
|
|
|
class="shrink-0 image"
|
2025-05-29 13:31:35 +00:00
|
|
|
src="{{ item.projectImage }}"
|
2025-05-17 15:17:14 +00:00
|
|
|
/>
|
|
|
|
<view class="ml-18 flex-col shrink-0 group">
|
2025-05-29 13:31:35 +00:00
|
|
|
<text class="font">{{ item.projectName }}</text>
|
|
|
|
<text class="mt-12 font_2 text">结算T+{{ item.projectSettlementCycle }} 实时数据</text>
|
2025-05-17 15:17:14 +00:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<image
|
|
|
|
class="image_2"
|
2025-05-28 04:51:02 +00:00
|
|
|
src="./images/yjt.png"
|
2025-05-29 13:31:35 +00:00
|
|
|
bind:tap="gotoProjectDetail"
|
|
|
|
data-id="{{ item.projectId }}"
|
2025-05-17 15:17:14 +00:00
|
|
|
/>
|
|
|
|
</view>
|
|
|
|
<view class="mt-14 flex-row group_2 equal-division">
|
|
|
|
<view class="flex-row justify-center items-center section equal-division-item">
|
|
|
|
<image
|
|
|
|
class="image_3"
|
2025-05-28 04:51:02 +00:00
|
|
|
src="./images/tgm.png"
|
2025-05-17 15:17:14 +00:00
|
|
|
/>
|
|
|
|
<text class="ml-4 font_3">推广码</text>
|
|
|
|
</view>
|
2025-05-29 13:31:35 +00:00
|
|
|
<view class="ml-14 flex-row items-center section equal-division-item_2" bind:tap="gotoSubSettlement">
|
2025-05-17 15:17:14 +00:00
|
|
|
<image
|
|
|
|
class="shrink-0 image_4"
|
2025-05-28 04:51:02 +00:00
|
|
|
src="./images/jsmx.png"
|
2025-05-17 15:17:14 +00:00
|
|
|
/>
|
|
|
|
<text class="font_4 text_2 ml-3">结算明细</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|