|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
|
<basic-container>
|
|
|
<div>
|
|
|
- <div class="pd-b-20 border-grey-b">
|
|
|
+ <div class="pd-b-20 border-grey-b header-box">
|
|
|
+ <div>
|
|
|
<span class="mg-r-10">选择项目名称</span>
|
|
|
<el-select
|
|
|
v-model="projectId"
|
|
@@ -15,7 +16,11 @@
|
|
|
:value="item.id"
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <el-button type="primary" @click="syncLedger">同步台账</el-button>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="pd-t-20">
|
|
|
<el-row
|
|
|
:gutter="20"
|
|
@@ -399,6 +404,10 @@ export default {
|
|
|
wbsManage () {//wbs树管理按钮
|
|
|
this.$router.push('/manager/privateWBS/' + 111)
|
|
|
},
|
|
|
+ //同步
|
|
|
+ syncLedger () {
|
|
|
+ this.$router.push('/manager/projectinfo/ledger' )
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
@@ -427,4 +436,9 @@ export default {
|
|
|
.abg3 {
|
|
|
background-color: rgb(42, 53, 155);
|
|
|
}
|
|
|
+.header-box{
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
</style>
|