|
@@ -47,18 +47,18 @@ if($recordType === 'NOTE'){
|
|
<tr>
|
|
<tr>
|
|
<th class="border-bottom-0">ICD</th>
|
|
<th class="border-bottom-0">ICD</th>
|
|
<th class="border-bottom-0">Description</th>
|
|
<th class="border-bottom-0">Description</th>
|
|
- <th class="border-bottom-0" v-if="fields.length > 1"></th>
|
|
|
|
|
|
+ <th class="border-bottom-0"></th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
<tr v-for="(fl,ind) in fields">
|
|
<tr v-for="(fl,ind) in fields">
|
|
<td>
|
|
<td>
|
|
- <input type="text" required class="icd-input" @keyup="checkDescription(fl)" icd-autocomplete-code :name="'reasonIcd'+(ind+1)" :data-target="'input[name=reasonIcd'+(ind+1)+'Description]'" v-model="fl.reason" :placeholder="'ICD '+(ind+1)" />
|
|
|
|
|
|
+ <input type="text" required class="icd-input" @change="checkDescription(fl)" icd-autocomplete-code :name="'reasonIcd'+(ind+1)" :data-target="'input[name=reasonIcd'+(ind+1)+'Description]'" v-model="fl.reason" :placeholder="'ICD '+(ind+1)" />
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
<input type="text" class="form-control form-control-sm" icd-autocomplete-description :name="'reasonIcd'+(ind+1)+'Description'" v-model="fl.description">
|
|
<input type="text" class="form-control form-control-sm" icd-autocomplete-description :name="'reasonIcd'+(ind+1)+'Description'" v-model="fl.description">
|
|
</td>
|
|
</td>
|
|
- <td v-if="fields.length > 1"><a href="javascript:;" @click.prevent="removeICDCode(fl)" class="text-danger"><i class="fas fa-times-circle"></i></a></td>
|
|
|
|
|
|
+ <td><a href="javascript:;" @click.prevent="removeICDCode(fl)" class="text-danger"><i class="fas fa-times-circle"></i></a></td>
|
|
</tr>
|
|
</tr>
|
|
<tr v-if="fields.length < 4">
|
|
<tr v-if="fields.length < 4">
|
|
<td colspan="3">
|
|
<td colspan="3">
|