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