add cache dir
This commit is contained in:
2
.env
2
.env
@@ -29,7 +29,7 @@ MAIL_PORT=587
|
||||
MAIL_USERNAME=2e99b04784720bfd52cacc0dde78e468
|
||||
MAIL_PASSWORD=24cc9628b13ab2040c7d2f1873973db7
|
||||
MAIL_ENCRYPTION=tls
|
||||
MAIL_FROM_ADDRESS=pantakson@gmail.com
|
||||
MAIL_FROM_ADDRESS=manhtran17101998@gmail.com
|
||||
MAIL_FROM_NAME="${APP_NAME}"
|
||||
|
||||
AWS_ACCESS_KEY_ID=
|
||||
|
||||
@@ -34,4 +34,4 @@ class CreatePersonalAccessTokensTable extends Migration
|
||||
{
|
||||
Schema::dropIfExists('personal_access_tokens');
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -263,9 +263,6 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
||||
}, {
|
||||
value: "type.name",
|
||||
label: "Тип документа"
|
||||
}, {
|
||||
value: "creator.name",
|
||||
label: "Создатель"
|
||||
}, {
|
||||
value: "signer.name",
|
||||
label: "Подписал"
|
||||
|
||||
65
public/6.js
65
public/6.js
@@ -612,70 +612,7 @@ var render = function() {
|
||||
"CCol",
|
||||
{ attrs: { sm: "6" } },
|
||||
[
|
||||
_c("CFormGroup", {
|
||||
staticClass: "form-group mb-0",
|
||||
scopedSlots: _vm._u(
|
||||
[
|
||||
{
|
||||
key: "label",
|
||||
fn: function() {
|
||||
return [
|
||||
_vm._t("label", [
|
||||
_c("label", [_vm._v("Создатель")])
|
||||
])
|
||||
]
|
||||
},
|
||||
proxy: true
|
||||
},
|
||||
{
|
||||
key: "input",
|
||||
fn: function() {
|
||||
return [
|
||||
_c("treeselect", {
|
||||
attrs: {
|
||||
multiple: false,
|
||||
options: _vm.writers
|
||||
},
|
||||
on: {
|
||||
"search-change": _vm.fetchWriters,
|
||||
input: _vm.onClearWriter
|
||||
},
|
||||
scopedSlots: _vm._u([
|
||||
{
|
||||
key: "option-label",
|
||||
fn: function(ref) {
|
||||
var node = ref.node
|
||||
return _c("label", {}, [
|
||||
_vm._v(
|
||||
_vm._s(
|
||||
node.raw.department
|
||||
? node.raw.label +
|
||||
" - " +
|
||||
node.raw.department.name
|
||||
: node.raw.label
|
||||
)
|
||||
)
|
||||
])
|
||||
}
|
||||
}
|
||||
]),
|
||||
model: {
|
||||
value: _vm.document.writer_id,
|
||||
callback: function($$v) {
|
||||
_vm.$set(_vm.document, "writer_id", $$v)
|
||||
},
|
||||
expression: "document.writer_id"
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
proxy: true
|
||||
}
|
||||
],
|
||||
null,
|
||||
true
|
||||
)
|
||||
})
|
||||
|
||||
],
|
||||
1
|
||||
),
|
||||
|
||||
@@ -49900,9 +49900,9 @@ __webpack_require__.r(__webpack_exports__);
|
||||
/*! no static exports found */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
__webpack_require__(/*! C:\Users\panta\Desktop\qlvbdh\resources\js\app.js */"./resources/js/app.js");
|
||||
__webpack_require__(/*! C:\Users\panta\Desktop\qlvbdh\resources\sass\app.scss */"./resources/sass/app.scss");
|
||||
module.exports = __webpack_require__(/*! C:\Users\panta\Desktop\qlvbdh\resources\js\src\assets\scss\style.scss */"./resources/js/src/assets/scss/style.scss");
|
||||
__webpack_require__("./resources/js/app.js");
|
||||
__webpack_require__("./resources/sass/app.scss");
|
||||
module.exports = __webpack_require__(/*! C:\Users\panta\Desktop\manhlab\resources\js\src\assets\scss\style.scss */"./resources/js/src/assets/scss/style.scss");
|
||||
|
||||
|
||||
/***/ })
|
||||
|
||||
@@ -120354,7 +120354,7 @@ var mutations = {
|
||||
/*! no static exports found */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(/*! C:\Users\panta\Desktop\qlvbdh\resources\js\src\main.js */"./resources/js/src/main.js");
|
||||
module.exports = __webpack_require__(/*! C:\Users\panta\Desktop\manhlab\resources\js\src\main.js */"./resources/js/src/main.js");
|
||||
|
||||
|
||||
/***/ })
|
||||
|
||||
@@ -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>
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user