forked from integrated_whb/integrated_whb_vue
部署异常修复
parent
9684793f2d
commit
b098bf7dcd
|
@ -35,17 +35,16 @@
|
||||||
{{ serialNumber(pagination, $index) }}
|
{{ serialNumber(pagination, $index) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column prop="INQUIRYCONTENT" label="问询内容" width="330" />
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="INQUIRYCONTENT"
|
prop="INQUIRYCONCLUSION"
|
||||||
label="问询内容"
|
label="问询结果"
|
||||||
width="330"
|
width="230"
|
||||||
/>
|
/>
|
||||||
<el-table-column prop="INQUIRYCONCLUSION" label="问询结果" width="230" />
|
|
||||||
<el-table-column prop="CREATTIME" label="创建时间" width="130" />
|
<el-table-column prop="CREATTIME" label="创建时间" width="130" />
|
||||||
<el-table-column prop="OPERATTIME" label="修改时间" width="130" />
|
<el-table-column prop="OPERATTIME" label="修改时间" width="130" />
|
||||||
<el-table-column label="操作">
|
<el-table-column label="操作">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
text
|
text
|
||||||
|
@ -65,10 +64,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<template #button>
|
<template #button>
|
||||||
<el-button
|
<el-button type="primary" @click="fnAddOrEdit('', 'add')">
|
||||||
type="primary"
|
|
||||||
@click="fnAddOrEdit('', 'add')"
|
|
||||||
>
|
|
||||||
新增
|
新增
|
||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
|
@ -89,7 +85,8 @@ import useListData from "@/assets/js/useListData.js";
|
||||||
import { nextTick, reactive } from "vue";
|
import { nextTick, reactive } from "vue";
|
||||||
import Add from "./components/add.vue";
|
import Add from "./components/add.vue";
|
||||||
import {
|
import {
|
||||||
getSafetyDrivingCommitmentList, getSafetyDrivingCommitmentView,
|
getSafetyDrivingCommitmentList,
|
||||||
|
getSafetyDrivingCommitmentView,
|
||||||
setDrivingCommitmentDelete,
|
setDrivingCommitmentDelete,
|
||||||
} from "@/request/traffic_driving_commitment.js";
|
} from "@/request/traffic_driving_commitment.js";
|
||||||
import { ElMessage, ElMessageBox } from "element-plus";
|
import { ElMessage, ElMessageBox } from "element-plus";
|
||||||
|
@ -111,7 +108,9 @@ const fnAddOrEdit = async (DRIVINGCOMMITMENT_ID, type) => {
|
||||||
await nextTick();
|
await nextTick();
|
||||||
data.addOrEditDialog.type = type;
|
data.addOrEditDialog.type = type;
|
||||||
if (type === "edit") {
|
if (type === "edit") {
|
||||||
const resData = await getSafetyDrivingCommitmentView({ DRIVINGCOMMITMENT_ID });
|
const resData = await getSafetyDrivingCommitmentView({
|
||||||
|
DRIVINGCOMMITMENT_ID,
|
||||||
|
});
|
||||||
data.addOrEditDialog.form = resData.pd;
|
data.addOrEditDialog.form = resData.pd;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -57,7 +57,11 @@
|
||||||
<tr v-for="(item, index) in data.info.varList" :key="index">
|
<tr v-for="(item, index) in data.info.varList" :key="index">
|
||||||
<td :rowspan="1" class="title">{{ item.CHECKTYPE_NAME }}检查</td>
|
<td :rowspan="1" class="title">{{ item.CHECKTYPE_NAME }}检查</td>
|
||||||
<td colspan="8">
|
<td colspan="8">
|
||||||
<table class="archive_print_table" v-for="(item1,index1) in item.pd1Children" :key="index1">
|
<table
|
||||||
|
v-for="(item1, index1) in item.pd1Children"
|
||||||
|
:key="index1"
|
||||||
|
class="archive_print_table"
|
||||||
|
>
|
||||||
<tr>
|
<tr>
|
||||||
<td :rowspan="10" class="title">检查记录</td>
|
<td :rowspan="10" class="title">检查记录</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -99,17 +103,12 @@
|
||||||
class="mr-10 mt-10"
|
class="mr-10 mt-10"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</layout-card>
|
</layout-card>
|
||||||
|
@ -131,7 +130,6 @@ const fnGetData = async () => {
|
||||||
const resData = await getSafetyDrivingLogView({ WAYBILLREGISTRATION_ID });
|
const resData = await getSafetyDrivingLogView({ WAYBILLREGISTRATION_ID });
|
||||||
data.info = resData.pd;
|
data.info = resData.pd;
|
||||||
data.commitmentList = resData.commitmentList;
|
data.commitmentList = resData.commitmentList;
|
||||||
|
|
||||||
};
|
};
|
||||||
fnGetData();
|
fnGetData();
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
<!-- </el-form-item>-->
|
<!-- </el-form-item>-->
|
||||||
<!-- </el-col>-->
|
<!-- </el-col>-->
|
||||||
|
|
||||||
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label-width="10px">
|
<el-form-item label-width="10px">
|
||||||
<el-button type="primary" native-type="submit">搜索</el-button>
|
<el-button type="primary" native-type="submit">搜索</el-button>
|
||||||
|
@ -74,7 +73,7 @@
|
||||||
router.push({
|
router.push({
|
||||||
path: '/driving_inspections/driving_log/drivingLog_info',
|
path: '/driving_inspections/driving_log/drivingLog_info',
|
||||||
query: {
|
query: {
|
||||||
WAYBILLREGISTRATION_ID: row.WAYBILLREGISTRATION_ID
|
WAYBILLREGISTRATION_ID: row.WAYBILLREGISTRATION_ID,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
"
|
"
|
||||||
|
@ -113,7 +112,6 @@ const fnResetPaginationTransfer = () => {
|
||||||
WORK_START_DATE: searchForm.value.WORK_START_DATE,
|
WORK_START_DATE: searchForm.value.WORK_START_DATE,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
|
@ -42,18 +42,13 @@
|
||||||
{{ serialNumber(pagination, $index) }}
|
{{ serialNumber(pagination, $index) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column prop="CHECKITEMNAME" label="检查项名称" width="330" />
|
||||||
prop="CHECKITEMNAME"
|
|
||||||
label="检查项名称"
|
|
||||||
width="330"
|
|
||||||
/>
|
|
||||||
<el-table-column prop="CHECKTYPE_NAME" label="检查项类型" width="230" />
|
<el-table-column prop="CHECKTYPE_NAME" label="检查项类型" width="230" />
|
||||||
<el-table-column prop="REMARKS" label="检查项说明" width="330" />
|
<el-table-column prop="REMARKS" label="检查项说明" width="330" />
|
||||||
<el-table-column prop="CREATTIME" label="创建时间" width="230" />
|
<el-table-column prop="CREATTIME" label="创建时间" width="230" />
|
||||||
<el-table-column prop="OPERATTIME" label="修改时间" width="230" />
|
<el-table-column prop="OPERATTIME" label="修改时间" width="230" />
|
||||||
<el-table-column label="操作">
|
<el-table-column label="操作">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
text
|
text
|
||||||
|
@ -73,10 +68,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<template #button>
|
<template #button>
|
||||||
<el-button
|
<el-button type="primary" @click="fnAddOrEdit('', 'add')">
|
||||||
type="primary"
|
|
||||||
@click="fnAddOrEdit('', 'add')"
|
|
||||||
>
|
|
||||||
新增
|
新增
|
||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
|
@ -97,7 +89,8 @@ import useListData from "@/assets/js/useListData.js";
|
||||||
import { nextTick, reactive } from "vue";
|
import { nextTick, reactive } from "vue";
|
||||||
import Add from "./components/add.vue";
|
import Add from "./components/add.vue";
|
||||||
import {
|
import {
|
||||||
getSafetyDrivingTypeList, getSafetyDrivingTypeView,
|
getSafetyDrivingTypeList,
|
||||||
|
getSafetyDrivingTypeView,
|
||||||
setDrivingTypeDelete,
|
setDrivingTypeDelete,
|
||||||
} from "@/request/traffic_driving_type.js";
|
} from "@/request/traffic_driving_type.js";
|
||||||
import { ElMessage, ElMessageBox } from "element-plus";
|
import { ElMessage, ElMessageBox } from "element-plus";
|
||||||
|
@ -136,7 +129,6 @@ const deleteItem = async (value) => {
|
||||||
fnGetData();
|
fnGetData();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const drivingTypeList = await layoutFnGetDrivingType();
|
const drivingTypeList = await layoutFnGetDrivingType();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -449,7 +449,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { reactive, ref } from "vue";
|
import { reactive, ref } from "vue";
|
||||||
import LayoutTerritory from "@/components/territory/index.vue";
|
import LayoutTerritory from "@/components/territory/index.vue";
|
||||||
import LayoutRegulatoryType from "@/components/regulatory_type/index.vue";
|
|
||||||
import LayoutIndustry from "@/components/industry/index.vue";
|
import LayoutIndustry from "@/components/industry/index.vue";
|
||||||
import LayoutEconomicType from "@/components/economic_type/index.vue";
|
import LayoutEconomicType from "@/components/economic_type/index.vue";
|
||||||
import LayoutLearningTrainType from "@/components/learning_train_type/index.vue";
|
import LayoutLearningTrainType from "@/components/learning_train_type/index.vue";
|
||||||
|
|
|
@ -113,10 +113,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {
|
import { getUserListAll } from "@/request/safety_production_related.js";
|
||||||
layoutFnGetMEETINGTYPEClassification,
|
|
||||||
getUserListAll,
|
|
||||||
} from "@/request/safety_production_related.js";
|
|
||||||
import { addSafetyMeetingView } from "@/request/traffic_safety_meeting.js";
|
import { addSafetyMeetingView } from "@/request/traffic_safety_meeting.js";
|
||||||
import { reactive, ref } from "vue";
|
import { reactive, ref } from "vue";
|
||||||
import LayoutUpload from "@/components/upload/index.vue";
|
import LayoutUpload from "@/components/upload/index.vue";
|
||||||
|
@ -162,12 +159,6 @@ const fnGetUnitsList = async () => {
|
||||||
data.unitsList = resData.varList;
|
data.unitsList = resData.varList;
|
||||||
};
|
};
|
||||||
fnGetUnitsList();
|
fnGetUnitsList();
|
||||||
const relatedClassificationTempList =
|
|
||||||
await layoutFnGetMEETINGTYPEClassification();
|
|
||||||
const relatedClassificationList = [];
|
|
||||||
JSON.parse(relatedClassificationTempList.value.zTreeNodes).forEach((e) => {
|
|
||||||
relatedClassificationList.push({ name: e.id, BIANMA: e.name });
|
|
||||||
});
|
|
||||||
|
|
||||||
const data = reactive({
|
const data = reactive({
|
||||||
form: {
|
form: {
|
||||||
|
|
Loading…
Reference in New Issue