mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 05:46:45 +08:00
修改参数,接口报错
This commit is contained in:
@@ -118,8 +118,8 @@ const props = defineProps({
|
||||
default: ""
|
||||
},
|
||||
ids:{
|
||||
type: Array,
|
||||
default: ()=>[]
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
});
|
||||
const modalVisible = ref(false)
|
||||
|
||||
@@ -435,7 +435,7 @@
|
||||
setup() {
|
||||
const formRef = ref();
|
||||
const state = reactive({
|
||||
selectsIds: [],
|
||||
selectsIds: '',
|
||||
visibleConfirm: false,
|
||||
title:'导入讲师费记录',
|
||||
allFeedialog:false,
|
||||
@@ -1101,12 +1101,12 @@ console.log( "讲师体系id" +val);
|
||||
state.allFeedialog=true
|
||||
}
|
||||
const selectedRowKeys = (val) => {
|
||||
state.selectsIds = val;
|
||||
state.selectsIds = val?.join(',');
|
||||
state.visibleConfirm = true;
|
||||
}
|
||||
watch(()=>state.visibleConfirm,(val)=>{
|
||||
if(!val){
|
||||
state.selectsIds = [];
|
||||
state.selectsIds = '';
|
||||
}
|
||||
})
|
||||
const tableDatas = ref([])
|
||||
|
||||
Reference in New Issue
Block a user