mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 03:28:39 +09:00
TC 수정건
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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) {
|
||||
|
||||
|
||||
@@ -200,7 +200,6 @@ export default {
|
||||
},
|
||||
changePerPage: function () { // 페이지당 조회할 개수
|
||||
this.grid.pagePerRows = this.perPageCnt;
|
||||
this.search(true);
|
||||
},
|
||||
sendStoreData: function () {
|
||||
const getP = this.$refs.table.getPagination();
|
||||
|
||||
Reference in New Issue
Block a user