|
@@ -68,43 +68,31 @@ import Minheader from "@/components/minheader/index.vue";
|
|
|
import Dialog from "@/components/dialog/index.vue";
|
|
|
import { Query, GeneralDataReception } from "@/api/webApi";
|
|
|
import { ElMessage } from "element-plus";
|
|
|
+
|
|
|
const formRules = useElement().formRules;
|
|
|
-const page = ref<number>(0); //分页参数
|
|
|
-const dataContent = ref<object>({});
|
|
|
-const noMore = ref<boolean>(false);
|
|
|
-const rowTitle = ref<string>("");
|
|
|
-const tableCols = ref<any>([]); //表头数据
|
|
|
-const serviceId = ref<any>("");
|
|
|
+const page = ref(0); //分页参数
|
|
|
+const dataContent = ref({});
|
|
|
+const noMore = ref(false);
|
|
|
+const rowTitle = ref("");
|
|
|
+const tableCols = ref<any[]>([]); //表头数据
|
|
|
+const serviceId = ref<number | null>(null);
|
|
|
const tableObj = ref({}); //增删改数据缓存
|
|
|
-const flag = ref<boolean>(false); //弹窗开关
|
|
|
-const type = ref<string>(""); //判断是否删除
|
|
|
-const msgTitle = ref<string>("新增航司信息维护"); //弹窗标题
|
|
|
-const tableColsCopys = reactive<Object>({}); //弹窗
|
|
|
-const tableForm = reactive<any>({
|
|
|
+const flag = ref(false); //弹窗开关
|
|
|
+const type = ref(""); //判断是否删除
|
|
|
+const msgTitle = ref("新增航司信息维护"); //弹窗标题
|
|
|
+const tableForm = reactive({
|
|
|
fullName: "",
|
|
|
abbreviation: "",
|
|
|
englishAbbreviation: "",
|
|
|
ITATCode: "",
|
|
|
ICAOCode: "",
|
|
|
remarks: "",
|
|
|
- event: "",
|
|
|
+ event: <number | string>"",
|
|
|
airlineCompanyID: "",
|
|
|
englishFullName: "",
|
|
|
}); //弹窗内容
|
|
|
//列表
|
|
|
-const tableData = ref<any>([]);
|
|
|
-//表头
|
|
|
-const state = reactive({
|
|
|
- list: [
|
|
|
- { label: "名称", key: "name" },
|
|
|
- { label: "中文简称", key: "china" },
|
|
|
- { label: "英文简称", key: "englin" },
|
|
|
- { label: "航司二字码", key: "two" },
|
|
|
- { label: "航司三字码", key: "three" },
|
|
|
- { label: "备注", key: "text" },
|
|
|
- ],
|
|
|
- listLoading: true,
|
|
|
-});
|
|
|
+const tableData = ref<any[]>([]);
|
|
|
const tableBtnGroup = ref([
|
|
|
{
|
|
|
name: "编辑",
|
|
@@ -211,7 +199,7 @@ const getQuery = async () => {
|
|
|
// element.width = "300px";
|
|
|
// }
|
|
|
});
|
|
|
- serviceId.value = returnData.submitID;
|
|
|
+ serviceId.value = returnData.submitID!;
|
|
|
} else {
|
|
|
page.value--;
|
|
|
}
|