123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577 |
- <template>
- <div class="pageIndexClass">
- <!-- <Banner /> -->
- <div class="content">
- <byTable :source="sourceList.data" :pagination="sourceList.pagination" :config="config" :loading="loading" highlight-current-row
- :selectConfig="selectConfig" :table-events="{
- //element talbe事件都能传
- select: select,
- }" :action-list="[
- {
- text: '添加产线',
- action: () => openModal('add'),
- },
- ]" @get-list="getList">
- <template #line="{ item }">
- <div style="width:100%">
- <span v-for="(x, i) in item.processRouteNameList" :key="i">
- {{ x }}
- <span style="margin: 0 3px" v-if="i + 1 < item.processRouteNameList.length"> ,
- </span>
- </span>
- </div>
- </template>
- <template #product="{ item }">
- <div style="width:100%">
- <span v-for="(x, i) in item.applicableProductsNameList" :key="i">
- {{ x }}
- <span v-if="i + 1 < item.applicableProductsNameList.length">,
- </span>
- </span>
- </div>
- </template>
- </byTable>
- </div>
- <el-dialog :title="modalType == 'add' ? '添加产线' : '编辑产线'" v-model="dialogVisible" width="95%" destroy-on-close>
- <div style="display:flex">
- <div style="width:350px">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="byform" v-loading="submitLoading">
- </byForm>
- <div style="text-align:center">
- <el-button @click="dialogVisible = false" size="default">取 消</el-button>
- <el-button type="primary" @click="submitForm" size="default" :loading="submitLoading">
- 确 定
- </el-button>
- </div>
- </div>
- <div style="width:calc(100% - 350px)">
- <div class="processChart" style="width:100%">
- <div class="from">
- <div class="commons-title">工序</div>
- </div>
- <div class="content">
- <div class="commons-title">产线路线</div>
- <div class="chart-warp">
- <vueFlow :nodeObject="nodeObject" ref="vueFlowDom"></vueFlow>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- <template #footer>
-
- </template> -->
- </el-dialog>
- <el-dialog v-model="openProduct" title="选择产品" width="70%" append-to-body>
- <SelectProduct @handleSelect="handleSelect" :isTechnology="'0'"></SelectProduct>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="openProduct = false">取消</el-button>
- </span>
- </template>
- </el-dialog>
- <el-dialog :title=" '产线适用产品'" v-model="dialogVisibleOne" width="50%" destroy-on-close>
- <byForm :formConfig="formConfigOne" :formOption="formOption" v-model="formData.dataOne" ref="byformOne" v-loading="submitLoading">
- <template #productSlot>
- <div>
- <el-button type="primary" @click="openProduct = true">
- 添加产品
- </el-button>
- <div style="margin-top: 15px" v-if="productList && productList.length > 0">
- <el-tag style="margin-right: 10px" type="info" closable v-for="(product, index) in productList" :key="product.id"
- @close="handleRemove(index)">{{ product.name }}({{ product.spec }})</el-tag>
- </div>
- </div>
- </template>
- </byForm>
- <template #footer>
- <el-button @click="dialogVisibleOne = false" size="default">取 消</el-button>
- <el-button type="primary" @click="submitFormOne" size="default" :loading="submitLoading">
- 确 定
- </el-button>
- </template>
- </el-dialog>
- </div>
- </template>
-
- <script setup>
- /* eslint-disable vue/no-unused-components */
- import { ElMessage, ElMessageBox } from "element-plus";
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import SelectProduct from "@/components/product/SelectProduct";
- import vueFlow from "@/views/production/project/processConfig/vueFlow.vue";
- import { computed, defineComponent, nextTick, ref, toRaw } from "vue";
- const loading = ref(false);
- const submitLoading = ref(false);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 3,
- pageNum: 1,
- pageSize: 10,
- },
- });
- let lineData = ref([
- {
- key: "1",
- label: "测试1",
- disabled: false,
- },
- {
- key: "2",
- label: "测试2",
- disabled: false,
- },
- {
- key: "3",
- label: "测试3",
- disabled: false,
- },
- {
- key: "4",
- label: "测试4",
- disabled: false,
- },
- ]);
- const taskData = ref([]);
- let selectLine = ref([]);
- let dialogVisible = ref(false);
- let openProduct = ref(false);
- let modalType = ref("add");
- let rules = ref({
- name: [{ required: true, message: "请输入产线名称", trigger: "blur" }],
- isBatchMode: [
- { required: true, message: "请选择批量模式", trigger: "change" },
- ],
- productionTaskId: [
- { required: true, message: "请选择生产任务", trigger: "change" },
- ],
- });
- const { proxy } = getCurrentInstance();
- const selectConfig = reactive([
- // {
- // label: "车间类型",
- // prop: "type",
- // data: [
- // {
- // label: "普通车间",
- // value: "1",
- // },
- // {
- // label: "半自动化车间",
- // value: "2",
- // },
- // {
- // label: "自动化车间",
- // value: "3",
- // },
- // ],
- // },
- ]);
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "产线名称",
- prop: "name",
- width: 150,
- },
- },
- {
- attrs: {
- label: "产线路线",
- slot: "line",
- },
- },
- // {
- // attrs: {
- // label: "适用产品",
- // slot: "product",
- // },
- // },
- {
- attrs: {
- label: "产线说明",
- prop: "remarks",
- },
- },
- {
- attrs: {
- label: "操作",
- width: "120",
- align: "center",
- },
- // 渲染 el-button,一般用在最后一列。
- renderHTML(row) {
- return [
- // {
- // attrs: {
- // label: "产品",
- // type: "primary",
- // text: true,
- // },
- // el: "button",
- // click() {
- // updateProduct(row);
- // },
- // },
- {
- attrs: {
- label: "修改",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- getDtl(row);
- },
- },
- {
- attrs: {
- label: "删除",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- // 弹窗提示是否删除
- ElMessageBox.confirm(
- "此操作将永久删除该数据, 是否继续?",
- "提示",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- ).then(() => {
- // 删除
- proxy
- .post("/technology/delete", {
- id: row.id,
- })
- .then((res) => {
- ElMessage({
- message: "删除成功",
- type: "success",
- });
- getList();
- });
- });
- },
- },
- ];
- },
- },
- ];
- });
- let formData = reactive({
- data: {
- name: "",
- processRouteList: [],
- remarks: "",
- },
- dataOne: {},
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const byform = ref(null);
- const formConfig = computed(() => {
- return [
- {
- type: "title1",
- title: "基本信息",
- },
- {
- type: "input",
- prop: "name",
- label: "产线名称",
- },
- {
- type: "radio",
- prop: "isBatchMode",
- label: "批量模式",
- data: [
- {
- dictKey: "0",
- dictValue: "关闭批量模式",
- },
- {
- dictKey: "1",
- dictValue: "开启批量模式",
- },
- ],
- fn: (val) => {
- if (val == "0") {
- formData.data.productionTaskId = "";
- }
- },
- },
- {
- type: "select",
- prop: "productionTaskId",
- label: "生产任务",
- data: taskData.value,
- itemWidth: 100,
- multiple: false,
- isShow: formData.data.isBatchMode == "1",
- },
- // {
- // type: "slot",
- // slotName: "lineSlot",
- // label: "产线路线",
- // },
- // {
- // type: "slot",
- // slotName: "productSlot",
- // label: "适用产品",
- // },
- {
- type: "input",
- prop: "remarks",
- label: "产线说明",
- itemType: "textarea",
- },
- ];
- });
- const formConfigOne = computed(() => {
- return [
- {
- type: "slot",
- slotName: "productSlot",
- label: "适用产品",
- },
- ];
- });
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy
- .post("/technology/page", sourceList.value.pagination)
- .then((message) => {
- console.log(message);
- sourceList.value.data = message.rows;
- sourceList.value.pagination.total = message.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const getProcesses = () => {
- // proxy
- // .post("/productionProcesses/page", { pageNum: 1, pageSize: 9999 })
- // .then((res) => {
- // lineData.value = res.rows.map((x) => ({
- // key: x.id,
- // label: x.name,
- // disabled: false,
- // }));
- // });
- proxy
- .post("/produceOrderDetail/page", { pageNum: 1, pageSize: 9999 })
- .then((res) => {
- taskData.value = res.rows.map((x) => ({
- ...x,
- label: x.orderCode,
- value: x.id,
- }));
- });
- };
- const openModal = () => {
- dialogVisible.value = true;
- nodeObject.value = "";
- modalType.value = "add";
- formData.data = {
- isBatchMode: 0,
- };
- selectLine.value = [];
- };
- const vueFlowDom = ref(null);
- const nodeObject = ref("");
- const submitForm = () => {
- console.log("www");
- byform.value.handleSubmit((valid) => {
- const data = vueFlowDom.value.submitAll();
- if (!data) {
- return;
- }
- formData.data.nodeObject = data.nodeObject;
- submitLoading.value = true;
- proxy.post("/technology/" + modalType.value, formData.data).then(
- (res) => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- submitLoading.value = false;
- getList();
- },
- (err) => {
- submitLoading.value = false;
- }
- );
- });
- };
- const submitFormOne = () => {
- if (!productList.value.length > 0)
- return ElMessage({
- message: "请添加适用产品",
- type: "info",
- });
- formData.dataOne.productList = productList.value.map((x) => ({
- productId: x.id,
- }));
- //选择的产品数据
- submitLoading.value = true;
- proxy.post("/technology/editProduct", formData.dataOne).then(
- (res) => {
- ElMessage({
- message: "操作成功",
- type: "success",
- });
- dialogVisibleOne.value = false;
- submitLoading.value = false;
- getList();
- },
- (err) => {
- submitLoading.value = false;
- }
- );
- };
- const getDtl = (row) => {
- modalType.value = "edit";
- proxy.post("/technology/detail", { id: row.id }).then((res) => {
- nodeObject.value = res.nodeObject;
- // productList.value = res.applicableProductsList;
- // selectLine.value = res.processRouteList.map((x) => x.id);
- formData.data = res;
- dialogVisible.value = true;
- });
- };
- const dialogVisibleOne = ref(false);
- const updateProduct = (row) => {
- proxy.post("/technology/detail", { id: row.id }).then((res) => {
- productList.value = res.applicableProductsList;
- formData.dataOne = {
- id: row.id,
- productList: [],
- };
- dialogVisibleOne.value = true;
- });
- };
- const productList = ref([]);
- const handleSelect = (row) => {
- const flag = productList.value.some((x) => x.id === row.id);
- if (flag)
- return ElMessage({
- message: "该产品已选择",
- type: "info",
- });
- productList.value.push(row);
- return ElMessage({
- message: "选择成功",
- type: "success",
- });
- };
- const handleRemove = (index) => {
- productList.value.splice(index, 1);
- return ElMessage({
- message: "删除成功",
- type: "success",
- });
- };
- getList();
- getProcesses();
- // 以下是实现拖拽排序的处理方法
- const dragStar = (e, option) => {
- // if (!selectLine.value.includes(e.target.id)) return; //拖拽的数据如不是选择的数据直接return
- e.dataTransfer.setData("text/plain", option.key);
- e.dataTransfer.effectAllowed = "move";
- e.dataTransfer.dropEffect = "move";
- };
- const dragOver = (e, option) => {
- e.preventDefault();
- };
- const handleDrop = (e) => {
- // if (!selectLine.value.includes(e.target.id)) return; //拖拽的数据如不是选择的数据直接return
- e.preventDefault();
- const sourceKey = e.dataTransfer.getData("text/plain"); //获取拖动元素的key值
- const targetKey = e.target.id; //获取被互换元素的id值
- swapItems(sourceKey, targetKey);
- };
- // const findIndex = (target) => {
- // while (target && target.parentNode) {
- // let targetParent = target.parentNode;
- // const index = Array.from(targetParent.children).indexOf(target);
- // if (index !== -1) {
- // return index;
- // }
- // }
- // return -1;
- // };
- // 调换数据源位置
- const swapItems = (sourceKey, targetKey) => {
- const sourceIndex = selectLine.value.findIndex((x) => x === sourceKey);
- const targetIndex = selectLine.value.findIndex((x) => x === targetKey);
- const temp = selectLine.value[sourceIndex];
- selectLine.value[sourceIndex] = selectLine.value[targetIndex];
- selectLine.value[targetIndex] = temp;
- };
- </script>
-
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- .processChart {
- border: 1px solid #ccc;
- // padding: 20px;
- display: flex;
- justify-content: space-between;
- position: relative;
- .from {
- width: 230px;
- background: #fff;
- border-radius: 5px;
- padding: 15px;
- }
- .content {
- width: calc(100% - 230px);
- border-radius: 5px;
- padding: 15px;
- background: #fff;
- }
- }
- .chart-warp {
- width: 100%;
- // height: calc(100vh - 280px);
- }
- </style>
|