fix: update SIM serial number binding in WorkerPda.vue
gitea/salix-front/pipeline/pr-master This commit looks good
Details
gitea/salix-front/pipeline/pr-master This commit looks good
Details
This commit is contained in:
parent
27f8a95e6f
commit
a7fd073886
|
@ -27,7 +27,7 @@ const initialData = computed(() => {
|
|||
return {
|
||||
userFk: routeId.value,
|
||||
deviceProductionFk: null,
|
||||
simSerialNumber: null,
|
||||
simFk: null,
|
||||
};
|
||||
});
|
||||
|
||||
|
@ -42,7 +42,7 @@ const deallocatePDA = async (deviceProductionFk) => {
|
|||
|
||||
function reloadData() {
|
||||
initialData.value.deviceProductionFk = null;
|
||||
initialData.value.simSerialNumber = null;
|
||||
initialData.value.simFk = null;
|
||||
paginate.value.fetch();
|
||||
}
|
||||
</script>
|
||||
|
@ -89,7 +89,7 @@ function reloadData() {
|
|||
/>
|
||||
<VnInput
|
||||
:label="t('Current SIM')"
|
||||
:model-value="row?.simSerialNumber"
|
||||
:model-value="row?.simFk"
|
||||
disable
|
||||
/>
|
||||
<QBtn
|
||||
|
@ -150,7 +150,7 @@ function reloadData() {
|
|||
</template>
|
||||
</VnSelect>
|
||||
<VnInput
|
||||
v-model="data.simSerialNumber"
|
||||
v-model="data.simFk"
|
||||
:label="t('SIM serial number')"
|
||||
id="simSerialNumber"
|
||||
use-input
|
||||
|
|
Loading…
Reference in New Issue