|
|
|
@ -375,7 +375,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="basetyre">
|
|
|
|
|
import {addBaseCar, delBaseCar, getBaseCar, listBaseCar, updateBaseCar} from "@/api/basecar/cartype";
|
|
|
|
|
import {addCartype, delCartype, getCartype, listCartype, updateCartype} from "@/api/basecar/cartype";
|
|
|
|
|
|
|
|
|
|
import {useI18n} from 'vue-i18n';
|
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
@ -462,7 +462,7 @@ const form = ref({
|
|
|
|
|
/** 查询岗位列表 */
|
|
|
|
|
function getList() {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
listBaseCar(queryParams.value).then(response => {
|
|
|
|
|
listCartype(queryParams.value).then(response => {
|
|
|
|
|
postList.value = response.rows;
|
|
|
|
|
total.value = response.total;
|
|
|
|
|
loading.value = false;
|
|
|
|
@ -530,7 +530,7 @@ function handleAdd() {
|
|
|
|
|
function handleUpdate(row) {
|
|
|
|
|
reset();
|
|
|
|
|
const postId = row.postId || ids.value;
|
|
|
|
|
getBaseCar(postId).then(response => {
|
|
|
|
|
getCartype(postId).then(response => {
|
|
|
|
|
form.value = response.data;
|
|
|
|
|
open.value = true;
|
|
|
|
|
title.value = t('baseCar.carType.editTitle');
|
|
|
|
@ -542,13 +542,13 @@ function submitForm() {
|
|
|
|
|
proxy.$refs["postRef"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (form.value.postId != undefined) {
|
|
|
|
|
updateBaseCar(form.value).then(response => {
|
|
|
|
|
updateCartype(form.value).then(response => {
|
|
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
|
|
|
open.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addBaseCar(form.value).then(response => {
|
|
|
|
|
addCartype(form.value).then(response => {
|
|
|
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
|
|
|
open.value = false;
|
|
|
|
|
getList();
|
|
|
|
@ -562,7 +562,7 @@ function submitForm() {
|
|
|
|
|
function handleDelete(row) {
|
|
|
|
|
const postIds = row.postId || ids.value;
|
|
|
|
|
proxy.$modal.confirm('是否确认删除岗位编号为"' + postIds + '"的数据项?').then(function () {
|
|
|
|
|
return delBaseCar(postIds);
|
|
|
|
|
return delCartype(postIds);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
getList();
|
|
|
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
|
|
|