| | |
| | | <el-col :span="24"> |
| | | <el-card :body-style="{padding: '6px'}"> |
| | | <ul> |
| | | <li @click="removeTab(activeIndex)" v-show="menuId!=0"><i class="el-icon-close"></i>关闭</li> |
| | | <li @click="allDel"><i class="el-icon-delete"></i>关闭所有</li> |
| | | <li @click="rightDel(activeIndex)"><i class="el-icon-d-arrow-right"></i>关闭右侧页签</li> |
| | | <li @click="removeTab(activeIndex)" v-show="menuId!=0" style="text-align: left;"><i class="el-icon-close"></i>关闭</li> |
| | | <li @click="allDel" style="text-align: left;"><i class="el-icon-delete"></i>关闭所有</li> |
| | | <li @click="rightDel(activeIndex)" style="text-align: left;"><i class="el-icon-d-arrow-right"></i>关闭右侧页签</li> |
| | | <el-divider></el-divider> |
| | | <li @click="refreshTable"><i class="el-icon-refresh"></i>刷新</li> |
| | | <li @click="refreshTable" style="text-align: left;"><i class="el-icon-refresh"></i>刷新</li> |
| | | </ul> |
| | | </el-card> |
| | | </el-col> |
| | |
| | | </span> |
| | | </el-dialog> |
| | | <notice ref="notice" @goNoticeDetail="checkForUnreadData()" /> |
| | | <timer></timer> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | import menus from '../../static/js/menu.js' |
| | | import nullFace from '../view/404.vue' |
| | | import notice from './notice.vue' |
| | | import timer from './timer.vue'; |
| | | comObj['nullFace'] = nullFace |
| | | export default { |
| | | components: {...comObj,notice}, |
| | | components: {...comObj,notice,timer}, |
| | | data() { |
| | | return { |
| | | userName: "value", |
| | |
| | | }, |
| | | created() { |
| | | this.menu = menus.menu |
| | | if (this.PROJECT !== '装备电缆') { // 检测中心暂无'原材料检验下单'功能 |
| | | const index = this.menu.findIndex(item => item.v === '业务管理') |
| | | if (index > -1) { |
| | | const index2 = this.menu[index].c.findIndex(obj => obj.v === '原材料检验下单') |
| | | if (index2 > -1) { |
| | | this.menu[index].c.splice(index2, 1) |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | mounted() { |
| | | this.userName = JSON.parse(localStorage.getItem("user")).name; |