|
@@ -108,6 +108,9 @@ const state = reactive({
|
|
|
//新增
|
|
|
const addForm = () => {
|
|
|
msgTitle.value = "新增机型维护";
|
|
|
+ for (const key in tableForm) {
|
|
|
+ tableForm[key] = "";
|
|
|
+ }
|
|
|
tableForm.event = 1;
|
|
|
flag.value = true;
|
|
|
type.value = "";
|
|
@@ -234,7 +237,12 @@ const resetTable = () => {
|
|
|
tableData.value = [];
|
|
|
};
|
|
|
|
|
|
-const btnAuthMap = [, 'new_model_button', 'airline_editor_button', 'model_deletion_button']
|
|
|
+const btnAuthMap = [
|
|
|
+ ,
|
|
|
+ "new_model_button",
|
|
|
+ "airline_editor_button",
|
|
|
+ "model_deletion_button",
|
|
|
+];
|
|
|
//新增-编辑-删除
|
|
|
const generalDataReception = async (data) => {
|
|
|
console.log(data);
|
|
@@ -245,7 +253,7 @@ const generalDataReception = async (data) => {
|
|
|
const { code } = await GeneralDataReception({
|
|
|
serviceId: serviceId.value,
|
|
|
dataContent: JSON.stringify(data),
|
|
|
- btnAuth: btnAuthMap[data.event]
|
|
|
+ btnAuth: btnAuthMap[data.event],
|
|
|
});
|
|
|
if (code == 0) {
|
|
|
ElMessage.success(`操作成功`);
|