修改已知问题
This commit is contained in:
@@ -894,4 +894,5 @@ module.exports = {
|
||||
basicInformation:'Basic Information',
|
||||
replyFromProjectContact:'Reply from project contact person',
|
||||
pleaseUpload:'Please Upload',
|
||||
fullScreenView:'Full Screen View',
|
||||
}
|
||||
@@ -899,4 +899,5 @@ module.exports = {
|
||||
basicInformation:'基础信息',
|
||||
replyFromProjectContact:'工程接口人回复',
|
||||
pleaseUpload:'请上传',
|
||||
fullScreenView:'全屏查看',
|
||||
}
|
||||
@@ -34,6 +34,7 @@
|
||||
</div>
|
||||
<div class="box-top">
|
||||
<span class="box-top-text">{{$t('regulatoryCertificationTaskPlan')}}</span>
|
||||
<span class="box-top-text fullScreenView" @click="TaskPlanListClick">{{$t('fullScreenView')}}</span>
|
||||
<span style="float: right" class="box-top-text-right">
|
||||
<a-range-picker
|
||||
:placeholder="[this.$t('startMonth'), this.$t('endMonth')]"
|
||||
@@ -60,17 +61,20 @@
|
||||
</div>
|
||||
<div class="box-bottom">
|
||||
<span class="box-top-text">{{$t('projectStatusAndProgress')}}</span>
|
||||
<span class="box-top-text fullScreenView" @click="projectNameClick">{{$t('fullScreenView')}}</span>
|
||||
<div>
|
||||
<a-table
|
||||
ref="table"
|
||||
size="middle"
|
||||
:loading="loading"
|
||||
:customRow="projectNameClick"
|
||||
:pagination="false"
|
||||
:scroll="{x: true,y:500}"
|
||||
:data-source="dataSource"
|
||||
:columns="columns"
|
||||
>
|
||||
<span slot="projectName" slot-scope="text" :title="text">
|
||||
{{text && text.length > 10 ? text.slice(0,10)+'...':text}}
|
||||
</span>
|
||||
<span slot="projectStatusTitle">
|
||||
<span>{{this.$t('projectStatus')}}</span><br/>
|
||||
<span>{{'('+$t('red')+'/'+$t('yellow')+'/'+$t('green')+')'}}</span>
|
||||
@@ -386,12 +390,12 @@
|
||||
axisTip.innerText = ''
|
||||
axisTip.style.display = 'none'
|
||||
})
|
||||
myChart.on('click', (params) => {
|
||||
let newUrl = this.$router.resolve({
|
||||
path: '/TaskPlanList'
|
||||
})
|
||||
window.open(newUrl.href, '_blank')
|
||||
},
|
||||
TaskPlanListClick() {
|
||||
let newUrl = this.$router.resolve({
|
||||
path: '/TaskPlanList'
|
||||
})
|
||||
window.open(newUrl.href, '_blank')
|
||||
},
|
||||
searchQuery() {
|
||||
this.getList()
|
||||
@@ -413,16 +417,10 @@
|
||||
})
|
||||
},
|
||||
projectNameClick() {
|
||||
return {
|
||||
on: {
|
||||
click: () => {
|
||||
let newUrl = this.$router.resolve({
|
||||
path: '/projectStatusAndProgress'
|
||||
})
|
||||
window.open(newUrl.href, '_blank')
|
||||
}
|
||||
}
|
||||
}
|
||||
let newUrl = this.$router.resolve({
|
||||
path: '/projectStatusAndProgress'
|
||||
})
|
||||
window.open(newUrl.href, '_blank')
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -509,4 +507,10 @@
|
||||
width: 300px;
|
||||
margin-top: -4px;
|
||||
}
|
||||
|
||||
.fullScreenView {
|
||||
margin-left: 16px;
|
||||
color: #21c9cc;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user