TC 수정건

This commit is contained in:
kimre
2022-07-18 20:33:48 +09:00
parent a6c6db6f22
commit 2069d87f49
12 changed files with 789 additions and 752 deletions

View File

@@ -54,7 +54,8 @@
</tr>
<tr>
<th>메모</th>
<td class="sender"><textarea class="memo_text" v-model.trim="memo" ref="memo"></textarea></td>
<td class="sender"><textarea class="memo_text" v-model.trim="memo" ref="memo" maxlength="2000"
@input="memoLimitByte()"></textarea></td>
</tr>
<tr>
<th>차단여부</th>
@@ -106,6 +107,7 @@ export default {
memo: '', // 메모
seqNo: '',
props: {},
maxByte: 2000,
}
},
created() {
@@ -323,6 +325,9 @@ export default {
}
return validText
},
memoLimitByte() {
this.memo = this.getLimitedByteText(this.memo, this.maxByte);
},
msgLimitByte(){
this.word = this.getLimitedByteText(this.word, 10);
}

View File

@@ -338,7 +338,11 @@ export default {
},
todayDate() {
this.startDate = new Date(+new Date() + 3240 * 10000).toISOString().split("T")[0];
}
},
changePerPage: function () { // 페이지당 조회할 개수
this.grid.pagePerRows = this.perPageCnt;
// this.search(true);
},
},
beforeRouteLeave(to, from, next) {

View File

@@ -200,7 +200,6 @@ export default {
},
changePerPage: function () { // 페이지당 조회할 개수
this.grid.pagePerRows = this.perPageCnt;
this.search(true);
},
sendStoreData: function () {
const getP = this.$refs.table.getPagination();