|
|
@ -529,7 +529,9 @@ function submitForm() {
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
function handleDelete(row) {
|
|
|
|
function handleDelete(row) {
|
|
|
|
const postIds = row.postId || ids.value;
|
|
|
|
const postIds = row.postId || ids.value;
|
|
|
|
proxy.$modal.confirm('是否确认删除岗位编号为"' + postIds + '"的数据项?').then(function () {
|
|
|
|
proxy.$modal.confirm(t('option.confirmDeletion', {
|
|
|
|
|
|
|
|
key: t('carQueue.carQueue.tyreFacCode'), value: postIds
|
|
|
|
|
|
|
|
})).then(function () {
|
|
|
|
return delCarQueue(postIds);
|
|
|
|
return delCarQueue(postIds);
|
|
|
|
}).then(() => {
|
|
|
|
}).then(() => {
|
|
|
|
getList();
|
|
|
|
getList();
|
|
|
@ -537,6 +539,7 @@ function handleDelete(row) {
|
|
|
|
}).catch(() => {
|
|
|
|
}).catch(() => {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
function handleExport() {
|
|
|
|
function handleExport() {
|
|
|
|
proxy.download("system/post/export", {
|
|
|
|
proxy.download("system/post/export", {
|