123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436 |
- <template>
- <div class="body">
- <!-- <div v-for="(box, index) in drawingData" :key="index" class="suit-box">
- <div class="pdf-box">
- <PDFView
- :need-to-show-pdf="true"
- :pdf-source="baseUrl + box.pdfPath"
- />
- </div>
- <div class="suit-title">{{ box?.drawingTitle }}</div>
- <div class="suit-desc">{{ box?.created }}</div>
- </div> -->
- <div v-if="!checkName" class="checkBody">
- <div class="titleText" style="text-align: center; margin-bottom: 20px">
- 请先扫描铭牌或输入工牌号:
- </div>
- <ScanCodeInput v-model="inputValue" @keyup.enter="handleSubmit" />
- </div>
- <div v-else class="checkForm">
- <div v-if="!editStatus" class="headerName">
- <div class="titleText">当前检验人:{{ checkName }}</div>
- <div
- class="titleText"
- style="margin-right: 15%; display: flex; align-items: center"
- >
- 检验类型:
- <el-select
- v-model="checkType"
- placeholder="Select"
- style="width: 100px; font-size: 16px"
- @change="
- search.page = 1;
- getPagination();
- "
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- style="color: black; font-size: 16px"
- />
- </el-select>
- </div>
- <div
- class="titleText"
- style="color: red; cursor: pointer"
- @click="logOff"
- >
- 注销
- </div>
- </div>
- <div v-if="!editStatus" class="content">
- <div>
- <el-button
- class="sureBtn"
- style="margin-bottom: 10px"
- type="success"
- @click="addCheck"
- >新 增
- </el-button>
- </div>
- <el-table
- :data="dataList"
- style="height: calc(100vh - 250px); border-radius: 16px"
- >
- <el-table-column label="序号" type="index" width="80" />
- <el-table-column label="检验项名称" prop="checkName" />
- <el-table-column label="检验项内容" prop="checkContent" />
- <el-table-column label="流转卡号" prop="seqNo" />
- <el-table-column label="备注" prop="remark" />
- <!-- <el-table-column label="附件" prop="filePath">
- <template #default="scope">
- <span
- v-if="scope.row.filePath"
- class="opera"
- @click="downLoad(scope.row.filePath)"
- >下载</span
- >
- <span v-else>无附件</span>
- </template>
- </el-table-column> -->
- <el-table-column label="结果" prop="result">
- <template #default="scope">
- <span
- :style="{ color: scope.row.result == '1' ? 'green' : 'red' }"
- >{{ scope.row.result == "1" ? "合格" : "不合格" }}</span
- >
- </template>
- </el-table-column>
- <el-table-column label="操作" width="180">
- <template #default="scope">
- <span class="opera" @click="editCheck(scope.row)">编辑</span>
- <span
- class="opera"
- style="color: red"
- @click="deleteCheck(scope.row.id)"
- >删除</span
- >
- </template>
- </el-table-column>
- <template #empty>
- <div class="empty">
- <Empty />
- </div>
- </template>
- </el-table>
- <Pagination
- :limit="search.limit"
- :page="search.page"
- :position="'right'"
- :total="search.total"
- @pagination="getPagination"
- />
- </div>
- <div v-if="editStatus" class="headerName">
- <div class="titleText">当前检验人:{{ checkName }}</div>
- <div
- class="titleText"
- style="margin-right: 15%; display: flex; align-items: center"
- >
- 操作类型:{{ editType == "add" ? "新增" : "修改" }}
- </div>
- <div></div>
- </div>
- <div v-show="editStatus" class="content">
- <div class="form">
- <div class="formContent">
- <el-scrollbar style="height: calc(100vh - 200px); padding: 20px">
- <CheckForm ref="formRef" v-model="formData" />
- </el-scrollbar>
- </div>
- <div class="btns">
- <el-button class="sureBtn" type="primary" @click="submit"
- >提 交
- </el-button>
- <el-button class="sureBtn" type="info" @click="toBack"
- >返 回
- </el-button>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import {
- addCheckList,
- checkUser,
- deleteCheckList,
- editCheckList,
- getCheckList,
- } from "@/api/inspect";
- import { useProcessStore } from "@/store/modules/processView";
- import { useInspectStore } from "@/store/modules/inspect";
- import { downloadFile } from "@/utils/downLoad";
- import CheckForm from "./components/checkForm.vue";
- const formRef = ref(null);
- const formData = ref({});
- const checkName = ref(null);
- const checkType = ref("first_check");
- const editStatus = ref(false);
- const editCheck = async (row) => {
- editType.value = "edit";
- formData.value.checkContent = row.checkContent;
- formData.value.checkName = row.checkName;
- formData.value.result = row.result;
- formData.value.remark = row.remark;
- formData.value.seqNoList = [processStore.useSeqNo];
- editStatus.value = true;
- if (row.filePath) {
- setTimeout(() => {
- formRef.value.setFileList([{ name: row.fileName }]);
- }, 0);
- }
- };
- const search = ref({
- limit: 10,
- page: 1,
- total: 0,
- });
- const downLoad = async (url) => {
- let resUrl = url;
- await downloadFile(resUrl, "附件");
- };
- const addCheck = () => {
- formData.value = { ...checkObj };
- formRef.value.getSeq();
- editStatus.value = true;
- editType.value = "add";
- };
- const check = () => {
- return new Promise(async (resolve, reject) => {
- await formRef.value.formRef.validate((valid) => {
- if (valid) {
- resolve();
- } else {
- ElMessage.error("请检查表单");
- reject();
- }
- });
- });
- };
- const reset = () => {
- formData.value = {};
- editStatus.value = false;
- editType.value = "add";
- getPagination();
- };
- const addCheckAsync = async () => {
- const { data, code } = await addCheckList({
- ...formData.value,
- checkType: checkType.value,
- operationId: processStore.odersData.operationId,
- workOrderCode: processStore.odersData.workOrderCode,
- operator: checkName.value,
- processId: processStore.scanInfo.id,
- fileName: fileName.value,
- operationName: processStore.scanInfo.operationName,
- });
- if (code == "200") {
- ElMessage.success("操作成功!");
- }
- };
- const deleteCheck = (id) => {
- deleteCheckAsync(id);
- };
- const deleteCheckAsync = async (id) => {
- const { data, code } = await deleteCheckList({
- id,
- });
- if (code == "200") {
- ElMessage.success("操作成功!");
- getPagination();
- }
- };
- const editCheckAsync = async () => {
- const { data, code } = await editCheckList({
- ...formData.value,
- checkType: checkType.value,
- operationId: processStore.odersData.operationId,
- workOrderCode: processStore.odersData.workOrderCode,
- operator: checkName.value,
- processId: processStore.scanInfo.id,
- fileName: fileName.value,
- operationName: processStore.scanInfo.operationName,
- });
- if (code == "200") {
- ElMessage.success("操作成功!");
- }
- };
- const fileName = ref("");
- provide("fileName", fileName);
- const submit = async () => {
- check().then(async () => {
- if (editType.value == "add") {
- await addCheckAsync();
- reset();
- } else {
- await editCheckAsync();
- reset();
- }
- });
- };
- const checkObj = {
- checkContent: "",
- checkName: "",
- checkType: "",
- filePath: "",
- result: "",
- seqNoList: [],
- };
- const dataList = ref([]);
- const getPagination = async () => {
- const { data } = await getCheckList({
- checkType: checkType.value,
- pageNo: search.value.page,
- pageSize: search.value.limit,
- operationId: processStore.odersData.operationId,
- workOrderCode: processStore.odersData.workOrderCode,
- seqNo: processStore.useSeqNo,
- operationName: processStore.scanInfo.operationName,
- });
- search.value.total = data.totalCount;
- dataList.value = data.records;
- };
- const inspectStore = useInspectStore();
- const processStore = useProcessStore();
- const editType = ref("add");
- const toBack = () => {
- editStatus.value = false;
- };
- //add 或者edit
- const options = [
- {
- value: "first_check",
- label: "首检",
- },
- {
- value: "inspection",
- label: "巡检",
- },
- {
- value: "self_check",
- label: "自检",
- },
- {
- value: "special_inspection",
- label: "专检",
- },
- {
- value: "mutual_inspection",
- label: "互检",
- },
- ];
- const inputValue = ref("");
- const handleSubmit = () => {
- inputValue.value = inputValue.value.trim();
- checkUserVal();
- };
- const logOff = () => {
- checkName.value = "";
- inspectStore.checkName = "";
- };
- // const drawingData = ref<any>([]);
- const checkUserVal = async () => {
- setTimeout(() => {
- inputValue.value = "";
- }, 0);
- const { data, code, msg } = await checkUser({
- employeeCode: inputValue.value,
- });
- if (code == "200") {
- ElMessage.success("记录成功!请开展检验操作");
- inspectStore.checkName = data.userName;
- checkName.value = data.userName;
- } else {
- ElMessage.error(msg);
- }
- };
- // const baseUrl = import.meta.env.VITE_APP_UPLOAD_URL;
- onMounted(() => {
- if (inspectStore.checkName) {
- checkName.value = inspectStore.checkName;
- }
- });
- watch(checkName, (val) => {
- if (val !== "") {
- getPagination();
- }
- });
- onUnmounted(() => {
- inspectStore.checkName = "";
- });
- </script>
- <style lang="scss" scoped>
- .opera {
- font-size: 20px;
- margin-right: 10px;
- cursor: pointer;
- color: rgb(64, 158, 255);
- }
- .sureBtn {
- border-radius: 16px;
- font-size: 16px;
- font-size: 500;
- }
- .body {
- width: 100vw;
- height: calc(100vh - 120px);
- display: flex;
- align-items: center;
- justify-content: center;
- .checkBody {
- width: 30vw;
- align-items: center;
- justify-content: center;
- }
- .checkForm {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- .headerName {
- width: 100%;
- height: 40px;
- background-color: white;
- border-radius: 20px;
- lighting-color: 40px;
- padding: 0 20px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .content {
- flex: 1;
- padding: 20px;
- .form {
- width: 800px;
- height: 100%;
- margin: 0 auto;
- background-color: white;
- border-radius: 16px;
- display: flex;
- flex-direction: column;
- .formContent {
- flex: 1;
- }
- .btns {
- width: 100%;
- height: 60px;
- display: flex;
- align-items: center;
- padding: 0 20%;
- justify-content: space-evenly;
- }
- }
- }
- }
- }
- </style>
|