Commit 01905882 by lihu541

列表调整

parent 3f070174
...@@ -58,10 +58,15 @@ input::-webkit-input-placeholder { color: #BDCADA; } ...@@ -58,10 +58,15 @@ input::-webkit-input-placeholder { color: #BDCADA; }
::-webkit-scrollbar-thumb{border-radius: 0px;-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,1);} ::-webkit-scrollbar-thumb{border-radius: 0px;-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,1);}
/*基本布局*/ /*基本布局*/
.container { .container{
background: -webkit-linear-gradient(top,#272e52,#171c30); width:100%;
height: 100%; max-width:1280px;
height: 600px;
margin: 0 auto;
background:-webkit-linear-gradient(top,#272E52,#171C30);
position: relative;
} }
.header { .header {
height: 56px; height: 56px;
background: #2e375c; background: #2e375c;
......
...@@ -164,7 +164,6 @@ ...@@ -164,7 +164,6 @@
/*居民就诊分析*/ /*居民就诊分析*/
.outer{display: flex; width:100%; height:100%;background: #272E52; align-items: center; /* 垂直居中 */justify-content: center; /* 水平居中 */} .outer{display: flex; width:100%; height:100%;background: #272E52; align-items: center; /* 垂直居中 */justify-content: center; /* 水平居中 */}
.container{width:100%; max-width:1280px; height: 600px; margin: 0 auto; background:-webkit-linear-gradient(top,#272E52,#171C30);position: relative;}
.header{ height: 56px; background: #2e375c; margin-bottom: 20px;} .header{ height: 56px; background: #2e375c; margin-bottom: 20px;}
.con-main{ height: 500px;} .con-main{ height: 500px;}
.naver{ width: 70px; float: left; height: 56px; background: #35406b; text-align: center; padding-top: 20px;} .naver{ width: 70px; float: left; height: 56px; background: #35406b; text-align: center; padding-top: 20px;}
......
<template> <template>
<div id="search"> <div id="search">
<el-autocomplete class="inline-input" v-model="state" :fetch-suggestions="querySearch" placeholder="请输入内容" <el-autocomplete class="inline-input" v-model="state" :fetch-suggestions="querySearch" placeholder="请输入患者姓名"
:trigger-on-focus="true" @select="handleSelect"> :trigger-on-focus="true" @select="handleSelect">
<i slot="prefix" class="el-input__icon el-icon-search"></i> <i slot="prefix" class="el-input__icon el-icon-search"></i>
</el-autocomplete> </el-autocomplete>
......
...@@ -19,10 +19,10 @@ ...@@ -19,10 +19,10 @@
<button class="head_but" style="background: #44517d" @click="goBack"> <button class="head_but" style="background: #44517d" @click="goBack">
<img src="~assets/img/header/icon-white-back.png"> 返回 <img src="~assets/img/header/icon-white-back.png"> 返回
</button> </button>
<button class="head_but"> <button class="head_but" @click="goDownloadList">
<img src="~assets/img/header/export.png"> 导出 <img src="~assets/img/header/export.png"> 导出
</button> </button>
<button class="head_but"> <button class="head_but" @click="goFilter">
<img src="~assets/img/header/icon-filter.png"> 筛选 <img src="~assets/img/header/icon-filter.png"> 筛选
</button> </button>
</div> </div>
...@@ -58,16 +58,15 @@ ...@@ -58,16 +58,15 @@
goBack(){ goBack(){
window.history.go(-1) window.history.go(-1)
}, },
cxsjChange() { goDownloadList() {
this.$parent.downloadList();
// this.$emit('downloadList');
}, },
openCame() { goFilter() {
if (false) { this.$parent.showFilter();
// this.$emit('showFilter');
} else {
this.$message.error('移动APP打开扫一扫');
}
}, },
getHeadRightInfo() { getHeadRightInfo() {
this.userName = JSON.parse(sessionStorage.getItem('userinfo')).userName; this.userName = JSON.parse(sessionStorage.getItem('userinfo')).userName;
this.cxsj = this.$store.getters.getCxsj; this.cxsj = this.$store.getters.getCxsj;
......
...@@ -32,6 +32,7 @@ export default new Router({ ...@@ -32,6 +32,7 @@ export default new Router({
path: '/gpHome', path: '/gpHome',
name: 'gpHome', name: 'gpHome',
component: () => import('views/gp/GpHome.vue'), component: () => import('views/gp/GpHome.vue'),
// component: resolve => require(['@/views/gp/GpHome.vue'], resolve),
children: [ children: [
{ // 家医签约管理 { // 家医签约管理
path: 'gpContract', path: 'gpContract',
......
...@@ -3,7 +3,7 @@ module.exports = { ...@@ -3,7 +3,7 @@ module.exports = {
outputDir: "./dist", outputDir: "./dist",
lintOnSave: false, lintOnSave: false,
assetsDir:'', assetsDir:'',
publicPath:'./', publicPath:'/',
configureWebpack:{ configureWebpack:{
resolve: { resolve: {
alias: { alias: {
...@@ -14,13 +14,13 @@ module.exports = { ...@@ -14,13 +14,13 @@ module.exports = {
} }
}, },
output:{ output:{
filename:'./js/[name].js', filename:'js/[name].js',
chunkFilename:'./js/[name].js' chunkFilename:'js/[name].js'
}, },
plugins:[ plugins:[
new MiniCssExtractPlugin({ new MiniCssExtractPlugin({
filename:'./css/[name].css', filename:'css/[name].css',
chunkFilename:'./css/[name].css' chunkFilename:'css/[name].css'
}) })
] ]
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment