123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- <template>
- <div class="stepsViewScrollH">
- <template v-if="submitStatus == true">
- <div class="operateBody">
- <el-scrollbar>
- <div class="operateBox" v-for="(item, index) in listData">
- <div class="inputBox">
- <div class="valueBox">
- <div class="describeText value">{{ index + 1 }}.记录项:</div>
- <div class="inputText">
- <el-input
- :disabled="
- item.addStatus == false && item.updateStatus == false
- "
- v-model="item.label"
- style="width: 240px"
- placeholder="请输入"
- />
- </div>
- </div>
- <div class="valueBox">
- <div class="describeText value">内容:</div>
- <div class="inputText">
- <el-input
- :disabled="
- item.addStatus == false && item.updateStatus == false
- "
- v-model="item.inputValue"
- type="textarea"
- placeholder="请输入"
- maxlength="1000"
- />
- </div>
- </div>
- </div>
- <div class="operate">
- <div class="iconBox">
- <div
- class="operateText"
- v-if="
- item.addStatus == false &&
- index == listData.length - 1 &&
- item.updateStatus == false
- "
- @click="addFnc"
- >
- 增加
- </div>
- <div
- v-if="item.addStatus == false && item.updateStatus == false"
- class="operateText"
- @click="deleteFnc(item.id, index)"
- >
- 删除
- </div>
- <div
- v-if="item.addStatus == false && item.updateStatus == false"
- class="operateText"
- @click="updateFnc(item)"
- >
- 编辑
- </div>
- <div
- v-if="item.addStatus == true || item.updateStatus == true"
- class="operateText"
- @click="isOkFnc(item, index)"
- >
- 完成
- </div>
- <div
- v-if="item.addStatus == true || item.updateStatus == true"
- class="operateText"
- @click="cancelFnc(index, item)"
- >
- 取消
- </div>
- </div>
- </div>
- </div>
- <div
- @click="addFnc"
- class="operateBox"
- v-if="listData.length < 1"
- style="
- height: 80px;
- display: flex;
- align-items: center;
- justify-content: center;
- "
- >
- <el-icon size="30">
- <Plus />
- </el-icon>
- </div>
- </el-scrollbar>
- </div>
- </template>
- <!-- 展示 -->
- <div class="recordBody" v-if="submitStatus == false">
- <div class="left" v-if="listData.length > 0">
- <el-scrollbar>
- <div
- @click="showSelectIndex = index"
- :class="index == showSelectIndex ? 'infoBox active' : 'infoBox'"
- v-for="(item, index) in listData"
- >
- <div>
- <div class="titleText">记录项名:</div>
- <div class="describeText">{{ item.label }}</div>
- </div>
- <div>
- <div class="titleText">记录内容:</div>
- <div class="describeText textarea">
- {{ item.inputValue }}
- </div>
- </div>
- </div>
- </el-scrollbar>
- </div>
- <div class="right" v-if="listData.length > 0">
- <el-scrollbar>
- <div class="titleText" style="text-align: center">
- {{ listData[showSelectIndex].label }}
- </div>
- <div class="describeText" style="padding: 0 20px">
- {{ listData[showSelectIndex].inputValue }}
- </div>
- </el-scrollbar>
- </div>
- <div
- style="
- height: 100%;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- "
- v-if="listData.length == 0"
- >
- <Empty />
- </div>
- </div>
- <div class="btns">
- <el-button @click="btn" type="primary" plain>{{
- submitStatus ? "返回 " : "编 辑"
- }}</el-button>
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import {
- listAdd,
- getList,
- listDelete,
- listUpdate,
- } from "@/api/prosteps/jiluxiang";
- import { useProcessStore } from "@/store";
- defineOptions({
- name: "Jiluxiang",
- });
- const showSelectIndex = ref(0);
- const submitStatus = ref(false);
- const store = useProcessStore();
- const jianDisabled = ref(true);
- const jiaDisabled = ref(false);
- const listData = ref([]);
- const submitData = ref([]);
- const getListData = async () => {
- const { data } = await getList({
- pageNo: 1,
- pageSize: 9999,
- processId: Number(store.scanInfo.id),
- seqNo: store.scanInfo.seqNo,
- operationRecordItemId: Number(store.odersData.operationId),
- });
- listData.value = data.records;
- listData.value.forEach((item) => {
- item.addStatus = false;
- item.updateStatus = false;
- });
- };
- const item = {
- inputValue: "",
- label: "",
- updateInputValue: "",
- updateLabel: "",
- processId: Number(store.scanInfo.id),
- seqNo: store.scanInfo.seqNo,
- operationRecordItemId: Number(store.odersData.operationId),
- addStatus: true,
- updateStatus: false,
- };
- const btn = () => {
- if (submitStatus.value == true) {
- if (
- listData.value[listData.value.length - 1].addStatus == true ||
- listData.value[listData.value.length - 1].updateStatus == true
- ) {
- ElMessage.warning("请确认各项记录编辑完成!");
- return;
- } else {
- submitStatus.value = !submitStatus.value;
- }
- } else {
- submitStatus.value = !submitStatus.value;
- }
- };
- const addFnc = (index) => {
- listData.value.push({
- ...item,
- sort: listData.value == 0 ? 1 : listData.value.length,
- });
- };
- const deleteFnc = async (id, index) => {
- const { data, code } = await listDelete({
- id,
- });
- if (code == "200") {
- ElMessage.success("操作成功!");
- listData.value.splice(index, 1);
- }
- };
- const updateFnc = (item) => {
- item.updateStatus = true;
- item.updateInputValue = item.inputValue;
- item.updateLabel = item.label;
- };
- const isOkFnc = async (item, index) => {
- if (item.addStatus == true) {
- const { data, code } = await listAdd(item);
- if (code == "200") {
- ElMessage.success("操作成功!");
- item.addStatus = false;
- item.id = data.id;
- }
- } else {
- const { data, code } = await listUpdate({
- ...item,
- inputValue: item.inputValue,
- label: item.label,
- processId: Number(store.scanInfo.id),
- seqNo: store.scanInfo.seqNo,
- operationRecordItemId: Number(store.odersData.operationId),
- });
- if (code == "200") {
- ElMessage.success("更新成功!");
- item.updateInputValue = "";
- item.updateLabel = "";
- item.updateStatus = false;
- }
- }
- };
- const cancelFnc = (index, item) => {
- if (item.addStatus == true) {
- listData.value.splice(index, 1);
- } else {
- item.inputValue = item.updateInputValue;
- item.label = item.updateLabel;
- item.updateStatus = false;
- }
- };
- onMounted(() => {
- getListData();
- });
- </script>
- <style lang="scss" scoped>
- .describeText {
- color: black;
- }
- .stepsViewScrollH {
- position: relative;
- }
- .active {
- border: 1px solid #0000ff50;
- }
- .btns {
- width: 100%;
- height: 70px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 10px;
- .el-button {
- width: 120px;
- border-radius: 25px;
- font-size: $f20;
- height: 50px;
- margin: 0 40px;
- }
- }
- .operateBody {
- width: 100%;
- height: calc(100% - 130px);
- }
- .recordBody {
- width: 100%;
- height: calc(100% - 130px);
- display: flex;
- .left {
- width: 50%;
- height: calc(100%);
- .infoBox {
- display: inline-block;
- box-sizing: border-box;
- width: 280px;
- height: 180px;
- background-color: white;
- border-radius: 16px;
- margin: 10px;
- margin-top: 0px;
- box-sizing: border-box;
- padding: 20px;
- .textarea {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- .right {
- width: 50%;
- background-color: white;
- border-radius: 16px;
- height: calc(100%);
- }
- }
- .operateBox {
- padding: $p20;
- background-color: white;
- border-radius: 16px;
- margin: $p20;
- position: relative;
- display: flex;
- .inputBox {
- flex: 1;
- height: auto;
- border: 1px solid #00000060;
- border-radius: 16px;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- padding: 0 $p20;
- .valueBox {
- display: flex;
- margin: $p10 0;
- .inputText {
- flex: 1;
- }
- .value {
- text-align: right;
- width: 110px;
- }
- }
- }
- .operate {
- width: 60px;
- height: auto;
- @include flex;
- .iconBox {
- display: flex;
- flex-direction: column;
- .operateText {
- padding: 0 5px;
- cursor: pointer;
- }
- .operateText:hover {
- background-color: var(--el-color-primary);
- color: white;
- border-radius: 16px;
- padding: 0 5px;
- }
- }
- }
- }
- .el-icon {
- width: 60px;
- font-weight: bold;
- }
- </style>
|