usa样式修改
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
1e45537adc
commit
ec9be3ceae
|
@ -46,4 +46,4 @@ VUE_APP_OSS_CONFIG_REGION = 'oss-cn-shanghai'
|
||||||
|
|
||||||
VUE_APP_OSS_CONFIG_BUCKET = 'zyypacs'
|
VUE_APP_OSS_CONFIG_BUCKET = 'zyypacs'
|
||||||
|
|
||||||
VUE_APP_OSS_PATH = '/test/dist'
|
VUE_APP_OSS_PATH = /hir_test/dist
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "HICS",
|
"name": "HICS",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vue-cli-service serve --open",
|
"dev": "vue-cli-service serve --open --mode development",
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-cli-service build",
|
||||||
"build:prod": "vue-cli-service build --mode prod",
|
"build:prod": "vue-cli-service build --mode prod",
|
||||||
"build:uat": "vue-cli-service build --mode uat",
|
"build:uat": "vue-cli-service build --mode uat",
|
||||||
|
|
|
@ -1,21 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="notice-marquee_wrapper">
|
<div class="notice-marquee_wrapper">
|
||||||
<marquee
|
<marquee ref="mar" hspace="0" direction="left" :width="isEN ? '400' : '500'" @mouseout="start()" @mouseover="stop()">
|
||||||
ref="mar"
|
|
||||||
hspace="0"
|
|
||||||
direction="left"
|
|
||||||
width="500"
|
|
||||||
@mouseout="start()"
|
|
||||||
@mouseover="stop()"
|
|
||||||
>
|
|
||||||
<!-- <i class="el-icon-message-solid" /> -->
|
<!-- <i class="el-icon-message-solid" /> -->
|
||||||
<svg-icon v-if="noticeList.length > 0" icon-class="speaker" />
|
<svg-icon v-if="noticeList.length > 0" icon-class="speaker" />
|
||||||
<span
|
<span v-for="item in noticeList" :key="item.Id" style="cursor: pointer" @click="showDetail(item)">
|
||||||
v-for="item in noticeList"
|
|
||||||
:key="item.Id"
|
|
||||||
style="cursor: pointer"
|
|
||||||
@click="showDetail(item)"
|
|
||||||
>
|
|
||||||
{{ item.Content }}
|
{{ item.Content }}
|
||||||
</span>
|
</span>
|
||||||
</marquee>
|
</marquee>
|
||||||
|
@ -35,6 +23,9 @@ export default {
|
||||||
noticeList() {
|
noticeList() {
|
||||||
return this.$store.state.global.noticeList || [];
|
return this.$store.state.global.noticeList || [];
|
||||||
},
|
},
|
||||||
|
isEN() {
|
||||||
|
return this.$i18n.locale !== 'zh'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getDicData();
|
this.getDicData();
|
||||||
|
@ -119,13 +110,16 @@ export default {
|
||||||
.notice-marquee_wrapper {
|
.notice-marquee_wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
>>> .el-dialog__header {
|
|
||||||
|
>>>.el-dialog__header {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
>>> .el-dialog__body {
|
|
||||||
|
>>>.el-dialog__body {
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="leftMenu">
|
<div class="leftMenu">
|
||||||
<!-- <img v-if="language === 'zh' && hospital.HospitalLogoPath" -->
|
<!-- <img v-if="language === 'zh' && hospital.HospitalLogoPath" -->
|
||||||
<img v-if="hospital.HospitalLogoPath" :src="OSSclientConfig.basePath + hospital.HospitalLogoPath"
|
<img v-if="hospital.HospitalLogoPath" :src="OSSclientConfig.basePath + hospital.HospitalLogoPath"
|
||||||
crossOrigin="anonymous" alt="" style="min-width: 170px;" />
|
crossOrigin="anonymous" alt="" style="min-width: 170px;" :class="{ img_en: isEN }" />
|
||||||
<div v-else style="width: 170px;"></div>
|
<div v-else style="width: 170px;"></div>
|
||||||
<!-- <img v-else src="@/assets/zzlogo3.png" alt="" /> -->
|
<!-- <img v-else src="@/assets/zzlogo3.png" alt="" /> -->
|
||||||
<span style="white-space: nowrap">
|
<span style="white-space: nowrap">
|
||||||
|
@ -126,6 +126,9 @@ export default {
|
||||||
},
|
},
|
||||||
isDev() {
|
isDev() {
|
||||||
return process.env.VUE_APP_OSS_PATH === "/hir_test/dist"
|
return process.env.VUE_APP_OSS_PATH === "/hir_test/dist"
|
||||||
|
},
|
||||||
|
isEN() {
|
||||||
|
return this.$i18n.locale !== 'zh'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -309,6 +312,10 @@ export default {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.img_en {
|
||||||
|
height: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
@ -18,7 +18,7 @@ const name = defaultSettings.title || 'HIRS' // page title
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
module.exports = {
|
module.exports = {
|
||||||
transpileDependencies: ['minio'],
|
transpileDependencies: ['minio'],
|
||||||
publicPath: process.env.NODE_ENV === 'development' || process.env.VUE_APP_OSS_CONFIG_BUCKET === 'zyypacs-usa' ? process.env.VUE_APP_BASE_PATH : `${process.env.VUE_FILE_PATH}${process.env.VUE_APP_OSS_PATH}${distDate}/`,
|
publicPath: process.env.NODE_ENV === 'development' || process.env.NODE_ENV === 'usa' || process.env.VUE_APP_OSS_CONFIG_BUCKET === 'zyypacs-uat' ? process.env.VUE_APP_BASE_PATH : `${process.env.VUE_FILE_PATH}${process.env.VUE_APP_OSS_PATH}${distDate}/`,
|
||||||
outputDir: 'dist',
|
outputDir: 'dist',
|
||||||
assetsDir: 'static',
|
assetsDir: 'static',
|
||||||
productionSourceMap: false,
|
productionSourceMap: false,
|
||||||
|
@ -94,7 +94,7 @@ module.exports = {
|
||||||
ignore: ['.*']
|
ignore: ['.*']
|
||||||
}
|
}
|
||||||
]),
|
]),
|
||||||
process.env.NODE_ENV === 'development' || process.env.VUE_APP_OSS_CONFIG_BUCKET === 'zyypacs-usa' ? function() {}
|
process.env.NODE_ENV === 'development' || process.env.NODE_ENV === 'usa' || process.env.VUE_APP_OSS_CONFIG_BUCKET === 'zyypacs-uat' ? function () { }
|
||||||
: new WebpackAliyunOss({
|
: new WebpackAliyunOss({
|
||||||
from: ['./dist/**'],
|
from: ['./dist/**'],
|
||||||
dist: process.env.VUE_APP_OSS_PATH + distDate,
|
dist: process.env.VUE_APP_OSS_PATH + distDate,
|
||||||
|
@ -123,7 +123,7 @@ module.exports = {
|
||||||
// 生成文件的最大体积
|
// 生成文件的最大体积
|
||||||
maxAssetSize: 3000000000,
|
maxAssetSize: 3000000000,
|
||||||
// 只给出js的性能提示
|
// 只给出js的性能提示
|
||||||
assetFilter: function(assetFileName) {
|
assetFilter: function (assetFileName) {
|
||||||
return assetFileName.endsWith('.js')
|
return assetFileName.endsWith('.js')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue