bugs fixed
This commit is contained in:
parent
075a1ff20b
commit
84616858cc
|
|
@ -163,4 +163,9 @@ export const locale = {
|
|||
LOADING: "Загружается",
|
||||
FIRST_TOUCH_WARNING:
|
||||
"Пожалуйста, введите номер и нажмите войти для продолжения!",
|
||||
INPUT_NUMBER: "Введите номер",
|
||||
INPUT_DATE: "Дата ввода",
|
||||
REGISTER_DATE: "Дата регистрации",
|
||||
STATUS: "Статус",
|
||||
REMARK: "Примечание",
|
||||
};
|
||||
|
|
|
|||
|
|
@ -160,4 +160,9 @@ export const locale = {
|
|||
DATA_NOT_FOUND: "Maglumat tapylmady",
|
||||
LOADING: "Ýüklenilýär",
|
||||
FIRST_TOUCH_WARNING: "Belgini ýazyň we dowam etmek üçin girişe basyň!",
|
||||
INPUT_NUMBER: "Giriş belgisi",
|
||||
INPUT_DATE: "Girizilen senesi",
|
||||
REGISTER_DATE: "Hasaba alyş senesi",
|
||||
STATUS: "Ýagdaýy",
|
||||
REMARK: "Bellik",
|
||||
};
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@ const helpers = {
|
|||
}
|
||||
},
|
||||
formatDate(date, format) {
|
||||
return dayjs(date).format(format);
|
||||
if (date) return dayjs(date).format(format);
|
||||
return "";
|
||||
},
|
||||
changeDateFormat(date) {
|
||||
const dates = date.split(".");
|
||||
|
|
|
|||
|
|
@ -7,15 +7,15 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex mx-auto mt-20 text-3xl text-primary">
|
||||
<div v-if="firstTouched">
|
||||
<div class="flex sm:w-2/3 mx-auto mt-20 text-3xl text-primary">
|
||||
<div v-if="firstTouched" class="w-3/4">
|
||||
<div v-if="isLoading">
|
||||
{{ $t('LOADING') }} ...
|
||||
</div>
|
||||
<div v-else>
|
||||
<div v-if="hasNumber" class="flex sm:w-2/3 intro-y grid grid-cols-1 lg:grid-cols-2 gap-6">
|
||||
<PreviewComponent class="intro-y box">
|
||||
<div class="mt-2 font-medium text-center"> {{ contract.Workflow }} </div>
|
||||
<div v-if="hasNumber" class=" text-base text-black">
|
||||
<PreviewComponent class="intro-y box py-4">
|
||||
<div class="mt-2 p-2 font-medium text-center"> {{ contract.Workflow }} </div>
|
||||
<div>
|
||||
<div class="flex pl-4 m-2">
|
||||
<div class="flex items-center">
|
||||
|
|
@ -45,13 +45,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="flex pl-4 m-2">
|
||||
<div class="flex items-center">
|
||||
<div class="font-medium">Workflow :</div>
|
||||
<div class="pl-3">{{ contract.Workflow }}</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<div class="flex pl-4 m-2">
|
||||
<div class="flex items-center">
|
||||
<div class="font-medium"> {{ $t('REMARK') }}:</div>
|
||||
|
|
@ -61,25 +54,13 @@
|
|||
</div>
|
||||
|
||||
</PreviewComponent>
|
||||
|
||||
<!-- <PreviewComponent class="intro-y box">
|
||||
<div class="mt-2 text-center"> {{ $t("DEP_ANALYSYS") }}</div>
|
||||
</PreviewComponent>
|
||||
|
||||
<PreviewComponent class="intro-y box">
|
||||
<div class="mt-2 text-center"> {{ $t("TDHCMB_RESULT") }}</div>
|
||||
</PreviewComponent>
|
||||
|
||||
<PreviewComponent class="intro-y box">
|
||||
<div class="mt-2 text-center"> {{ $t("DIR_LAW_AND_JUSTICE") }}</div>
|
||||
</PreviewComponent> -->
|
||||
</div>
|
||||
<div v-else>
|
||||
{{ $t('DATA_NOT_FOUND') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div v-else class="text-center">
|
||||
{{ $t('FIRST_TOUCH_WARNING') }}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue