|
|
@@ -189,13 +189,15 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- icon="el-icon-check"
|
|
|
- class="full-width flex flex-center flex-justify-end light-blue-bg"
|
|
|
- @click="save"
|
|
|
- >保存
|
|
|
- </el-button>
|
|
|
+ <div>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-check"
|
|
|
+ class="full-width flex flex-center flex-justify-end light-blue-bg"
|
|
|
+ @click="save"
|
|
|
+ >保存
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
@@ -279,11 +281,11 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
const newMonthData = []
|
|
|
- for (let i = 1; i <= 12; i++) {
|
|
|
+ for (let i = 1; i <= 11; i++) {
|
|
|
const sub = {
|
|
|
actualData: 0,
|
|
|
planData: 0,
|
|
|
- month: i.toString(),
|
|
|
+ month: i === 1 ? '1-2' : (i + 1).toString(),
|
|
|
year: type === 1 ? this.selectYear : this.selectYear2
|
|
|
}
|
|
|
newMonthData.push(sub)
|