1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000 |
- <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: selectRow,
- 'select-all': selectRow,
- }"
- :action-list="[
- {
- text: '出货',
- disabled: selectData.length === 0,
- action: () => openModalOne(),
- },
- {
- text: '产品装箱',
- action: () => openModal(),
- },
- ]"
- @get-list="getList"
- >
- <template #code="{ item }">
- <div>
- <div
- v-for="(item, index) in getData(item.codeAPName, 'code')"
- :key="index"
- >
- {{ item }}
- </div>
- </div>
- </template>
- <template #productName="{ item }">
- <div>
- <div
- v-for="(item, index) in getData(item.codeAPName, 'productName')"
- :key="index"
- >
- {{ item }}
- </div>
- </div>
- </template>
- </byTable>
- </div>
- <el-dialog
- title="产品装箱"
- v-model="dialogVisible"
- width="800"
- v-loading="loading"
- >
- <el-form
- :model="formData.data"
- :rules="rules"
- ref="formDom"
- label-position="top"
- >
- <el-row :gutter="10">
- <el-col :span="8">
- <el-form-item label="客户名称" prop="customerId">
- <el-select
- v-model="formData.data.customerId"
- placeholder="请选择"
- @change="handleChangeCustomer"
- filterable
- style="width: 100%"
- >
- <el-option
- v-for="item in customerList"
- :label="item.name"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-form-item label="选择合同" prop="contractIds">
- <el-select
- v-model="formData.data.contractIds"
- placeholder="请选择"
- @change="handleChangeContract"
- filterable
- style="width: 100%"
- multiple
- >
- <el-option
- v-for="item in contractData"
- :label="item.code"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="合同明细" prop="contractProductData">
- <el-table
- :data="formData.data.contractProductData"
- @select="handleSelectProduct"
- @select-all="handleSelectProduct"
- >
- <el-table-column type="selection" label="" width="50" />
- <el-table-column prop="contractCode" label="合同编码" />
- <el-table-column prop="productName" label="产品名称" />
- <el-table-column prop="cpQuantity" label="合同数量" />
- <el-table-column prop="waitQuantity" label="待装箱数量" />
- <el-table-column prop="quantity" label="装箱数量" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="'contractProductData.' + $index + '.quantity'"
- :inline-message="true"
- >
- <el-input-number
- v-model="row.quantity"
- :precision="4"
- :controls="false"
- :min="0"
- />
- </el-form-item>
- </template>
- </el-table-column>
- </el-table>
- <el-button
- type="primary"
- style="margin-top: 10px; width: 100%"
- @click="handleClickPacking"
- >
- 装箱
- </el-button>
- </el-form-item>
- <el-form-item label="装箱明细" prop="packDetailList">
- <div
- class="box"
- v-for="(item, index) in formData.data.packDetailList"
- :key="index"
- >
- <div ref="">箱规</div>
- <el-row :gutter="10">
- <el-col :span="5">
- <el-form-item
- label="箱数"
- :prop="'packDetailList.' + index + '.packQuantity'"
- :rules="rules.packQuantity"
- >
- <el-input-number
- v-model="item.packQuantity"
- :precision="0"
- :controls="false"
- :min="1"
- placeholder="请输入"
- onmousewheel="return false;"
- @change="(val) => handleChangePackQuantity(val, index)"
- />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item
- label="净重(kg)"
- :prop="'packDetailList.' + index + '.netWeight'"
- :rules="rules.netWeight"
- >
- <el-input-number
- v-model="item.netWeight"
- :precision="0"
- :controls="false"
- :min="0"
- placeholder="请输入"
- onmousewheel="return false;"
- />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item
- label="毛重(kg)"
- :prop="'packDetailList.' + index + '.roughWeight'"
- :rules="rules.roughWeight"
- >
- <el-input-number
- v-model="item.roughWeight"
- :precision="0"
- :controls="false"
- :min="0"
- placeholder="请输入"
- onmousewheel="return false;"
- />
- </el-form-item>
- </el-col>
- <el-col :span="9">
- <el-row>
- <el-form-item label="尺寸(cm³)" required>
- <el-col :span="1"></el-col>
- <el-col :span="7">
- <el-form-item
- label=""
- :prop="'packDetailList.' + index + '.boxLong'"
- :rules="rules.boxLong"
- >
- <el-input-number
- v-model="item.boxLong"
- placeholder="长"
- :precision="2"
- :controls="false"
- :min="0"
- onmousewheel="return false;"
- ></el-input-number>
- </el-form-item>
- </el-col>
- <el-col :span="1" style="text-align: center"> * </el-col>
- <el-col :span="7">
- <el-form-item
- label=""
- :prop="'packDetailList.' + index + '.boxWide'"
- :rules="rules.boxWide"
- >
- <el-input-number
- v-model="item.boxWide"
- placeholder="宽"
- :precision="2"
- :controls="false"
- :min="0"
- onmousewheel="return false;"
- ></el-input-number>
- </el-form-item>
- </el-col>
- <el-col :span="1" style="text-align: center"> * </el-col>
- <el-col :span="7">
- <el-form-item
- label=""
- :prop="'packDetailList.' + index + '.boxHigh'"
- :rules="rules.boxHigh"
- >
- <el-input-number
- v-model="item.boxHigh"
- placeholder="高"
- :precision="2"
- :controls="false"
- :min="0"
- onmousewheel="return false;"
- ></el-input-number>
- </el-form-item>
- </el-col>
- </el-form-item>
- </el-row>
- </el-col>
- </el-row>
- <div class="line"></div>
- <el-form-item label="关联合同产品">
- <div class="flex-box">
- <div
- class="item"
- v-for="(product, j) in item.packDetailProductList"
- :key="j"
- >
- <div>合同编码:{{ product.contractCode }}</div>
- <div>产品名称:{{ product.productName }}</div>
- <div>每箱数量:{{ product.quantity }}</div>
- </div>
- </div>
- </el-form-item>
- <div
- class="bottom-arrow"
- v-show="!item.isShow"
- @click="item.isShow = !item.isShow"
- >
- <span style="margin-right: 5px"> 自定义装箱明细</span>
- <el-icon><ArrowDownBold /></el-icon>
- </div>
- <div
- class="bottom-arrow"
- v-show="item.isShow"
- @click="item.isShow = !item.isShow"
- >
- <span style="margin-right: 5px"> 收起</span>
- <el-icon><ArrowUpBold /></el-icon>
- </div>
- <el-form-item prop="packDetailGoodsList" v-show="item.isShow">
- <el-button
- type="primary"
- style="margin-bottom: 10px"
- @click="handleCustomPush(index)"
- >
- 添加行
- </el-button>
- <el-table :data="item.packDetailGoodsList">
- <el-table-column label="货物描述">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="[
- 'packDetailList',
- index,
- 'packDetailGoodsList',
- $index,
- 'remark',
- ]"
- :rules="rules.remark"
- :inline-message="true"
- >
- <el-input v-model="row.remark" placeholder="请输入" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="单位" width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="[
- 'packDetailList',
- index,
- 'packDetailGoodsList',
- $index,
- 'unit',
- ]"
- :rules="rules.unit"
- :inline-message="true"
- >
- <el-input v-model="row.unit" placeholder="请输入" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="数量" width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="[
- 'packDetailList',
- index,
- 'packDetailGoodsList',
- $index,
- 'quantity',
- ]"
- :rules="rules.quantityOne"
- :inline-message="true"
- >
- <el-input-number
- v-model="row.quantity"
- :precision="4"
- :controls="false"
- :min="0"
- />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="zip" label="操作" width="100">
- <template #default="{ $index }">
- <el-button
- type="primary"
- link
- @click="handleCustomRemove(index, $index)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </el-form-item>
- </div>
- </el-form-item>
- </el-form>
- <template #footer>
- <el-button @click="handleClose" size="large">取 消</el-button>
- <el-button
- type="primary"
- @click="submitForm()"
- size="large"
- :loading="submitLoading"
- >
- 确 定
- </el-button>
- </template>
- </el-dialog>
- <el-dialog
- title="合并出货"
- v-model="dialogVisibleOne"
- width="400"
- v-loading="loadingOne"
- >
- <byForm
- :formConfig="formConfig"
- :formOption="formOption"
- v-model="formData.dataOne"
- :rules="rules"
- ref="byform"
- >
- </byForm>
- <template #footer>
- <el-button @click="dialogVisibleOne = false" size="large"
- >取 消</el-button
- >
- <el-button
- type="primary"
- @click="submitFormOne()"
- size="large"
- :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 FileUpload from "@/components/FileUpload/index";
- import { computed, defineComponent, ref } from "vue";
- import { getToken } from "@/utils/auth";
- const uploadFileUrl = ref(import.meta.env.VITE_APP_BASE_API + "/common/upload"); // 上传文件服务器地址
- const headers = ref({ Authorization: "Bearer " + getToken() });
- const uploadData = ref({});
- const loading = ref(false);
- const loadingOne = ref(false);
- const submitLoading = ref(false);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 3,
- pageNum: 1,
- pageSize: 10,
- status: "",
- },
- });
- let dialogVisible = ref(false);
- let dialogVisibleOne = ref(false);
- let modalType = ref("add");
- let fileList = ref([]);
- let rules = ref({
- contractIds: [{ required: true, message: "请选择合同", trigger: "change" }],
- packQuantity: [{ required: true, message: "请输入箱数", trigger: "blur" }],
- netWeight: [{ required: true, message: "请输入净重", trigger: "blur" }],
- roughWeight: [{ required: true, message: "请输入毛重", trigger: "blur" }],
- boxLong: [{ required: true, message: "请输入长", trigger: "blur" }],
- boxWide: [{ required: true, message: "请输入宽", trigger: "blur" }],
- boxHigh: [{ required: true, message: "请输入高", trigger: "blur" }],
- quantity: [{ required: true, message: "请输入装箱数量", trigger: "blur" }],
- quantityOne: [{ required: true, message: "请输入数量", trigger: "blur" }],
- unit: [{ required: true, message: "请输入单位", trigger: "blur" }],
- remark: [{ required: true, message: "请输入货物描述", trigger: "blur" }],
- contractId: [{ required: true, message: "请选择主合同", trigger: "change" }],
- });
- const { proxy } = getCurrentInstance();
- const selectConfig = reactive([
- {
- label: "出货状态",
- prop: "shipmentStatus",
- data: [
- {
- label: "未出货",
- value: "0",
- },
- {
- label: "已出货",
- value: "1",
- },
- ],
- },
- ]);
- const config = computed(() => {
- return [
- {
- type: "selection",
- attrs: {
- checkAtt: "isCheck",
- },
- },
- {
- attrs: {
- label: "合同号",
- prop: "codeAPName",
- slot: "code",
- },
- },
- {
- attrs: {
- label: "产品名称",
- prop: "codeAPName",
- slot: "productName",
- },
- },
- {
- attrs: {
- label: "总箱数",
- prop: "packQuantity",
- width: 90,
- },
- },
- {
- attrs: {
- label: "净重",
- prop: "netWeight",
- width: 90,
- },
- render(netWeight) {
- return netWeight + "kg";
- },
- },
- {
- attrs: {
- label: "毛重",
- prop: "roughWeight",
- width: 90,
- },
- render(roughWeight) {
- return roughWeight + "kg";
- },
- },
- {
- attrs: {
- label: "长",
- prop: "boxLong",
- width: 90,
- },
- render(boxLong) {
- return boxLong + "cm";
- },
- },
- {
- attrs: {
- label: "宽",
- prop: "boxWide",
- width: 90,
- },
- render(boxWide) {
- return boxWide + "cm";
- },
- },
- {
- attrs: {
- label: "高",
- prop: "boxHigh",
- width: 90,
- },
- render(boxHigh) {
- return boxHigh + "cm";
- },
- },
- {
- attrs: {
- label: "总体积",
- prop: "bomVolume",
- width: 120,
- },
- render(bomVolume) {
- return bomVolume + "m³";
- },
- },
- {
- attrs: {
- label: "出货状态",
- prop: "shipmentStatus",
- width: 90,
- },
- render(status) {
- return status == 1 ? "已出货" : status == 0 ? "未出货" : "";
- },
- },
- {
- attrs: {
- label: "出货时间",
- prop: "shipmentTime",
- width: 155,
- },
- },
- {
- attrs: {
- label: "操作",
- width: "90",
- align: "center",
- },
- // 渲染 el-button,一般用在最后一列。
- renderHTML(row) {
- return [
- // {
- // attrs: {
- // label: "打印",
- // type: "primary",
- // text: true,
- // },
- // el: "button",
- // click() {
- // getDtl(row);
- // },
- // },
- // {
- // attrs: {
- // label: "删除",
- // type: "primary",
- // text: true,
- // disabled: row.status != 30,
- // },
- // el: "button",
- // click() {
- // ElMessageBox.confirm(
- // "此操作将永久作废该数据, 是否继续?",
- // "提示",
- // {
- // confirmButtonText: "确定",
- // cancelButtonText: "取消",
- // type: "warning",
- // }
- // ).then(() => {
- // // 删除
- // proxy
- // .post("/subscribeDetail/edit", {
- // ...row,
- // status: 99,
- // })
- // .then((res) => {
- // ElMessage({
- // message: "作废成功",
- // type: "success",
- // });
- // getList();
- // });
- // });
- // },
- // },
- ];
- },
- },
- ];
- });
- const formDom = ref(null);
- let formData = reactive({
- data: {},
- dataOne: {},
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const byform = ref(null);
- const treeData = ref([]);
- const formConfig = reactive([
- {
- type: "select",
- prop: "contractId",
- label: "主合同",
- required: true,
- data: [],
- },
- ]);
- const getList = async (req) => {
- selectData.value = [];
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy
- .post("/packDetail/page", sourceList.value.pagination)
- .then((message) => {
- sourceList.value.data = message.rows.map((x) => ({
- ...x,
- isCheck: x.shipmentStatus == 1 ? false : true,
- }));
- sourceList.value.pagination.total = message.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const openModal = () => {
- modalType.value = "add";
- formData.data = {
- packDetailList: [],
- contractIds: [],
- };
- dialogVisible.value = true;
- handleChangeCustomer("");
- };
- const openModalOne = () => {
- formData.dataOne = {
- ids: [],
- contractId: "",
- };
- let ids = []; //合同id
- let idsOne = []; //包装id
- const list = selectData.value;
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- ids = [...ids, ...e.contractIds.split(",")];
- idsOne.push(e.id);
- }
- formData.dataOne.ids = idsOne;
- proxy.post(`/contract/getByIds`, ids).then((res) => {
- formConfig[0].data = res.map((x) => ({
- label: x.code,
- value: x.id,
- }));
- dialogVisibleOne.value = true;
- });
- };
- const submitForm = () => {
- formDom.value.validate((vaild) => {
- if (vaild) {
- if (!formData.data.packDetailList.length > 0) {
- return ElMessage({
- message: "请添加装箱明细!",
- type: "info",
- });
- }
- submitLoading.value = true;
- loadingOne.value = true;
- for (let i = 0; i < formData.data.packDetailList.length; i++) {
- const e = formData.data.packDetailList[i];
- e.bomVolume = (e.boxLong * e.boxWide * e.boxHigh) / 1000000;
- }
- formData.data.contractIds = formData.data.contractIds.join(",");
- proxy.post("/pack/" + modalType.value, formData.data).then(
- (res) => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- submitLoading.value = false;
- loadingOne.value = false;
- getList();
- },
- (err) => {
- submitLoading.value = false;
- loading.value = false;
- }
- );
- }
- });
- };
- const submitFormOne = () => {
- byform.value.handleSubmit((valid) => {
- loading.value = true;
- submitLoading.value = true;
- proxy.post("/packDetail/shipment", formData.dataOne).then(
- (res) => {
- ElMessage({
- message: "出货成功",
- type: "success",
- });
- dialogVisibleOne.value = false;
- submitLoading.value = false;
- loading.value = false;
- getList();
- selectData.value = [];
- },
- (err) => {
- submitLoading.value = false;
- loading.value = false;
- }
- );
- });
- };
- const selectData = ref([]);
- const selectRow = (data) => {
- selectData.value = data;
- };
- const selectProductData = ref([]);
- const handleSelectProduct = (data) => {
- selectProductData.value = data;
- };
- const handleClickPacking = () => {
- if (selectProductData.value.length > 0) {
- const list = selectProductData.value;
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- if (!e.quantity) {
- return ElMessage({
- message: "请输入装箱数量",
- type: "info",
- });
- }
- }
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- for (let j = 0; j < formData.data.contractProductData.length; j++) {
- const jele = formData.data.contractProductData[j];
- if (e.id === jele.id && e.quantity > Number(jele.waitQuantity)) {
- return ElMessage({
- message: "装箱数量不可大于袋装箱数量",
- type: "info",
- });
- }
- }
- }
- const packDetailProductList = list.map((x) => ({
- contractCode: x.contractCode,
- contractId: x.contractId,
- contractProductId: x.id,
- quantity: x.quantity,
- productId: x.productId,
- productName: x.productName,
- }));
- const customerId = formData.data.customerId ? formData.data.customerId : "";
- const contractIds = formData.data.contractIds
- ? formData.data.contractIds.join(",")
- : "";
- let item = {
- customerId: customerId,
- contractIds: contractIds,
- packQuantity: 1,
- netWeight: null,
- roughWeight: null,
- boxLong: null,
- boxWide: null,
- boxHigh: null,
- bomVolume: "",
- remark: "",
- packDetailGoodsList: [],
- packDetailProductList: packDetailProductList,
- isShow: false,
- };
- formData.data.packDetailList.push(item);
- handleChangePackQuantity(
- item.packQuantity,
- formData.data.packDetailList.length - 1
- );
- } else {
- return ElMessage({
- message: "请选择产品 !",
- type: "info",
- });
- }
- };
- const handleChangePackQuantity = (val, index) => {
- // if (val && val > 0) {
- // 转为map对象
- const obj = {};
- for (let i = 0; i < formData.data.contractProductData.length; i++) {
- const e = formData.data.contractProductData[i];
- obj[e.contractId + ""] = Number(e.cpQuantity) - Number(e.sumPackQuantity);
- }
- // 计算数量 即装箱数量 * 箱数 新增字段放在最外层
- for (let i = 0; i < formData.data.packDetailList.length; i++) {
- const ele = formData.data.packDetailList[i];
- for (let j = 0; j < ele.packDetailProductList.length; j++) {
- const jele = ele.packDetailProductList[j];
- ele[jele.contractId + ""] = Number(ele.packQuantity) * jele.quantity;
- }
- }
- // 计算新的待装箱数量
- for (let i = 0; i < formData.data.packDetailList.length; i++) {
- const e = formData.data.packDetailList[i];
- for (const key in obj) {
- obj[key] = obj[key] - e[key];
- if (obj[key] < 0) {
- e.packQuantity = null;
- handleChangePackQuantity(null, index);
- return ElMessage({
- message: "装箱数量 * 箱数不可大于待装箱数量",
- type: "info",
- });
- }
- }
- }
- // 赋值
- for (let i = 0; i < formData.data.contractProductData.length; i++) {
- const e = formData.data.contractProductData[i];
- for (const key in obj) {
- if (e.contractId === key) {
- e.waitQuantity = obj[key];
- }
- }
- }
- // }
- };
- const handleCustomPush = (index) => {
- formData.data.packDetailList[index].packDetailGoodsList.push({
- unit: "",
- quantity: "",
- remark: "",
- });
- };
- const handleCustomRemove = (index, sonIndex) => {
- formData.data.packDetailList[index].packDetailGoodsList.splice(sonIndex, 1);
- };
- const customerList = ref([]);
- const getSelectData = () => {
- proxy.post("/customer/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- customerList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.name,
- value: item.id,
- };
- });
- });
- };
- const contractData = ref([]);
- const handleChangeCustomer = (val) => {
- proxy
- .get(`/contract/getNoPackContractByCustomerId?customerId=${val}`)
- .then((res) => {
- contractData.value = res.data;
- formData.data.contractIds = [];
- });
- };
- const handleChangeContract = (val) => {
- const customerId = formData.data.customerId ? formData.data.customerId : "";
- proxy
- .get(
- `/contractProduct/getNoPackContractProductById?customerId=${customerId}&contractIds=${val}`
- )
- .then((res) => {
- formData.data.contractProductData = res.data.map((x) => ({
- ...x,
- waitQuantity: Number(x.cpQuantity) - Number(x.sumPackQuantity),
- quantity: null,
- }));
- });
- };
- const getData = (data, type) => {
- if (!data) return [];
- const arr = data.split(",");
- if (arr && arr.length > 0) {
- const arrOne = [];
- for (let i = 0; i < arr.length; i++) {
- const e = arr[i];
- if (type === "code") {
- arrOne.push(e.split("_")[0]);
- } else if (type === "productName") {
- arrOne.push(e.split("_")[1]);
- }
- }
- return arrOne;
- }
- return [];
- };
- const handleClose = () => {
- dialogVisible.value = false;
- selectProductData.value = [];
- };
- getSelectData();
- getList();
- </script>
-
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- :deep(.el-collapse-item__header) {
- background-color: #fde6c8;
- border: none;
- }
- :deep(.el-collapse-item__wrap) {
- background-color: #fde6c8;
- border: none;
- }
- .box {
- padding: 15px;
- background: #fde6c8;
- border: 1px solid #7fb5e3;
- margin-bottom: 10px;
- .flex-box {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- .item {
- width: 50%;
- div {
- line-height: 22px;
- }
- }
- }
- .line {
- width: 100%;
- height: 1px;
- background: #7fb5e3;
- margin: 20px 0;
- }
- .bottom-arrow {
- text-align: center;
- cursor: pointer;
- color: #0084ff;
- }
- }
- </style>
|