Commit 0abf29ee authored by danfuman's avatar danfuman

修改

parent 60e12d26
...@@ -13,7 +13,9 @@ ...@@ -13,7 +13,9 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<div class="user" @click="handleChange"> <div class="user" @click="handleChange">
<h3>{{nickName}}<span>总经理</span></h3> <h3>{{nickName}}
<!--<span>总经理</span>-->
</h3>
<p>您好,祝您工作顺利每一天</p> <p>您好,祝您工作顺利每一天</p>
</div> </div>
</el-col> </el-col>
...@@ -345,7 +347,9 @@ ...@@ -345,7 +347,9 @@
<el-col :span="6"> <el-col :span="6">
<div class="content-right"> <div class="content-right">
<div class="user" @click="handleChange"> <div class="user" @click="handleChange">
<h3>李婷婷<span>营销员</span></h3> <h3>李婷婷
<!--<span>营销员</span>-->
</h3>
<p>您好,祝您工作顺利每一天</p> <p>您好,祝您工作顺利每一天</p>
</div> </div>
<div class="search"> <div class="search">
......
...@@ -39,6 +39,10 @@ ...@@ -39,6 +39,10 @@
} }
.el-tabs__header{ .el-tabs__header{
margin: 0; margin: 0;
position: sticky;
top: 104px;
z-index: 999;
background: #fff;
.el-tabs__item{ .el-tabs__item{
padding: 0 16px; padding: 0 16px;
font-size: 16px; font-size: 16px;
......
...@@ -422,13 +422,13 @@ ...@@ -422,13 +422,13 @@
overflow:visible; overflow:visible;
.el-table__header-wrapper{ .el-table__header-wrapper{
position: sticky; position: sticky;
top:56px; top:104px;
z-index: 9; z-index: 9;
} }
.el-table__fixed-header-wrapper{ .el-table__fixed-header-wrapper{
position: sticky; position: sticky;
z-index: 9; z-index: 9;
top: 56px; top: 104px;
} }
.el-table__fixed{ .el-table__fixed{
overflow-x: clip; overflow-x: clip;
......
...@@ -422,20 +422,20 @@ ...@@ -422,20 +422,20 @@
} }
lowerRangeTenderType(params).then(res => { lowerRangeTenderType(params).then(res => {
this.xmlxState=false; this.xmlxState=false;
for (var i=0; i<res.data.length; i++){ for (var i=0; i<res.data.result.length; i++){
for (let j=0; j<res.data[i].typeList.length; j++){ for (let j=0; j<res.data.result[i].typeList.length; j++){
if(res.data[i].typeList[j].tenderType === '施工'){ if(res.data.result[i].typeList[j].tenderType === '施工'){
res.data[i].sgRate=res.data[i].typeList[j].rate.toFixed(2) res.data.result[i].sgRate=res.data.result[i].typeList[j].rate.toFixed(2)
} }
if(res.data[i].typeList[j].tenderType === '勘察设计'){ if(res.data.result[i].typeList[j].tenderType === '勘察设计'){
res.data[i].kcsjRate=res.data[i].typeList[j].rate.toFixed(2) res.data.result[i].kcsjRate=res.data.result[i].typeList[j].rate.toFixed(2)
} }
if(res.data[i].typeList[j].tenderType === '监理'){ if(res.data.result[i].typeList[j].tenderType === '监理'){
res.data[i].jlRate=res.data[i].typeList[j].rate.toFixed(2) res.data.result[i].jlRate=res.data.result[i].typeList[j].rate.toFixed(2)
} }
} }
} }
this.xmxflList=res.data; this.xmxflList=res.data.result;
if(this.xmxflList){ if(this.xmxflList){
this.$nextTick(() => { this.$nextTick(() => {
this.initChart6(this.xmxflList) this.initChart6(this.xmxflList)
......
...@@ -80,6 +80,9 @@ export default { ...@@ -80,6 +80,9 @@ export default {
background: #FFFFFF; background: #FFFFFF;
border-radius: 4px; border-radius: 4px;
color: #232323; color: #232323;
position: sticky;
top: 56px;
z-index: 999;
::v-deep .el-tabs{ ::v-deep .el-tabs{
height: 48px; height: 48px;
line-height: 48px; line-height: 48px;
......
...@@ -34,7 +34,7 @@ module.exports = { ...@@ -34,7 +34,7 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
target: `http://139.9.157.49:9099/prod-api`,//测试 target: `http://47.104.91.229:9099/prod-api`,//测试
// target: `http://localhost:9099`,//测试 // target: `http://localhost:9099`,//测试
// target: `http://122.9.160.122:9011`, //线上 // target: `http://122.9.160.122:9011`, //线上
// target: `http://192.168.0.165:9098`,//施 // target: `http://192.168.0.165:9098`,//施
......
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