69 lines
2.2 KiB
PHP
69 lines
2.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @author Any
|
|
* @description KISS
|
|
* @date 2020-11-4
|
|
* @version 1.0.0
|
|
*
|
|
* _____LOG_____
|
|
*
|
|
*/
|
|
$this->title = '主页';
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<style>
|
|
#container {
|
|
width: 100%;
|
|
height: 60%;
|
|
top:0px;
|
|
}
|
|
</style>
|
|
|
|
<div >
|
|
<div class="layui-card">
|
|
<div class="layui-bg-gray" style="padding: 10px;">
|
|
<div class="layui-row layui-col-space15">
|
|
|
|
<div class="layui-col-md12">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<div class="layui-row layui-col-space15">
|
|
|
|
<div class="layui-col-md12">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">门店管理后台地址</div>
|
|
<div class="layui-card-body">
|
|
<div id="cd_location_body">
|
|
<div><span id="cd_location"></span>/store</div>
|
|
<div style="font-size: 8px">如果本机浏览器访问不了,则在本机中换个浏览器进行访问,或开启浏览器无痕模式进行访问</div>
|
|
<div style="font-size: 8px">本地址访问人员:门店管理员、门店医师</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div id="container"></div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
<?php $this->beginBlock('js_script_wrap') ?>
|
|
$('#cd_location_body').hide();
|
|
layui.config({
|
|
base: '/statics/layuiadmin/' //静态资源所在路径
|
|
}).extend({
|
|
index: 'lib/index', //主入口模块
|
|
}).use(['index','echarts'],function(){
|
|
});
|
|
$('#cd_location_body').show();
|
|
<?php $this->endBlock(); ?>
|
|
</script>
|
|
<?php $this->registerJs($this->blocks['js_script_wrap'],\yii\web\View::POS_END); ?>
|