hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2022-08-30 13:46:51 2 * @Date: 2022-08-30 13:46:51
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-02-01 09:12:24 4 + * @LastEditTime: 2023-02-10 15:34:39
5 * @FilePath: /data-table/src/components/PickerField/index.vue 5 * @FilePath: /data-table/src/components/PickerField/index.vue
6 * @Description: 单列选择器组件 6 * @Description: 单列选择器组件
7 --> 7 -->
...@@ -61,9 +61,9 @@ const showPicker = ref(false); ...@@ -61,9 +61,9 @@ const showPicker = ref(false);
61 const onConfirm = ({ selectedOptions }) => { 61 const onConfirm = ({ selectedOptions }) => {
62 props.item.value = selectedOptions[0]?.value; 62 props.item.value = selectedOptions[0]?.value;
63 showPicker.value = false; 63 showPicker.value = false;
64 - if (add_info_key.value === props.item.value) { 64 + // if (add_info_key.value === props.item.value) {
65 - has_add_info.value = true; 65 + // has_add_info.value = true;
66 - } 66 + // }
67 }; 67 };
68 // 隐藏显示 68 // 隐藏显示
69 const HideShow = computed(() => { 69 const HideShow = computed(() => {
......