3232
This commit is contained in:
parent
e6921b7511
commit
4275557e20
|
|
@ -128,7 +128,7 @@
|
|||
|
||||
<view v-if="tabList[tabCur].id == 1" class="bt-fixed">
|
||||
<template v-if="subTab[subTabCur].id != 4">
|
||||
<view v-if="subTab[subTabCur].id != 6 && is_exchange == '1' && show_dadajuan" class="btn center"
|
||||
<view class="btn center"
|
||||
@click="open('changePop')">哈尼券</view>
|
||||
<view v-if="subTab[subTabCur].id != 2" class="btn2 center" @click="open('sendPop')">发货</view>
|
||||
<view v-if="subTab[subTabCur].id != 6" class="btn center" @click="open('model')">上锁</view>
|
||||
|
|
@ -394,7 +394,7 @@
|
|||
zhanshiMoney: 0,
|
||||
isAgree: false,
|
||||
is_exchange: '0',
|
||||
show_dadajuan: false
|
||||
show_dadajuan: true
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
|
|
|
|||
|
|
@ -252,9 +252,9 @@ public class UserController : ControllerBase
|
|||
/// POST /api/profitMoney
|
||||
/// Requirements: 1.1
|
||||
/// </summary>
|
||||
[HttpPost("profitMoney")]
|
||||
[HttpGet("profitMoney")]
|
||||
[Authorize]
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetMoneyRecords([FromBody] AssetRecordRequest? request)
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetMoneyRecords([FromQuery] AssetRecordRequest? request)
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
if (userId == null)
|
||||
|
|
@ -286,9 +286,9 @@ public class UserController : ControllerBase
|
|||
/// POST /api/profitIntegral
|
||||
/// Requirements: 1.2
|
||||
/// </summary>
|
||||
[HttpPost("profitIntegral")]
|
||||
[HttpGet("c")]
|
||||
[Authorize]
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetIntegralRecords([FromBody] AssetRecordRequest? request)
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetIntegralRecords([FromQuery] AssetRecordRequest? request)
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
if (userId == null)
|
||||
|
|
@ -320,9 +320,9 @@ public class UserController : ControllerBase
|
|||
/// POST /api/profitScore
|
||||
/// Requirements: 1.3
|
||||
/// </summary>
|
||||
[HttpPost("profitScore")]
|
||||
[HttpGet("profitScore")]
|
||||
[Authorize]
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetScoreRecords([FromBody] AssetRecordRequest? request)
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetScoreRecords([FromQuery] AssetRecordRequest? request)
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
if (userId == null)
|
||||
|
|
@ -354,9 +354,9 @@ public class UserController : ControllerBase
|
|||
/// POST /api/profitPay
|
||||
/// Requirements: 1.4
|
||||
/// </summary>
|
||||
[HttpPost("profitPay")]
|
||||
[HttpGet("profitPay")]
|
||||
[Authorize]
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetPayRecords([FromBody] AssetRecordRequest? request)
|
||||
public async Task<ApiResponse<AssetRecordPageResponse>> GetPayRecords([FromQuery] AssetRecordRequest? request)
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
if (userId == null)
|
||||
|
|
@ -396,7 +396,7 @@ public class UserController : ControllerBase
|
|||
/// Requirements: 2.1-2.5
|
||||
/// </remarks>
|
||||
/// <returns>VIP信息数据</returns>
|
||||
[HttpPost("vip_list")]
|
||||
[HttpGet("vip_list")]
|
||||
[Authorize]
|
||||
[ProducesResponseType(typeof(ApiResponse<VipInfoResponse>), StatusCodes.Status200OK)]
|
||||
[ProducesResponseType(typeof(ApiResponse<VipInfoResponse>), StatusCodes.Status401Unauthorized)]
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user