Skip to content

Commit 29b37b7

Browse files
committed
fix: 修复白名单密码问题
1 parent d36e33e commit 29b37b7

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

web/src/management/pages/edit/setterConfig/baseFormConfig.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export default {
2828
type: 'CustomedSwitch'
2929
},
3030
interview_pwd: {
31+
key: 'baseConf.password',
3132
type: 'InputSetter',
3233
placeholder: '请输入6位字符串类型访问密码 ',
3334
maxLength: 6,
@@ -70,7 +71,7 @@ export default {
7071
type: 'WhiteList',
7172
custom: true, // 自定义导入高级组件
7273
relyFunc: (data) => {
73-
return data.whitelistType == 'CUSTOM'
74+
return data.whitelistType === 'CUSTOM'
7475
}
7576
},
7677
team_list: {
@@ -79,7 +80,7 @@ export default {
7980
type: 'TeamMemberList',
8081
custom: true, // 自定义导入高级组件
8182
relyFunc: (data) => {
82-
return data.whitelistType == 'MEMBER'
83+
return data.whitelistType === 'MEMBER'
8384
}
8485
}
8586
}

web/src/materials/setters/widgets/CustomedSwitch.vue

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<el-switch v-model="newValue" @change="changeData" />
33
</template>
44
<script setup>
5-
import { ref } from 'vue'
5+
import { ref, watch } from 'vue'
66
import { FORM_CHANGE_EVENT_KEY } from '@/materials/setters/constant'
77
88
const props = defineProps({
@@ -23,4 +23,16 @@ const changeData = (value) => {
2323
value
2424
})
2525
}
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+
)
2638
</script>

0 commit comments

Comments
 (0)