完善功能
This commit is contained in:
@ -44,7 +44,7 @@ getBankLists()
|
||||
|
||||
// 弹窗标题
|
||||
const popupTitle = computed(() => {
|
||||
return mode.value == 'edit' ? '提现申请' : '提现申请'
|
||||
return mode.value = '提现申请'
|
||||
})
|
||||
|
||||
// 表单数据
|
||||
|
||||
@ -4,11 +4,21 @@
|
||||
<el-form-item label="账户余额" prop="order_sn">
|
||||
¥{{ accountInfo.money }}
|
||||
</el-form-item>
|
||||
<el-form-item label="总收益" prop="order_sn">
|
||||
¥{{ accountInfo.total_reflect_amount }}
|
||||
</el-form-item>
|
||||
|
||||
<el-form class="mb-[-16px]" :model="queryParams" inline>
|
||||
<el-form-item label="订单编号" prop="order_sn">
|
||||
<el-input class="w-[280px]" v-model="queryParams.order_sn" clearable placeholder="请输入订单编号" />
|
||||
</el-form-item>
|
||||
<el-form-item class="w-[280px]" label="审核状态" prop="server_type">
|
||||
<el-select v-model="queryParams.status" clearable placeholder="请选择">
|
||||
<el-option label="待审核" value="0"></el-option>
|
||||
<el-option label="审核通过" value="1"></el-option>
|
||||
<el-option label="审核失败" value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="resetPage">查询</el-button>
|
||||
<el-button @click="resetParams">重置</el-button>
|
||||
@ -23,10 +33,10 @@
|
||||
</template>
|
||||
新增
|
||||
</el-button>
|
||||
<el-button v-perms="['parten_reflect/delete']" :disabled="!selectData.length"
|
||||
<!-- <el-button v-perms="['parten_reflect/delete']" :disabled="!selectData.length"
|
||||
@click="handleDelete(selectData)">
|
||||
删除
|
||||
</el-button>
|
||||
</el-button> -->
|
||||
<div class="mt-4">
|
||||
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" />
|
||||
@ -68,7 +78,8 @@
|
||||
<pagination v-model="pager" @change="getLists" />
|
||||
</div>
|
||||
</el-card>
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
||||
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData"
|
||||
@success="getLists(); getAccountInfo();"" @close=" showEdit = false" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user