This commit is contained in:
dute7liang
2024-01-20 20:00:05 +08:00
parent 8936e5670b
commit a0944bc418

View File

@@ -57,6 +57,11 @@
<cai-dict-tag :options="accountTypeList" :value="scope.row.accountType"/>
</template>
</el-table-column>
<el-table-column label="变动" align="center" prop="changeValue" >
<template v-slot="scope" >
<span :class="scope.row.changeValue >= 0 ?'font-red':'font-green'">{{scope.row.changeValue}}</span>
</template>
</el-table-column>
<el-table-column label="业务操作" align="center" prop="cateAdminName" />
<el-table-column label="说明" align="center" prop="cateAdminName" min-width="200">
<template v-slot="scope">
@@ -65,7 +70,6 @@
</div>
</template>
</el-table-column>
<el-table-column label="变动" align="center" prop="changeValue" />
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="后台操作" align="center" prop="isAdmin" >
<template v-slot="scope">
@@ -219,6 +223,16 @@ export default {
})*/
this.$modal.msgWarning("无关联记录");
break;
case "SYSTEM":
if(row.changeType === 501){
this.rechargeOrderInfoVisible = true
this.$nextTick(() => {
this.$refs.rechargeOrderInfo.traceIdInit(row.traceId)
})
}else {
this.$modal.msgWarning("无关联记录");
}
break;
default:
this.$modal.msgSuccess("无关联记录");
break;
@@ -234,4 +248,13 @@ export default {
align-items: center; /* 垂直居中 */
justify-content: center; /* 水平居中 */
}
.font-red {
color: red;
}
.font-green {
color: green;
}
.font-blue {
color: blue;
}
</style>