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
Elements-SY
2023-09-18 21:28:11 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f61a35fadc356048244c65366364b51acdd92e70
f61a35fa
1 parent
c9e8b81c
modify
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemConfig/userConfig/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
f61a35f
...
...
@@ -355,7 +355,7 @@ export default {
{
required: true,
message: "原始重量(KG)不能为空",
trigger:
"change"
,
trigger:
["change","blur"]
,
},
],
},
...
...
src/views/systemConfig/userConfig/index.vue
View file @
f61a35f
...
...
@@ -153,11 +153,11 @@ export default {
});
},
//用户详情
userDetail(id) {
userDetail(
status,
id) {
detailUser(id)
.then((res) => {
this.drawer = true;
this.drawerTitle = "修改用户";
this.drawerTitle =
status == 0 ? "查看用户" :
"修改用户";
if (res.code === 200) {
this.userData = res.data;
this.userData.portName
...
...
@@ -180,7 +180,7 @@ export default {
},
//查询修改用户
buttonClick(row, status) {
this.userDetail(row.row.id);
this.userDetail(
status,
row.row.id);
status == 0
? (this.userFormDisabled = true)
: (this.userFormDisabled = false);
...
...
Please
register
or
login
to post a comment