You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
465 B
22 lines
465 B
<?php
|
|
|
|
|
|
namespace App\Admin\Common;
|
|
|
|
|
|
class LinkUrl
|
|
{
|
|
/**
|
|
* js
|
|
*/
|
|
const VUE_JS = 'https://cdn.jsdelivr.net/npm/vue';
|
|
const ELEMENT_UI_JS = 'https://unpkg.com/element-ui/lib/index.js';
|
|
const API_GL_JS = 'https://map.qq.com/api/gljs?v=1.exp&key=7NSBZ-ETU3O-CW6WN-S3YM5-KERR5-RQBHS';
|
|
|
|
|
|
/**
|
|
* css
|
|
*/
|
|
const ELEMENT_UI_CSS="https://unpkg.com/element-ui/lib/theme-chalk/index.css";
|
|
const DETAIL_CSS = 'css/detail.css';
|
|
}
|