Browse Source

发布任务返回按钮权限

feture-12345
mk 6 months ago
parent
commit
71d6f66c7c
  1. 3
      src/views/modules/base/smartExcel/cpts/excel-view.vue

3
src/views/modules/base/smartExcel/cpts/excel-view.vue

@ -1,7 +1,6 @@
<template>
<div class='flex' :style="{ height: tableHeight }">
<div class="left_menu flex flex-y" v-if="!sheetTotal && pageType !== 'filling'">
<!-- <el-button type="text" round @click="handelClickBack" icon="el-icon-back">返回</el-button> -->
<section>
<h3>{{ menuList[0].taskTitle }}</h3>
<p>{{ menuList[0].agencyName }}</p>
@ -17,7 +16,7 @@
<div :class="['flex', 'flex-y', 'flex1', sheetTotal ? 'luckysheet-wrap' : 'luckysheet-wrap-all']">
<div class="top_btn flex flex-end">
<div>
<el-button type="text" round @click="handelClickBack" icon="el-icon-back" v-if="!sheetTotal || pageType == 'filling'">返回</el-button>
<el-button type="text" round @click="handelClickBack" icon="el-icon-back" v-if="(!sheetTotal && pageType == 'filling') || (sheetTotal && pageType != 'filling')">返回</el-button>
<el-button type="warning" v-if="pageType === 'add'" @click="handleClickInspect"> 自动检查</el-button>
<el-button type="success" @click="onClickUplond()" v-if="pageType !== 'add'"> 智能填表</el-button>
</div>

Loading…
Cancel
Save