医生web双击问题

main
yanzai 1 year ago
parent ba0cefbe90
commit e45ef170aa

@ -248,7 +248,7 @@
</div> </div>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-button @click="combo_dialog_show = true" type="primary">选择套餐</el-button> <el-button @click="selectComboFunc()" type="primary">选择套餐</el-button>
</div> </div>
</div> </div>
<div> <div>
@ -850,9 +850,16 @@
} }
getBuyInfo('3'); getBuyInfo('3');
} }
const selectComboFunc = ()=>{
combo_dialog_show.value = true
ComboisClickDisabled.value = false;
}
const combo_table_ref = ref(null) const combo_table_ref = ref(null)
const combo_dialog_show = ref(false) const combo_dialog_show = ref(false)
let ComboisClickDisabled =ref(false) ;
const comboRowClick = (e, index) => { const comboRowClick = (e, index) => {
if (ComboisClickDisabled.value) return;
ComboisClickDisabled.value = true;
if (select_data.value.combo === e.combo_id) { if (select_data.value.combo === e.combo_id) {
select_data.value.combo = '' select_data.value.combo = ''
} else { } else {
@ -1019,6 +1026,7 @@
tableRowClick, tableRowClick,
planDialogShowClick, planDialogShowClick,
comboSearchClick, comboSearchClick,
selectComboFunc,
combo_search_input, combo_search_input,
married_array, married_array,
plan_list, plan_list,

Loading…
Cancel
Save