init
This commit is contained in:
@@ -57,6 +57,11 @@
|
|||||||
<cai-dict-tag :options="accountTypeList" :value="scope.row.accountType"/>
|
<cai-dict-tag :options="accountTypeList" :value="scope.row.accountType"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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" />
|
||||||
<el-table-column label="说明" align="center" prop="cateAdminName" min-width="200">
|
<el-table-column label="说明" align="center" prop="cateAdminName" min-width="200">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
@@ -65,7 +70,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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="remark" />
|
||||||
<el-table-column label="后台操作" align="center" prop="isAdmin" >
|
<el-table-column label="后台操作" align="center" prop="isAdmin" >
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
@@ -219,6 +223,16 @@ export default {
|
|||||||
})*/
|
})*/
|
||||||
this.$modal.msgWarning("无关联记录");
|
this.$modal.msgWarning("无关联记录");
|
||||||
break;
|
break;
|
||||||
|
case "SYSTEM":
|
||||||
|
if(row.changeType === 501){
|
||||||
|
this.rechargeOrderInfoVisible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.rechargeOrderInfo.traceIdInit(row.traceId)
|
||||||
|
})
|
||||||
|
}else {
|
||||||
|
this.$modal.msgWarning("无关联记录");
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
this.$modal.msgSuccess("无关联记录");
|
this.$modal.msgSuccess("无关联记录");
|
||||||
break;
|
break;
|
||||||
@@ -234,4 +248,13 @@ export default {
|
|||||||
align-items: center; /* 垂直居中 */
|
align-items: center; /* 垂直居中 */
|
||||||
justify-content: center; /* 水平居中 */
|
justify-content: center; /* 水平居中 */
|
||||||
}
|
}
|
||||||
|
.font-red {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
.font-green {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
.font-blue {
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user