Merge remote-tracking branch 'origin/master'

master
杨万里 2 years ago
commit 7a6783a331

@ -81,7 +81,7 @@
<el-button
type="text"
icon="Finished"
@click="handleBang(scope.row)"
@click="handleBang()"
>
绑定接收器
</el-button>
@ -183,6 +183,7 @@ const loading = ref(true);
const showSearch = ref(true);
// id
const ids = ref([]);
const msg = ref([])
//
const single = ref(true);
//
@ -257,7 +258,8 @@ const resetQuery = () => {
/** 多选框选中数据 */
function handleSelectionChange(selection) {
ids.value = selection.map(item => item.carLicense);
ids.value = selection.map(item => item.id);
msg.value = selection.map(item => item.carLicense);
single.value = selection.length !== 1;
multiple.value = !selection.length;
}
@ -317,7 +319,7 @@ function submitForm() {
function handleDelete(row) {
const postIds = row.id || ids.value;
proxy.$modal.confirm(t('option.confirmDeletion', {
key: t('baseCar.car.carLicense'), value: postIds
key: t('baseCar.car.carLicense'), value: msg.value
})).then(function () {
return delBaseCar(postIds);
}).then(() => {

Loading…
Cancel
Save