Merge branch '20230424_msgsend' into develop

This commit is contained in:
2023-04-25 11:04:12 +09:00
8 changed files with 296 additions and 6 deletions

View File

@@ -150,7 +150,7 @@
<tr>
<th>메모</th>
<td class="sender">
<textarea class="memo_text" v-model="memo">{{ memo }}</textarea>
<textarea class="memo_text" placeholder="내용을 입력해주세요" v-model="memo">{{ memo }}</textarea>
</td>
</tr>
</tbody>
@@ -374,7 +374,13 @@ export default {
} */
},
updateSttus() {
this.confirmUpdateOpen();
if(this.rejtCnt > 0 & (this.memo == null | this.memo == '')){
this.row.title = '메모 입력';
this.row.msg1 = '메모를 입력해주세요.'
this.$refs.commmonModal.alertModalOpen(this.row);
} else {
this.confirmUpdateOpen();
}
// this.doSave();
},
async doSave() {