Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-04-07 14:05:55 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
eda2564bf1b46de700814f161f55849e45d717e8
eda2564b
1 parent
e74b44cb
bug修复代码更新
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
6 deletions
src/views/basicInformation/caExportPreQualification/index.vue
src/views/systemConfig/menuConfig/index.vue
src/views/systemConfig/roleConfig/index.vue
src/views/systemConfig/userConfig/index.vue
src/views/basicInformation/caExportPreQualification/index.vue
View file @
eda2564
...
...
@@ -169,7 +169,7 @@
<script>
import { findCagroPreData } from "@/api/cargoSelect";
import {
cargoXlsxPre
} from "@/utils/zipdownload";
import {
downLoadXlsx
} from "@/utils/zipdownload";
export default {
name: "CAPreQualificationExport",
data() {
...
...
@@ -222,7 +222,7 @@ export default {
);
cargoXlse.cargoExportPreQueryDto.limitStart = 0;
cargoXlse.cargoExportPreQueryDto.limitSize = -1;
cargoXlsxPre("/cargo/excelPre", cargoXlse
)
downLoadXlsx("/cargo/excelPre", cargoXlse,'航班预审表'
)
.then(() => {
this.downLoadingTip.downloading = false;
this.downLoadingTip.tip = "";
...
...
src/views/systemConfig/menuConfig/index.vue
View file @
eda2564
...
...
@@ -30,7 +30,13 @@
:width="item.width"
:formatter="formatter"
>
<template slot-scope="scope">
<el-tag v-if="item.value === 'menuType'" :type="scope.row.menuType === 'B'?'':'success'"
disable-transitions>{{scope.row.menuType === 'B'?'按钮':'菜单'}}</el-tag>
<span v-else>{{scope.row.title}}</span>
</template>
</el-table-column>
<el-table-column
header-align="center"
align="center"
...
...
src/views/systemConfig/roleConfig/index.vue
View file @
eda2564
...
...
@@ -41,7 +41,7 @@
icon="el-icon-search"
size="mini"
:loading="tableLoading"
@click="selectRoleList"
@click="selectRoleList
(0)
"
>搜索</el-button
>
<el-button type="primary" icon="el-icon-plus" size="mini" @click="addRole" v-hasPermi="['system:role:add']"
...
...
@@ -205,7 +205,10 @@ export default {
},
methods: {
//角色列表
selectRoleList() {
selectRoleList(val) {
if(val == 0){
this.formData.page = 1
}
this.tableLoading = true;
if (this.createTime.length > 0) {
this.formData.createStart = this.createTime[0];
...
...
src/views/systemConfig/userConfig/index.vue
View file @
eda2564
...
...
@@ -36,7 +36,7 @@
icon="el-icon-search"
size="mini"
:loading="loading"
@click="selectUser"
@click="selectUser
(0)
"
>搜索</el-button
>
<el-button type="primary" icon="el-icon-plus" size="mini" @click="addUser" v-hasPermi="['system:user:add']"
...
...
@@ -251,7 +251,10 @@ export default {
},
methods: {
//用户列表
selectUser() {
selectUser(val) {
if(val == 0){
this.formData.page = 1
}
this.loading = true;
listUser(this.formData)
.then((res) => {
...
...
Please
register
or
login
to post a comment