사용자(관리자) 수정

This commit is contained in:
USER
2022-09-14 18:12:25 +09:00
parent 93b7437afc
commit d5c4b2e113
4 changed files with 6 additions and 5 deletions

View File

@@ -157,7 +157,8 @@ export default {
async memoTotalModalOpen(props){ async memoTotalModalOpen(props){
this.grid.params.userId = props.adminId; this.grid.params.userId = props.adminId;
this.userId = props.adminId; this.userId = props.adminId;
// this.grid.params.userId = props.serviceId;
// this.userId = props.serviceId;
// 메모 모달팝업 오픈 // 메모 모달팝업 오픈
var dimmed = document.getElementsByClassName('memoTotal'); var dimmed = document.getElementsByClassName('memoTotal');

View File

@@ -303,7 +303,7 @@ export default {
this.$refs.commmonModal.confirmModalOpen(props); this.$refs.commmonModal.confirmModalOpen(props);
}, },
async memberDetail(serviceId) { async memberDetail(serviceId) {
this.svcUserId = serviceId; this.svcUserId = serviceId;
this.row.userId = serviceId; this.row.userId = serviceId;
try { try {
const response = await custMgtApi.memberAdminDetail(this.row); const response = await custMgtApi.memberAdminDetail(this.row);

View File

@@ -10,7 +10,7 @@ import java.io.Serializable;
@Data @Data
public class AllMemoListReqDto implements Serializable { public class AllMemoListReqDto implements Serializable {
@NotNull // @NotNull
@ApiModelProperty(example = "사용자 ID", name = "사용자 ID", dataType = "String") @ApiModelProperty(example = "사용자 ID", name = "사용자 ID", dataType = "String")
private String userId; private String userId;

View File

@@ -14,11 +14,11 @@ public class MemberAdminDetailReqDto implements Serializable {
@ApiModelProperty(example = "사용자 ID", name = "사용자 ID", dataType = "String") @ApiModelProperty(example = "사용자 ID", name = "사용자 ID", dataType = "String")
private String userId; private String userId;
@NotNull //@NotNull
@ApiModelProperty(example = "페이지당 조회할 목록 수", name = "페이지당 조회할 목록 수", dataType = "String") @ApiModelProperty(example = "페이지당 조회할 목록 수", name = "페이지당 조회할 목록 수", dataType = "String")
private int pagePerRows; private int pagePerRows;
@NotNull //@NotNull
@ApiModelProperty(example = "현재 페이지", name = "현재 페이지", dataType = "int") @ApiModelProperty(example = "현재 페이지", name = "현재 페이지", dataType = "int")
private int page; private int page;
} }