결합할인수정 기능 보완

This commit is contained in:
Leeminha
2022-12-12 15:33:17 +09:00
parent 1d1da28f35
commit e8b8e17e9c
6 changed files with 37 additions and 2 deletions

View File

@@ -90,7 +90,7 @@
<td colspan="4"><input type="text" disabled v-model="subsNo" /></td>
<th>결합할인여부</th>
<td colspan="1">
<select name="" id="" v-model="bindDcYn">
<select name="" id="" v-bind:disabled="stat != '유큐브개통'" v-model="bindDcYn">
<option value="Y">Y</option>
<option value="N">N</option>
</select>
@@ -349,6 +349,8 @@ export default {
this.row.adminId = this.adminId;
this.row.adminNm = this.adminNm;
this.row.bindDcYn = this.bindDcYn;
this.row.stat = this.stat;
this.row.subsNo = this.subsNo;
try {
const response = await custMgtApi.updateAdminInfo(this.row);