|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
- <div class="bg-img" id="fullScreen">
|
|
|
- <div style="padding: 0 20px 0 20px">
|
|
|
+ <div class="bg-img" id="fullScreen" style="box-sizing: border-box">
|
|
|
+ <div>
|
|
|
<div class="justify-style">
|
|
|
<div class="select-style">
|
|
|
<el-cascader :placeholder="$t('部门')" class="inline-16" ref="selectdep" size="small" v-model="depment" :options="deplist" :append-to-body="false" placement="bottom"
|
|
|
@@ -31,21 +31,79 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="content-style justify-style">
|
|
|
- <div>
|
|
|
- <borderTemplate></borderTemplate>
|
|
|
+ <div>
|
|
|
+ <div class="content-style justify-style">
|
|
|
+ <div>
|
|
|
+ <div class="justify-style">
|
|
|
+ <!-- 业务员账户 -->
|
|
|
+ <salesmanAccount ref="accountRef" @dialog="detailClick"></salesmanAccount>
|
|
|
+ <!-- 作业数据 -->
|
|
|
+ <jobData ref="jobRef" @dialog="detailClick"></jobData>
|
|
|
+ </div>
|
|
|
+ <div class="inline-top-20">
|
|
|
+ <!-- 销售面板 -->
|
|
|
+ <salesPanel ref="panelRef" style="position: relative;z-index: 800"></salesPanel>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <!-- 销售漏斗 -->
|
|
|
+ <salesFunnel ref="funnelRef" style="position: relative;z-index: 700"></salesFunnel>
|
|
|
+ <div class="justify-style inline-top-20">
|
|
|
+ <!-- 营销费用 -->
|
|
|
+ <marketingExpenses ref="expensesRef"></marketingExpenses>
|
|
|
+ <!-- 营销费用统计 -->
|
|
|
+ <marketingExpenseStatistics ref="exStatisticsRef"></marketingExpenseStatistics>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <!-- 应收账款 -->
|
|
|
+ <accountsReceivable ref="receivableRef"></accountsReceivable>
|
|
|
+ <!-- 数据概况 -->
|
|
|
+ <dataProfile ref="profileRef" class="inline-top-20"></dataProfile>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<fullScreen ref="fullRef" class="inline-16" domId="fullScreen" style="visibility: hidden" @backFull="backFull"></fullScreen>
|
|
|
+ <el-dialog
|
|
|
+ :title="$t(`提示`)"
|
|
|
+ :visible.sync="dialogVisible"
|
|
|
+ :showClose="false"
|
|
|
+ width="500px"
|
|
|
+ >
|
|
|
+ <span>{{$t(`暂无权限,请开通权限`)}}</span>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="dialogVisible = false">{{$t(`确 定`)}}</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ :title="$t('提示')"
|
|
|
+ style="margin-top: calc(28vh)"
|
|
|
+ :visible.sync="dialogVisible"
|
|
|
+ width="500px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ >
|
|
|
+ <span>{{$t('当前密码为初始密码,请前往修改密码')}}</span>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button size="small" @click="onClose">{{$t('取 消')}}</el-button>
|
|
|
+ <el-button size="small" type="primary" @click="goPassword">{{$t('确 定')}}</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import fullScreen from "@/views/salesData/components/fullScreen";
|
|
|
-import borderTemplate from './components/borderTemplate'
|
|
|
+import salesmanAccount from './modules/salesmanAccount';
|
|
|
+import jobData from './modules/jobData'
|
|
|
+import salesPanel from './modules/salesPanel'
|
|
|
+import salesFunnel from './modules/salesFunnel'
|
|
|
+import marketingExpenses from './modules/marketingExpenses'
|
|
|
+import marketingExpenseStatistics from './modules/marketingExpenseStatistics'
|
|
|
+import accountsReceivable from './modules/accountsReceivable'
|
|
|
+import dataProfile from './modules/dataProfile'
|
|
|
export default {
|
|
|
name: "index",
|
|
|
- components:{fullScreen,borderTemplate},
|
|
|
+ components:{fullScreen,salesmanAccount,jobData,salesPanel,salesFunnel,marketingExpenses,marketingExpenseStatistics,accountsReceivable,dataProfile},
|
|
|
data(){
|
|
|
return {
|
|
|
timer: "", // 定义一个定时器
|
|
|
@@ -65,7 +123,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
windowWidth: document.documentElement.clientWidth, //实时屏幕宽度
|
|
|
- windowHeight: document.documentElement.clientHeight
|
|
|
+ windowHeight: document.documentElement.clientHeight,
|
|
|
+ dialogVisible:false,
|
|
|
+ dialogPaw:false
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
@@ -87,6 +147,7 @@ export default {
|
|
|
watch: {
|
|
|
windowWidth (val) {
|
|
|
console.log("实时屏幕宽度:",val );
|
|
|
+ this.$refs.panelRef.progressWidth = (9.65 * document.documentElement.clientWidth) / 100
|
|
|
},
|
|
|
windowHeight (val) {
|
|
|
console.log("实时屏幕高度:",val );
|
|
|
@@ -130,13 +191,32 @@ export default {
|
|
|
},
|
|
|
backFull(){
|
|
|
this.$router.push('/message')
|
|
|
+ if (JSON.parse(sessionStorage.getItem('active_password')) == '1' && JSON.parse(sessionStorage.getItem('password')) != '1' && JSON.parse(sessionStorage.getItem('active_account')).usertype != 0 && JSON.parse(sessionStorage.getItem('active_account')).usertype != 1){
|
|
|
+ this.dialogPaw = true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onClose() {
|
|
|
+ this.dialogVisible = false;
|
|
|
+ sessionStorage.setItem("password", "1");
|
|
|
+ sessionStorage.setItem("isPassword", "0");
|
|
|
+ },
|
|
|
+ handleClose() {
|
|
|
+ this.dialogVisible = false;
|
|
|
+ sessionStorage.setItem("password", "1");
|
|
|
+ sessionStorage.setItem("isPassword", "0");
|
|
|
+ },
|
|
|
+ goPassword(){
|
|
|
+ this.dialogPaw = false
|
|
|
+ this.$router.push('/user_center')
|
|
|
+ sessionStorage.setItem('password','1')
|
|
|
+ sessionStorage.setItem('isPassword','1')
|
|
|
},
|
|
|
leaveChange(){
|
|
|
const type = this.depment?'1':'0'
|
|
|
this.person = ''
|
|
|
const dataid = type == '0'?-1:this.departmentid
|
|
|
- this.otherModel(dataid,type,this.isleave,'状态')
|
|
|
this.personData()
|
|
|
+ this.queryAllAgainData(dataid)
|
|
|
},
|
|
|
/*获取新的业务员列表*/
|
|
|
async personData(){
|
|
|
@@ -157,6 +237,7 @@ export default {
|
|
|
this.depment = ''
|
|
|
this.departmentid = ''
|
|
|
const userid = JSON.parse(sessionStorage.getItem('active_account')).userid
|
|
|
+ this.queryAllData(userid)
|
|
|
},
|
|
|
createMenu (array) {
|
|
|
var that = this
|
|
|
@@ -214,20 +295,201 @@ export default {
|
|
|
selectDep(val) {
|
|
|
if (val.length === 0){
|
|
|
const userid = JSON.parse(sessionStorage.getItem('active_account')).userid
|
|
|
- this.otherModel(userid,'0')
|
|
|
+ this.queryAllAgainData(userid)
|
|
|
}else {
|
|
|
this.person = ''
|
|
|
this.dataid = ''
|
|
|
this.departmentid = val[val.length -1]
|
|
|
- this.otherModel(this.departmentid,'1',this.isleave)
|
|
|
+ this.queryAllAgainData(this.departmentid)
|
|
|
}
|
|
|
},
|
|
|
selectPerson(val){
|
|
|
this.depment = ''
|
|
|
this.departmentid = ''
|
|
|
this.dataid = val
|
|
|
- this.otherModel(val,'0',this.isleave)
|
|
|
+ this.queryAllAgainData(val)
|
|
|
+ },
|
|
|
+ queryAllData(id){
|
|
|
+ /*业务员账户*/
|
|
|
+ this.$refs.accountRef.param.content.dataid = id
|
|
|
+ this.$refs.accountRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.accountRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.accountRef.listData()
|
|
|
+
|
|
|
+ /*作业数据*/
|
|
|
+ this.$refs.jobRef.param.content.dataid = id
|
|
|
+ this.$refs.jobRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.jobRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.jobRef.listData()
|
|
|
+
|
|
|
+ /*销售面板*/
|
|
|
+ this.$refs.panelRef.param.content.dataid = id
|
|
|
+ this.$refs.panelRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.param.content.where.isleave = this.isleave
|
|
|
+ let year = new Date().getFullYear()
|
|
|
+ this.$refs.panelRef.paramChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.paramChart.content.year = year
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.year = year
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.year = year
|
|
|
+ this.$refs.panelRef.paramRefundChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramRefundChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramRefundChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.$refs.pickerRef.value = String(year)
|
|
|
+ this.$refs.panelRef.listData(true)
|
|
|
+
|
|
|
+ /*销售漏斗*/
|
|
|
+ this.$refs.funnelRef.param.content.dataid = id
|
|
|
+ this.$refs.funnelRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.funnelRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.funnelRef.listData()
|
|
|
+
|
|
|
+ /*营销费用*/
|
|
|
+ this.$refs.expensesRef.param.content.dataid = id
|
|
|
+ this.$refs.expensesRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.expensesRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.expensesRef.listData()
|
|
|
+
|
|
|
+ /*营销费用统计*/
|
|
|
+ this.$refs.exStatisticsRef.param.content.dataid = id
|
|
|
+ this.$refs.exStatisticsRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.exStatisticsRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.exStatisticsRef.cusInit(true)
|
|
|
+ this.$refs.exStatisticsRef.proInit(true)
|
|
|
+
|
|
|
+ /*应收账款*/
|
|
|
+ this.$refs.receivableRef.param.content.dataid = id
|
|
|
+ this.$refs.receivableRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.receivableRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.receivableRef.listData()
|
|
|
+
|
|
|
+ /*数据概况*/
|
|
|
+ this.$refs.profileRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.listData()
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.param.content.where.isleave = this.isleave
|
|
|
+ let currentDate = new Date(); // 获取当前日期
|
|
|
+ let startDate = new Date(currentDate.getFullYear(), currentDate.getMonth() ) // 计算起始日期
|
|
|
+ let endDate = currentDate.getFullYear() +'-' + 12 // 计算起始日期
|
|
|
+ this.$refs.profileRef.$refs.startRef.value = startDate
|
|
|
+ this.$refs.profileRef.$refs.endRef.value = endDate
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.typeInit(true,'项目类型分析')
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.typeInit(true,'项目跟进情况')
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.typeInit(true,'客户跟进情况')
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.$refs.analyzeDateRef.value = new Date().getFullYear() + '-' + (new Date().getMonth() + 1) + '-' + new Date().getDate()
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.lineInit(true)
|
|
|
+ },
|
|
|
+ queryAllAgainData(id){
|
|
|
+ /*业务员账户*/
|
|
|
+ this.$refs.accountRef.param.content.dataid = id
|
|
|
+ this.$refs.accountRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.accountRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.accountRef.listData()
|
|
|
+
|
|
|
+ /*作业数据*/
|
|
|
+ this.$refs.jobRef.param.content.dataid = id
|
|
|
+ this.$refs.jobRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.jobRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.jobRef.listData()
|
|
|
+
|
|
|
+ /*销售面板*/
|
|
|
+ this.$refs.panelRef.param.content.dataid = id
|
|
|
+ this.$refs.panelRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.param.content.where.isleave = this.isleave
|
|
|
+ let year = new Date().getFullYear()
|
|
|
+ this.$refs.panelRef.paramChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.paramChart.content.year = year
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.paramShipmentChart.content.year = year
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.paramInvoiceChart.content.year = year
|
|
|
+ this.$refs.panelRef.paramRefundChart.content.dataid = id
|
|
|
+ this.$refs.panelRef.paramRefundChart.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.panelRef.paramRefundChart.content.where.isleave = this.isleave
|
|
|
+ this.$refs.panelRef.$refs.pickerRef.value = String(year)
|
|
|
+ this.$refs.panelRef.listData(false)
|
|
|
+
|
|
|
+ /*销售漏斗*/
|
|
|
+ this.$refs.funnelRef.param.content.dataid = id
|
|
|
+ this.$refs.funnelRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.funnelRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.funnelRef.listData()
|
|
|
+
|
|
|
+ /*营销费用*/
|
|
|
+ this.$refs.expensesRef.param.content.dataid = id
|
|
|
+ this.$refs.expensesRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.expensesRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.expensesRef.listData()
|
|
|
+
|
|
|
+ /*营销费用统计*/
|
|
|
+ this.$refs.exStatisticsRef.param.content.dataid = id
|
|
|
+ this.$refs.exStatisticsRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.exStatisticsRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.exStatisticsRef.cusInit(false)
|
|
|
+ this.$refs.exStatisticsRef.proInit(false)
|
|
|
+
|
|
|
+ /*应收账款*/
|
|
|
+ this.$refs.receivableRef.param.content.dataid = id
|
|
|
+ this.$refs.receivableRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.receivableRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.receivableRef.listData()
|
|
|
+
|
|
|
+ /*数据概况*/
|
|
|
+ this.$refs.profileRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.listData()
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.param.content.where.isleave = this.isleave
|
|
|
+ let currentDate = new Date(); // 获取当前日期
|
|
|
+ let startDate = new Date(currentDate.getFullYear(), currentDate.getMonth() ) // 计算起始日期
|
|
|
+ let endDate = currentDate.getFullYear() +'-' + 12 // 计算起始日期
|
|
|
+ this.$refs.profileRef.$refs.startRef.value = startDate
|
|
|
+ this.$refs.profileRef.$refs.endRef.value = endDate
|
|
|
+ this.$refs.profileRef.$refs.proTypRef.typeInit(false,'项目类型分析')
|
|
|
+ this.$refs.profileRef.$refs.proFowRef.typeInit(false,'项目跟进情况')
|
|
|
+ this.$refs.profileRef.$refs.cusFowRef.typeInit(false,'客户跟进情况')
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.param.content.dataid = id
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.param.content.type = this.departmentid !== ''?1:0
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.param.content.where.isleave = this.isleave
|
|
|
+ this.$refs.profileRef.$refs.analyzeDateRef.value = new Date().getFullYear() + '-' + (new Date().getMonth() + 1) + '-' + new Date().getDate()
|
|
|
+ this.$refs.profileRef.$refs.analyzeRef.lineInit(false)
|
|
|
},
|
|
|
+ detailClick(){
|
|
|
+ this.dialogVisible = true
|
|
|
+ }
|
|
|
},
|
|
|
created() {
|
|
|
this.getTime()
|
|
|
@@ -243,128 +505,39 @@ export default {
|
|
|
<style scoped>
|
|
|
.bg-img {
|
|
|
background: url("../../assets/icons/bgScreen.jpg") no-repeat;
|
|
|
- /*height:810px ;*/
|
|
|
- /*width: 1440px;*/
|
|
|
background-size: 100% 100%;
|
|
|
- width: 100vh;
|
|
|
+ width: 100vw;
|
|
|
height: 100vh;
|
|
|
margin: 0;
|
|
|
padding: 0;
|
|
|
}
|
|
|
.select-style{
|
|
|
width: 30%;
|
|
|
- padding-top: 12px;
|
|
|
+ padding-top: 0.625vw;
|
|
|
+ margin-left: 1.042vw;
|
|
|
}
|
|
|
-/*@media (min-height: 866px) {*/
|
|
|
-/* .title-style {*/
|
|
|
-/* font-family: Microsoft YaHei, Microsoft YaHei;*/
|
|
|
-/* font-weight: bold;*/
|
|
|
-/* font-size: 44px;*/
|
|
|
-/* color: #E6F4FF;*/
|
|
|
-/* text-shadow: 0px 2px 4px #A9D7F9;*/
|
|
|
-/* text-align: left;*/
|
|
|
-/* font-style: normal;*/
|
|
|
-/* text-transform: none;*/
|
|
|
-/* padding-top: 15px;*/
|
|
|
-/* }*/
|
|
|
-/*}*/
|
|
|
-/*@media (min-height: 1092px) {*/
|
|
|
-/* .title-style {*/
|
|
|
-/* font-family: Microsoft YaHei, Microsoft YaHei;*/
|
|
|
-/* font-weight: bold;*/
|
|
|
-/* font-size: 44px;*/
|
|
|
-/* color: #E6F4FF;*/
|
|
|
-/* text-shadow: 0px 2px 4px #A9D7F9;*/
|
|
|
-/* text-align: left;*/
|
|
|
-/* font-style: normal;*/
|
|
|
-/* text-transform: none;*/
|
|
|
-/* padding-top: 20px;*/
|
|
|
-/* }*/
|
|
|
-/*}*/
|
|
|
-/*@media (min-height: 1206px) {*/
|
|
|
-/* .title-style {*/
|
|
|
-/* font-family: Microsoft YaHei, Microsoft YaHei;*/
|
|
|
-/* font-weight: bold;*/
|
|
|
-/* font-size: 44px;*/
|
|
|
-/* color: #E6F4FF;*/
|
|
|
-/* text-shadow: 0px 2px 4px #A9D7F9;*/
|
|
|
-/* text-align: left;*/
|
|
|
-/* font-style: normal;*/
|
|
|
-/* text-transform: none;*/
|
|
|
-/* padding-top: 20px;*/
|
|
|
-/* }*/
|
|
|
-/*}*/
|
|
|
-/*@media (min-height: 1134px) {*/
|
|
|
-/* .title-style {*/
|
|
|
-/* font-family: Microsoft YaHei, Microsoft YaHei;*/
|
|
|
-/* font-weight: bold;*/
|
|
|
-/* font-size: 44px;*/
|
|
|
-/* color: #E6F4FF;*/
|
|
|
-/* text-shadow: 0px 2px 4px #A9D7F9;*/
|
|
|
-/* text-align: left;*/
|
|
|
-/* font-style: normal;*/
|
|
|
-/* text-transform: none;*/
|
|
|
-/* padding-top: 25px;*/
|
|
|
-/* }*/
|
|
|
-/*}*/
|
|
|
-/*@media (min-height: 1391px) {*/
|
|
|
-/* .title-style {*/
|
|
|
-/* font-family: Microsoft YaHei, Microsoft YaHei;*/
|
|
|
-/* font-weight: bold;*/
|
|
|
-/* font-size: 44px;*/
|
|
|
-/* color: #E6F4FF;*/
|
|
|
-/* text-shadow: 0px 2px 4px #A9D7F9;*/
|
|
|
-/* text-align: left;*/
|
|
|
-/* font-style: normal;*/
|
|
|
-/* text-transform: none;*/
|
|
|
-/* padding-top: 30px;*/
|
|
|
-/* }*/
|
|
|
-/*}*/
|
|
|
-/*@media (min-height: 1506px) {*/
|
|
|
-/* .title-style {*/
|
|
|
-/* font-family: Microsoft YaHei, Microsoft YaHei;*/
|
|
|
-/* font-weight: bold;*/
|
|
|
-/* font-size: 44px;*/
|
|
|
-/* color: #E6F4FF;*/
|
|
|
-/* text-shadow: 0px 2px 4px #A9D7F9;*/
|
|
|
-/* text-align: left;*/
|
|
|
-/* font-style: normal;*/
|
|
|
-/* text-transform: none;*/
|
|
|
-/* padding-top: 40px;*/
|
|
|
-/* }*/
|
|
|
-/*}*/
|
|
|
.title-style {
|
|
|
+ width: 30%;
|
|
|
font-family: Microsoft YaHei, Microsoft YaHei;
|
|
|
font-weight: bold;
|
|
|
font-size: 2.292vw;
|
|
|
color: #E6F4FF;
|
|
|
text-shadow: 0.000vw 0.104vw 0.208vw #A9D7F9;
|
|
|
- text-align: left;
|
|
|
+ margin: auto;
|
|
|
font-style: normal;
|
|
|
text-transform: none;
|
|
|
- padding-top: 1.042vw;
|
|
|
+ padding-top: 1.042vh
|
|
|
}
|
|
|
-/*.title-style {*/
|
|
|
-/* font-family: Microsoft YaHei, Microsoft YaHei;*/
|
|
|
-/* font-weight: bold;*/
|
|
|
-/* font-size: 1.733vw ;*/
|
|
|
-/* color: #E6F4FF;*/
|
|
|
-/* text-shadow: 0.000vw 0.533vw 0.967vw #A9D7F9;*/
|
|
|
-/* text-align: left;*/
|
|
|
-/* font-style: normal;*/
|
|
|
-/* text-transform: none;*/
|
|
|
-/* padding-top: 0.833vw;*/
|
|
|
-/*}*/
|
|
|
.time-style{
|
|
|
font-family: Microsoft YaHei, Microsoft YaHei;
|
|
|
- width: 30vw;
|
|
|
font-weight: 400;
|
|
|
font-size: 0.938vw;
|
|
|
color: #E6F4FF;
|
|
|
text-align: right;
|
|
|
font-style: normal;
|
|
|
text-transform: none;
|
|
|
- padding-top: 0.938vw;
|
|
|
+ padding-top: 0.538vw;
|
|
|
+ padding-right: 1.042vw;
|
|
|
}
|
|
|
.time-style .span {
|
|
|
margin-right: 1.042vw;
|
|
|
@@ -377,7 +550,7 @@ export default {
|
|
|
text-align: left;
|
|
|
font-style: normal;
|
|
|
text-transform: none;
|
|
|
- margin-top: 1.042vw;
|
|
|
+ margin-top: 0.438vw;
|
|
|
border-radius: 0.313vw 0.313vw 0.313vw 0.313vw;
|
|
|
border: none;
|
|
|
}
|
|
|
@@ -386,15 +559,21 @@ export default {
|
|
|
justify-content: space-between
|
|
|
}
|
|
|
.content-style{
|
|
|
- margin: 1.042vw 1.042vw 1.042vw 1.042vw;
|
|
|
- border: 0.052vw solid #5daf34;
|
|
|
- height: calc(100vh - 11.458vw);
|
|
|
+ margin: 1.804vw 1.042vw 1.042vw 1.042vw;
|
|
|
+ /*border: 0.052vw solid #5daf34;*/
|
|
|
+ height: calc(100vh - 7.458vw);
|
|
|
+}
|
|
|
+.inline-left-20{
|
|
|
+ margin-left: 1.042vw;
|
|
|
+}
|
|
|
+.inline-top-20{
|
|
|
+ margin-top: 1.042vw;
|
|
|
}
|
|
|
/deep/ .el-input {
|
|
|
position: relative;
|
|
|
- font-size: 14px;
|
|
|
+ font-size: 0.729vw;
|
|
|
display: inline-block;
|
|
|
- width: 140px;
|
|
|
+ width: 5.892vw;
|
|
|
}
|
|
|
/deep/ .el-input__inner {
|
|
|
-webkit-appearance: none;
|
|
|
@@ -404,14 +583,14 @@ export default {
|
|
|
color: #c6d6e4;
|
|
|
display: inline-block;
|
|
|
font-size: inherit;
|
|
|
- height: 40px;
|
|
|
- line-height: 40px;
|
|
|
+ height: 1.583vw;
|
|
|
+ line-height: 1.583vw;
|
|
|
outline: 0;
|
|
|
- padding: 0 15px;
|
|
|
+ padding: 0 0 0 0.381vw;
|
|
|
transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
|
|
|
width: 100%;
|
|
|
- box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
|
|
|
- border-radius: 6px 6px 6px 6px;
|
|
|
- border: 1px solid #CFDCE5;
|
|
|
+ box-shadow: 0.000vw 0.156vw 0.313vw 0.052vw rgba(0,0,0,0.16);
|
|
|
+ border-radius: 0.313vw 0.313vw 0.313vw 0.313vw;
|
|
|
+ border: 0.052vw solid #CFDCE5;
|
|
|
}
|
|
|
</style>
|