|
|
|
@ -20,7 +20,6 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="navigation-right">
|
|
|
|
|
<div class="reset" v-show="showRight" @click="reset()"></div>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
v-show="showRight"
|
|
|
|
@ -34,9 +33,8 @@
|
|
|
|
|
<el-button type="text" v-show="!showRight" @click="$router.back()"
|
|
|
|
|
>返回人口平台</el-button
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<el-dropdown>
|
|
|
|
|
<el-button type="text" v-show="handlerExport">导出月报</el-button>
|
|
|
|
|
<el-button type="text" v-if="handlerExport">导出月报</el-button>
|
|
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
|
|
<el-dropdown-item @click.native="exportWord('1')"
|
|
|
|
|
>上月</el-dropdown-item
|
|
|
|
@ -124,7 +122,6 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
exportWord(val) {
|
|
|
|
|
let isNow = val == 1 ? true : false;
|
|
|
|
|
|
|
|
|
|
this.$modal
|
|
|
|
|
.confirm(`是否确认导出${isNow == 1 ? "上月" : "当月"}月报?`)
|
|
|
|
|
.then(() => {
|
|
|
|
|