mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 00:17:26 +09:00
공지사항 수정 pop 오픈시 null 값에 split 되는 부분 수정
This commit is contained in:
@@ -210,10 +210,10 @@ export default {
|
|||||||
this.emgYn = props.emgYn;
|
this.emgYn = props.emgYn;
|
||||||
this.useYn = props.useYn;
|
this.useYn = props.useYn;
|
||||||
this.ctgCd = props.ctgCd;
|
this.ctgCd = props.ctgCd;
|
||||||
this.fileNm = props.fileNm.split(',');
|
this.fileNm = props.fileNm && props.fileNm.split(',');
|
||||||
this.filePath = props.filePath.split(',');
|
this.filePath = props.filePath && props.filePath.split(',');
|
||||||
this.fileTitle = props.fileTitle.split(',');
|
this.fileTitle = props.fileTitle && props.fileTitle.split(',');
|
||||||
this.fileNo = props.fileNo.split(',');
|
this.fileNo = props.fileNo && props.fileNo.split(',');
|
||||||
this.fileCount = props.fileCount;
|
this.fileCount = props.fileCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -133,11 +133,13 @@
|
|||||||
|
|
||||||
<!-- 공지사항 채번 -->
|
<!-- 공지사항 채번 -->
|
||||||
<select id="insertNoticeNtNo" resultType="int">
|
<select id="insertNoticeNtNo" resultType="int">
|
||||||
|
/* homeMgt-mapper.xml (insertNoticeNtNo) */
|
||||||
SELECT LAST_INSERT_ID()
|
SELECT LAST_INSERT_ID()
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 공지사항 파일 등록 -->
|
<!-- 공지사항 파일 등록 -->
|
||||||
<insert id="insertNoticeFile" parameterType="kr.co.uplus.ez.api.homeMgt.dto.InsertNoticeFileDto">
|
<insert id="insertNoticeFile" parameterType="kr.co.uplus.ez.api.homeMgt.dto.InsertNoticeFileDto">
|
||||||
|
/* homeMgt-mapper.xml (insertNoticeFile) */
|
||||||
INSERT INTO
|
INSERT INTO
|
||||||
hubez_common.EZ_BBS_FATC (
|
hubez_common.EZ_BBS_FATC (
|
||||||
BBS_DIV_CD,
|
BBS_DIV_CD,
|
||||||
|
|||||||
Reference in New Issue
Block a user