File tree 2 files changed +16
-3
lines changed
management/pages/edit/setterConfig
materials/setters/widgets
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ export default {
28
28
type : 'CustomedSwitch'
29
29
} ,
30
30
interview_pwd : {
31
+ key : 'baseConf.password' ,
31
32
type : 'InputSetter' ,
32
33
placeholder : '请输入6位字符串类型访问密码 ' ,
33
34
maxLength : 6 ,
@@ -70,7 +71,7 @@ export default {
70
71
type : 'WhiteList' ,
71
72
custom : true , // 自定义导入高级组件
72
73
relyFunc : ( data ) => {
73
- return data . whitelistType == 'CUSTOM'
74
+ return data . whitelistType === 'CUSTOM'
74
75
}
75
76
} ,
76
77
team_list : {
@@ -79,7 +80,7 @@ export default {
79
80
type : 'TeamMemberList' ,
80
81
custom : true , // 自定义导入高级组件
81
82
relyFunc : ( data ) => {
82
- return data . whitelistType == 'MEMBER'
83
+ return data . whitelistType === 'MEMBER'
83
84
}
84
85
}
85
86
}
Original file line number Diff line number Diff line change 2
2
<el-switch v-model =" newValue" @change =" changeData" />
3
3
</template >
4
4
<script setup>
5
- import { ref } from ' vue'
5
+ import { ref , watch } from ' vue'
6
6
import { FORM_CHANGE_EVENT_KEY } from ' @/materials/setters/constant'
7
7
8
8
const props = defineProps ({
@@ -23,4 +23,16 @@ const changeData = (value) => {
23
23
value
24
24
})
25
25
}
26
+
27
+ watch (
28
+ () => props .formConfig .value ,
29
+ (newVal ) => {
30
+ if (newVal !== newValue .value ) {
31
+ newValue .value = newVal
32
+ }
33
+ },
34
+ {
35
+ immediate: true
36
+ }
37
+ )
26
38
</script >
You can’t perform that action at this time.
0 commit comments