去掉积分 +支付流水号

This commit is contained in:
2025-09-15 17:18:49 +08:00
parent e21ff23fa0
commit 5999a87725
2 changed files with 22 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="mod-config">
<el-dialog
:title="`${isEdit ? '编辑' : '充值/扣除'}积分`"
:title="`${isEdit ? '编辑' : '充值'}积分`"
:visible.sync="dialogVisible"
width="600px"
>
@@ -68,7 +68,7 @@
</div>
</el-form-item>
<el-form-item label="积分分类" prop="type" class="form_item">
<!-- <el-form-item label="积分分类" prop="type" class="form_item">
<div>
<el-select
:show-all-levels="false"
@@ -85,7 +85,7 @@
>
</el-option
></el-select></div
></el-form-item>
></el-form-item> -->
</template>
<el-form-item label="充值积分" prop="score">
@@ -381,7 +381,7 @@ export default {
this.addPointsForm.userName = this.dataInfo.name;
this.addPointsForm.userId = this.dataInfo.id;
}
this.addPointsForm.type = 0;
this.dialogVisible = true;
},
handleSubmit: debounce(async function() {

View File

@@ -217,7 +217,8 @@
size="small"
@click="ck(scope.row)"
>
/
<!-- / -->
</el-button>
</template>
</el-table-column>
@@ -254,7 +255,8 @@
size="small"
@click="handleJF(scope.row)"
>
/
<!-- / -->
</el-button>
</template>
</el-table-column>
@@ -496,7 +498,7 @@
<open-vip v-if="openVipVisible" ref="openVip"> </open-vip>
<el-dialog
title="充/扣天医币"
title="充天医币"
:close-on-click-modal="false"
:visible.sync="adc"
append-to-body
@@ -522,9 +524,8 @@
<!-- <el-form-item label="充/扣主题">
<el-input v-model="pointForm.title"></el-input>
</el-form-item> -->
<el-form-item label="充值类型" prop="pointType">
<!-- <el-input v-model="pointForm.pointType" placeholder="0-普通 1-vip"></el-input>
-->
<!-- <el-form-item label="充值类型" prop="pointType">
<el-select v-model="pointForm.pointType" placeholder="请选择">
<el-option
v-for="item in options"
@@ -534,7 +535,7 @@
>
</el-option>
</el-select>
</el-form-item>
</el-form-item> -->
<el-form-item label="金额" prop="pointAmount">
<el-input-number
v-model="pointForm.pointAmount"
@@ -543,6 +544,15 @@
</el-input-number>
</el-form-item>
<el-form-item label="交易流水号">
<el-input
v-model="pointForm.remark"
placeholder="交易流水号"
>
</el-input>
</el-form-item>
<el-form-item label="充扣明细">
<el-input
type="textarea"
@@ -892,6 +902,7 @@ export default {
// 充值扣款天医币
ck(e) {
this.pointForm = e;
this.pointForm.pointType = 0;
this.adc = true;
},
handleRecharge(val) {