修改轮胎信息界面

master
夜笙歌 2 years ago
parent 6762008e78
commit 95d2272905

@ -290,7 +290,7 @@
</template> </template>
<script setup name="basetyre"> <script setup name="basetyre">
import {addPost, delPost, getPost, listPost, updatePost} from "@/api/basetyre/basetyre"; import {addBasetyre, delBasetyre, getBasetyre, listBasetyre, updateBasetyre} from "@/api/basetyre/basetyre";
const {proxy} = getCurrentInstance(); const {proxy} = getCurrentInstance();
@ -355,7 +355,7 @@ const form = ref({});
/** 查询岗位列表 */ /** 查询岗位列表 */
function getList() { function getList() {
loading.value = true; loading.value = true;
listPost(queryParams.value).then(response => { listBasetyre(queryParams.value).then(response => {
postList.value = response.rows; postList.value = response.rows;
total.value = response.total; total.value = response.total;
loading.value = false; loading.value = false;
@ -428,7 +428,7 @@ function handleAdd() {
function handleUpdate(row) { function handleUpdate(row) {
reset(); reset();
const postId = row.postId || ids.value; const postId = row.postId || ids.value;
getPost(postId).then(response => { getBasetyre(postId).then(response => {
form.value = response.data; form.value = response.data;
open.value = true; open.value = true;
title.value = "修改轮胎基础信息"; title.value = "修改轮胎基础信息";
@ -440,13 +440,13 @@ function submitForm() {
proxy.$refs["postRef"].validate(valid => { proxy.$refs["postRef"].validate(valid => {
if (valid) { if (valid) {
if (form.value.postId != undefined) { if (form.value.postId != undefined) {
updatePost(form.value).then(response => { updateBasetyre(form.value).then(response => {
proxy.$modal.msgSuccess("修改成功"); proxy.$modal.msgSuccess("修改成功");
open.value = false; open.value = false;
getList(); getList();
}); });
} else { } else {
addPost(form.value).then(response => { addBasetyre(form.value).then(response => {
proxy.$modal.msgSuccess("新增成功"); proxy.$modal.msgSuccess("新增成功");
open.value = false; open.value = false;
getList(); getList();
@ -460,7 +460,7 @@ 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('是否确认删除岗位编号为"' + postIds + '"的数据项?').then(function () {
return delPost(postIds); return delBasetyre(postIds);
}).then(() => { }).then(() => {
getList(); getList();
proxy.$modal.msgSuccess("删除成功"); proxy.$modal.msgSuccess("删除成功");

Loading…
Cancel
Save