add cache dir

This commit is contained in:
manhlab
2021-05-24 10:21:51 +03:00
parent 2e64e87a82
commit a0a614a669
8 changed files with 11 additions and 98 deletions

View File

@@ -41,37 +41,17 @@
</CRow>
<CRow class="form-group">
<CCol sm="6">
<CFormGroup class="form-group mb-0">
<template #label>
<slot name="label">
<label>Создатель</label>
</slot>
</template>
<template #input>
<treeselect
v-model="document.writer_id"
:multiple="false"
:options="writers"
@search-change="fetchWriters"
@input="onClearWriter"
>
<label
slot="option-label"
slot-scope="{ node }"
>{{ node.raw.department ? node.raw.label + ' - ' + node.raw.department.name : node.raw.label }}</label>
</treeselect>
</template>
</CFormGroup>
<CInput label="Автор" :value="document.creator.name" readonly class="mb-0" />
</CCol>
<CCol sm="6">
<CInput label="Автор" :value="document.creator.name" readonly class="mb-0" />
<CInput label="Автор ID" :value="document.creator.name" readonly class="mb-0" />
</CCol>
</CRow>
<CTextarea
label="Краткое содержание"
placeholder="Content..."
rows="5"
:value.sync="document.abstract"
:value.sync="document.abstract"~
/>
<CRow class="form-group">
<CCol sm="6">
@@ -302,4 +282,4 @@ export default {
}
}
};
</script>
</script>

View File

@@ -156,7 +156,6 @@ export default {
{ value: "symbol", label: "Номер регистрации" },
{ value: "abstract", label: "Краткое содержание" },
{ value: "type.name", label: "Тип документа" },
{ value: "creator.name", label: "Создатель" },
{ value: "signer.name", label: "Подписал" },
{
value: "effective_at",