BUG修改
This commit is contained in:
parent
e6528b4b3b
commit
4a1126cf94
|
@ -28,108 +28,108 @@
|
|||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import contentTitle from "./content-title";
|
||||
import * as Apis from '../api';
|
||||
import contentTitle from './content-title'
|
||||
import * as Apis from '../api'
|
||||
export default {
|
||||
components: {
|
||||
contentTitle
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
title: { dynamic: "部门发布动态", recommend: "部门推荐能力" },
|
||||
title: { dynamic: '部门发布动态', recommend: '部门推荐能力' },
|
||||
list: [],
|
||||
columns: [
|
||||
{
|
||||
title: "名称",
|
||||
key: "name",
|
||||
dataIndex: "name",
|
||||
title: '名称',
|
||||
key: 'name',
|
||||
dataIndex: 'name',
|
||||
width: 250
|
||||
},
|
||||
{
|
||||
title: "类型",
|
||||
key: "type",
|
||||
dataIndex: "type",
|
||||
title: '类型',
|
||||
key: 'type',
|
||||
dataIndex: 'type',
|
||||
width: 76
|
||||
},
|
||||
{
|
||||
title: "单位",
|
||||
key: "deptContacts",
|
||||
dataIndex: "deptContacts",
|
||||
title: '单位',
|
||||
key: 'deptContacts',
|
||||
dataIndex: 'deptContacts',
|
||||
width: 144
|
||||
},
|
||||
{
|
||||
title: "时间",
|
||||
key: "createDate",
|
||||
dataIndex: "createDate",
|
||||
title: '时间',
|
||||
key: 'createDate',
|
||||
dataIndex: 'createDate',
|
||||
width: 153
|
||||
},
|
||||
{
|
||||
title: "当前申请数",
|
||||
key: "applyCount",
|
||||
dataIndex: "applyCount",
|
||||
title: '当前申请数',
|
||||
key: 'applyCount',
|
||||
dataIndex: 'applyCount',
|
||||
width: 145
|
||||
},
|
||||
}
|
||||
],
|
||||
tableData: [],
|
||||
maxSize: { y: 195 },
|
||||
loadingDynamic: false,
|
||||
loadingTable: false,
|
||||
};
|
||||
loadingTable: false
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.getResourceByDept();
|
||||
this.getResourceByDept()
|
||||
this.getApplyByDept()
|
||||
},
|
||||
methods: {
|
||||
// 发布动态
|
||||
getResourceByDept () {
|
||||
let data = {
|
||||
const data = {
|
||||
limit: 5,
|
||||
page: 1
|
||||
};
|
||||
this.loadingDynamic = true;
|
||||
}
|
||||
this.loadingDynamic = true
|
||||
Apis.getResourceByDept(
|
||||
data,
|
||||
res => {
|
||||
this.loadingDynamic = false;
|
||||
this.loadingDynamic = false
|
||||
if (res.data.code !== 0) {
|
||||
return this.$message.error(res.data.msg)
|
||||
}
|
||||
console.log('res.data----发布动态-------->', res.data);
|
||||
console.log('res.data----发布动态-------->', res.data)
|
||||
this.list = res.data.data.list || []
|
||||
this.list.push(this.list[0])
|
||||
this.list.push(this.list[0])
|
||||
// this.list.push({})
|
||||
// this.list.push({})
|
||||
},
|
||||
err => {
|
||||
this.loadingDynamic = false;
|
||||
this.loadingDynamic = false
|
||||
this.$message.error(err)
|
||||
console.log('err-----发布动态------->', err);
|
||||
console.log('err-----发布动态------->', err)
|
||||
}
|
||||
);
|
||||
)
|
||||
},
|
||||
// 部门推荐能力
|
||||
getApplyByDept () {
|
||||
let data = {
|
||||
const data = {
|
||||
limit: 5,
|
||||
page: 1
|
||||
};
|
||||
this.loadingTable = true;
|
||||
}
|
||||
this.loadingTable = true
|
||||
Apis.getApplyByDept(
|
||||
data,
|
||||
res => {
|
||||
this.loadingTable = false;
|
||||
this.loadingTable = false
|
||||
if (res.data.code !== 0) {
|
||||
return this.$message.error(res.data.msg)
|
||||
}
|
||||
console.log('res.data------部门推荐能力------>', res.data);
|
||||
this.tableData = res.data.data.list || [];
|
||||
console.log('res.data------部门推荐能力------>', res.data)
|
||||
this.tableData = res.data.data.list || []
|
||||
},
|
||||
err => {
|
||||
this.loadingTable = false;
|
||||
this.loadingTable = false
|
||||
this.$message.error(err)
|
||||
console.log("err", err);
|
||||
console.log('err', err)
|
||||
}
|
||||
);
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -142,7 +142,6 @@ export default {
|
|||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.bottom-view {
|
||||
width: 100%;
|
||||
height: 335px;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
</div>
|
||||
<div class="flex-row-between row-name" v-for="(data, i) in listInfo" :key="i">
|
||||
<div class="left">
|
||||
<div class="row-index">{{ i + 3 }}</div>
|
||||
<div class="row-index">{{ i + 4 }}</div>
|
||||
<el-tooltip effect="dark" :content="data.name" placement="top">
|
||||
<div class="name-text ellipsis">{{ data.name || '--' }}</div>
|
||||
</el-tooltip>
|
||||
|
@ -47,59 +47,58 @@ export default {
|
|||
colorObj: {
|
||||
1: '#4658710',
|
||||
2: '#734204',
|
||||
3: '#805932',
|
||||
3: '#805932'
|
||||
},
|
||||
no1Obj: {
|
||||
name: '',
|
||||
count: '',
|
||||
count: ''
|
||||
},
|
||||
no2Obj: {
|
||||
name: '',
|
||||
count: '',
|
||||
count: ''
|
||||
},
|
||||
no3Obj: {
|
||||
name: '',
|
||||
count: '',
|
||||
count: ''
|
||||
},
|
||||
noData: false,
|
||||
loading: true,
|
||||
};
|
||||
loading: true
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.getData();
|
||||
this.getData()
|
||||
},
|
||||
methods: {
|
||||
// 频率
|
||||
getData () {
|
||||
let data = {
|
||||
const data = {
|
||||
limit: 5,
|
||||
page: 1,
|
||||
};
|
||||
page: 1
|
||||
}
|
||||
this.loading = true
|
||||
Apis.getFrequence(data, res => {
|
||||
this.loading = false;
|
||||
this.loading = false
|
||||
if (res.data.code !== 0) {
|
||||
return this.$message.error(res.data.msg);
|
||||
return this.$message.error(res.data.msg)
|
||||
}
|
||||
console.log("res----频率-------->", res.data);
|
||||
let _arr = res.data.data.records || [];
|
||||
console.log('res----频率-------->', res.data)
|
||||
const _arr = res.data.data.records || []
|
||||
if (_arr.length == 0) {
|
||||
this.noData = true
|
||||
return;
|
||||
return
|
||||
}
|
||||
for (let i = 0; i < 3; i++) {
|
||||
let k = i + 1;
|
||||
const k = i + 1
|
||||
this[`no${k}Obj`].name = _arr[i].name
|
||||
this[`no${k}Obj`].count = _arr[i].count
|
||||
}
|
||||
this.listInfo = []
|
||||
this.listInfo.push(_arr[3] || {})
|
||||
this.listInfo.push(_arr[4] || {})
|
||||
|
||||
}, err => {
|
||||
this.loading = false;
|
||||
this.$message.error(err);
|
||||
});
|
||||
this.loading = false
|
||||
this.$message.error(err)
|
||||
})
|
||||
},
|
||||
formatCount (count) {
|
||||
return count || count === 0 ? count : '--'
|
||||
|
@ -168,7 +167,6 @@ export default {
|
|||
background-image: url("~@/assets/img/workBench/NO2.png");
|
||||
}
|
||||
|
||||
|
||||
.no3 {
|
||||
width: 170px;
|
||||
height: 120px;
|
||||
|
@ -206,11 +204,9 @@ export default {
|
|||
width: 430px;
|
||||
}
|
||||
|
||||
|
||||
.num-text {
|
||||
font-size: 14px;
|
||||
color: #2b2b2b;
|
||||
|
||||
}
|
||||
|
||||
.no-data {
|
||||
|
|
Loading…
Reference in New Issue