wip
This commit is contained in:
parent
7280c7e3c2
commit
9d4c117c44
|
|
@ -2063,11 +2063,13 @@ module.exports = {
|
|||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony import */ var _js_http__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../js/http */ "./resources/js/http.js");
|
||||
var _document$querySelect;
|
||||
|
||||
|
||||
window.$http = _js_http__WEBPACK_IMPORTED_MODULE_0__["default"];
|
||||
var base = document.querySelector('base').href;
|
||||
var asset = document.querySelector('meta[name="asset"]').content;
|
||||
var editor_language = document.querySelector('meta[name="editor_language"]').content;
|
||||
var editor_language = ((_document$querySelect = document.querySelector('meta[name="editor_language"]')) === null || _document$querySelect === void 0 ? void 0 : _document$querySelect.content) || 'zh_cn';
|
||||
$(document).on('click', '.open-file-manager', function (event) {
|
||||
var $this = $(this);
|
||||
layer.open({
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import http from "../../../js/http";
|
|||
window.$http = http;
|
||||
const base = document.querySelector('base').href;
|
||||
const asset = document.querySelector('meta[name="asset"]').content;
|
||||
const editor_language = document.querySelector('meta[name="editor_language"]').content;
|
||||
const editor_language = document.querySelector('meta[name="editor_language"]')?.content || 'zh_cn';
|
||||
|
||||
$(document).on('click', '.open-file-manager', function(event) {
|
||||
const $this = $(this);
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
@extends('layout.master')
|
||||
@section('body-class', 'page-categories')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
{{ dd($brands) }}
|
||||
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
Loading…
Reference in New Issue