diff --git a/admin-ui/src/api/system/dept.js b/admin-ui/src/api/system/dept.js index 1bed996..546b482 100644 --- a/admin-ui/src/api/system/dept.js +++ b/admin-ui/src/api/system/dept.js @@ -58,4 +58,13 @@ export function chargeRefundDept(data) { method: 'post', data: data }) +} + +// 部门积分更正 +export function editScore(data) { + return request({ + url: '/system/dept/edit-score', + method: 'post', + data: data + }) } \ No newline at end of file diff --git a/admin-ui/src/views/system/dept/index.vue b/admin-ui/src/views/system/dept/index.vue index 383c677..ff3f9ad 100644 --- a/admin-ui/src/views/system/dept/index.vue +++ b/admin-ui/src/views/system/dept/index.vue @@ -82,6 +82,13 @@ @click="handleChargeRefund(scope.row)" v-hasPermi="['system:dept:chargeRefund']" >充值/退款 + 积分更正 取 消 + + + + + + + + + + + + @@ -301,10 +345,13 @@ color: #909399; line-height: 1.5; } +.edit-score-input-number { + width: 100%; +}