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-22 15:51:06 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d75a54fd1ea99de9fd08359203b9b0947f71f808
d75a54fd
1 parent
e6b4b84d
修改用户角色提示语&样式
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
14 deletions
src/assets/languages/dictLabels.js
src/views/et86Config/et86HsCodeBlack/components/ModleView.vue
src/views/et86Config/et86RuleConfig/edit/formConfig.js
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/systemConfig/userConfig/drawer.vue
src/assets/languages/dictLabels.js
View file @
d75a54f
...
...
@@ -43,7 +43,7 @@ let ductLabels = {
"user"
:
{
//用户设置
"isValid"
:
{
"1"
:
"启用"
,
"2"
:
"
关闭
"
,
"2"
:
"
停用
"
,
},
},
"FlightInformation"
:
{
//航班信息维护
...
...
src/views/et86Config/et86HsCodeBlack/components/ModleView.vue
View file @
d75a54f
...
...
@@ -29,7 +29,7 @@ export default {
},
title: {
type: String,
default: "标题",
default: "标
题",
},
center: {
type: String,
...
...
src/views/et86Config/et86RuleConfig/edit/formConfig.js
View file @
d75a54f
...
...
@@ -7,7 +7,7 @@ export const formConfig = [
placeholder
:
"0"
,
rules
:
{
required
:
true
,
message
:
"最
大
重量不得小于0KG"
,
message
:
"最
小
重量不得小于0KG"
,
trigger
:
[
"change"
,
"blur"
],
},
trigger
:
"blur"
,
// 事件名
...
...
@@ -33,7 +33,7 @@ export const formConfig = [
placeholder
:
"0"
,
rules
:
{
required
:
true
,
message
:
"最
大重量不得小于0KG
"
,
message
:
"最
小件数不得小于0
"
,
trigger
:
[
"change"
,
"blur"
],
},
trigger
:
"blur"
,
// 事件名
...
...
@@ -46,7 +46,7 @@ export const formConfig = [
placeholder
:
"34"
,
rules
:
{
required
:
true
,
message
:
"最大
重量不得大于34KG
"
,
message
:
"最大
件数不得小于最小件数
"
,
trigger
:
[
"change"
,
"blur"
],
},
trigger
:
"blur"
,
// 事件名
...
...
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
d75a54f
...
...
@@ -8,7 +8,7 @@
<!-- ET86配舱航班顺位 -->
<el-row :gutter="24" justify="center">
<el-col :span="18">
<el-row style="margin-bottom: 15px" v-
if
="getRouter">
<el-row style="margin-bottom: 15px" v-
show
="getRouter">
<el-col>
<el-button
type="primary"
...
...
@@ -392,7 +392,7 @@
</el-form-item>
</el-col>
</el-col>
<el-col :span="24" v-
if
="getRouter">
<el-col :span="24" v-
show
="getRouter">
<el-form-item label="">
<el-button type="primary" @click="submitForm('ruleForm')">{{
getRouter
...
...
src/views/systemConfig/userConfig/drawer.vue
View file @
d75a54f
...
...
@@ -71,15 +71,13 @@
</el-col>
<el-col :span="24">
<el-form-item label="所属角色:" prop="roleIds">
<el-checkbox-group v-model="roleid" :disabled="userFormDisabled" @change="change">
<el-row>
<el-col :span="4" v-for="item in roleList" :key="item.id">
<el-checkbox-group v-model="roleid" :disabled="userFormDisabled" @change="change" style="padding-top: 6px;box-sizing: border-box;">
<span v-for="(item,i) in roleList" :key="item.id" style="vertical-align:middle;" :style="{ marginLeft: i !=0 ? '15px' : 0 }">
<el-checkbox :label="item.id">
{{ item.name }}
<Tooltips :content="item.englishName" :refName="item.code"></Tooltips>
</el-checkbox>
</el-col>
</el-row>
</span>
</el-checkbox-group>
</el-form-item>
</el-col>
...
...
@@ -275,6 +273,12 @@ export default {
};
</script>
<style>
<style lang="scss" scoped>
.el-checkbox-group .el-checkbox {
width: auto !important;
margin-left: 15px !important;
}
.el-checkbox:first-child{
margin-left: 0px !important;
}
</style>
...
...
Please
register
or
login
to post a comment