123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 |
- <template>
- <div class="tenant">
- <!-- <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 #slotName="{ item }">
- {{ item.createTime }}
- </template>
- </byTable>
- </div>
- <el-dialog
- :title="modalType == 'add' ? '添加工艺' : '编辑工艺'"
- v-model="dialogVisible"
- width="800"
- v-loading="loading"
- >
- <byForm
- :formConfig="formConfig"
- :formOption="formOption"
- v-model="formData.data"
- :rules="rules"
- ref="byform"
- >
- <template #lineSlot>
- <el-transfer
- v-model="selectLine"
- filterable
- filter-placeholder="搜索"
- :data="lineData"
- :titles="['可选', '已选']"
- >
- <template #default="{ option }">
- <div
- draggable="true"
- @dragstart="dragStar($event, option)"
- @dragover="dragOver($event, option)"
- style="cursor: default"
- >
- {{ option.label }}
- </div>
- </template>
- </el-transfer>
- </template>
- <template #productSlot>
- <div>
- <el-button type="primary" @click="openProduct = true">
- 添加产品
- </el-button>
- <div style="margin-top: 15px">
- <el-tag
- class="ml-2"
- type="info"
- closable
- v-for="(product, index) in productList"
- :key="product.id"
- @close="handleRemove(index)"
- >{{ product.name }}</el-tag
- >
- </div>
- </div>
- </template>
- <!-- :filter-method="filterMethod" -->
- </byForm>
- <template #footer>
- <el-button @click="dialogVisible = false" size="large">取 消</el-button>
- <el-button
- type="primary"
- @click="submitForm('byform')"
- size="large"
- :loading="submitLoading"
- >
- 确 定
- </el-button>
- </template>
- </el-dialog>
- <el-dialog
- v-model="openProduct"
- title="选择产品"
- width="70%"
- :before-close="handleClose"
- >
- <SelectProduct @handleSelect="handleSelect"></SelectProduct>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="openProduct = false">取消</el-button>
- </span>
- </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/iot/SelectProduct";
- import { computed, defineComponent, 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 = reactive([
- {
- key: "1",
- label: "测试1",
- disabled: false,
- },
- {
- key: "2",
- label: "测试2",
- disabled: false,
- },
- {
- key: "3",
- label: "测试3",
- disabled: false,
- },
- {
- key: "4",
- label: "测试4",
- disabled: false,
- },
- ]);
- let selectLine = ref([]);
- let dialogVisible = ref(false);
- let openProduct = ref(false);
- let modalType = ref("add");
- let rules = ref({
- type: [{ required: true, message: "请选择车间类型", trigger: "change" }],
- name: [{ required: true, message: "请输入车间名称", trigger: "blur" }],
- personLiableId: [
- { 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: "工艺路线",
- prop: "remarks",
- },
- },
- {
- attrs: {
- label: "适用产品",
- prop: "type",
- width: 120,
- },
- render(type) {
- return type == 1
- ? "普通车间"
- : type == 2
- ? "半自动化车间"
- : type == "3"
- ? "自动化车间"
- : "";
- },
- },
- {
- attrs: {
- label: "工艺说明",
- prop: "remarks",
- },
- },
- {
- attrs: {
- label: "操作",
- width: "200",
- align: "right",
- },
- // 渲染 el-button,一般用在最后一列。
- renderHTML(row) {
- return [
- {
- 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("/workshop/delete", {
- id: row.id,
- })
- .then((res) => {
- ElMessage({
- message: "删除成功",
- type: "success",
- });
- getList();
- });
- });
- },
- },
- ];
- },
- },
- ];
- });
- let formData = reactive({
- data: {
- type: "1",
- },
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const byform = ref(null);
- const formConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "name",
- label: "工艺名称",
- required: true,
- },
- {
- type: "slot",
- slotName: "lineSlot",
- label: "工艺路线",
- },
- {
- type: "slot",
- slotName: "productSlot",
- label: "适用产品",
- },
- {
- type: "input",
- prop: "remarks",
- label: "车间说明",
- itemType: "textarea",
- },
- ];
- });
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy.post("/workshop/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 openModal = () => {
- dialogVisible.value = true;
- modalType.value = "add";
- formData.data = {};
- };
- const submitForm = () => {
- console.log(byform.value);
- byform.value.handleSubmit((valid) => {
- submitLoading.value = true;
- proxy.post("/workshop/" + modalType.value, formData.data).then(
- (res) => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- submitLoading.value = false;
- getList();
- },
- (err) => {
- console.log(err, "aswwwww");
- submitLoading.value = false;
- }
- );
- });
- };
- const getDtl = (row) => {
- modalType.value = "edit";
- proxy.post("/workshop/detail", { id: row.id }).then((res) => {
- res.type = res.type + "";
- formData.data = res;
- console.log(formData);
- dialogVisible.value = true;
- });
- };
- const filterMethod = (query, item) => {
- return item.initial.toLowerCase().includes(query.toLowerCase());
- };
- 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",
- });
- };
- // const renderDom = (h, option) => {
- // console.log(option, "ass");
- // h(lineData.map(x=> {
- // return `<div>${x.x.label}}</div>`
- // })
- // };
- // getList();
- let dom = ref(null);
- let selectItem = ref({});
- const dragStar = (e, option) => {
- dom.value = e.target;
- const target = e.target;
- selectItem.value = option;
- e.dataTransfer.setData("text/plain", target.id);
- e.dataTransfer.effectAllowed = "move";
- };
- const dragOver = (e, option) => {
- e.preventDefault();
- const index = selectLine.value.findIndex(
- (x) => x.key === selectItem.value.key
- );
- const index1 = selectLine.value.findIndex((x) => x.key === toRaw(option).key);
- const item = selectLine.value[index];
- selectLine.value[index] = selectLine.value[index1];
- selectLine.value[index1] = item;
- console.log(selectLine.value);
- };
- </script>
-
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- </style>
|