|
@@ -0,0 +1,833 @@
|
|
|
+<template>
|
|
|
+ <div class="user">
|
|
|
+ <!-- <div class="tree">
|
|
|
+ <treeList
|
|
|
+ title="产品分类"
|
|
|
+ submitType="1"
|
|
|
+ :data="treeListData"
|
|
|
+ v-model="sourceList.pagination.productClassifyId"
|
|
|
+ @change="treeChange"
|
|
|
+ @changeTreeList="getTreeList"
|
|
|
+ >
|
|
|
+ </treeList>
|
|
|
+ </div> -->
|
|
|
+ <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="[]"
|
|
|
+ @get-list="getList"
|
|
|
+ >
|
|
|
+ <template #pic="{ item }">
|
|
|
+ <div v-if="item.fileList.length > 0">
|
|
|
+ <img
|
|
|
+ :src="item.fileList[0].fileUrl"
|
|
|
+ class="pic"
|
|
|
+ @click="handleClickFile(item.fileList[0])"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div v-else></div>
|
|
|
+ </template>
|
|
|
+ </byTable>
|
|
|
+ </div>
|
|
|
+ <el-dialog
|
|
|
+ :title="modalType == 'add' ? '添加' : '编辑'"
|
|
|
+ v-model="dialogVisible"
|
|
|
+ width="500"
|
|
|
+ v-loading="loading"
|
|
|
+ >
|
|
|
+ <byForm
|
|
|
+ :formConfig="formConfig"
|
|
|
+ :formOption="formOption"
|
|
|
+ v-model="formData.data"
|
|
|
+ :rules="rules"
|
|
|
+ ref="byform"
|
|
|
+ >
|
|
|
+ <template #productPic>
|
|
|
+ <div>
|
|
|
+ <el-upload
|
|
|
+ v-model:fileList="fileList"
|
|
|
+ action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
|
|
|
+ :data="uploadData"
|
|
|
+ list-type="picture-card"
|
|
|
+ :on-remove="handleRemove"
|
|
|
+ :on-success="handleSuccess"
|
|
|
+ :before-upload="handleBeforeUpload"
|
|
|
+ >
|
|
|
+ <el-icon><Plus /></el-icon>
|
|
|
+ </el-upload>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template #combination>
|
|
|
+ <el-form
|
|
|
+ ref="tableForm"
|
|
|
+ :model="formData.data"
|
|
|
+ :rules="rules"
|
|
|
+ style="margin-top: 15px"
|
|
|
+ >
|
|
|
+ <el-form-item
|
|
|
+ label="组合明细"
|
|
|
+ v-show="formData.data.combination == 1"
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="openProduct = true"
|
|
|
+ style="margin-bottom: 10px"
|
|
|
+ >
|
|
|
+ 添加
|
|
|
+ </el-button>
|
|
|
+ <el-table :data="formData.data.productCombinationList">
|
|
|
+ <el-table-column prop="code" label="产品编码" />
|
|
|
+ <el-table-column prop="name" label="产品名称" />
|
|
|
+ <el-table-column
|
|
|
+ prop="linkQuantity"
|
|
|
+ label="组合数量"
|
|
|
+ min-width="150"
|
|
|
+ >
|
|
|
+ <template #default="{ row, $index }">
|
|
|
+ <el-form-item
|
|
|
+ :prop="
|
|
|
+ 'productCombinationList.' + $index + '.linkQuantity'
|
|
|
+ "
|
|
|
+ :rules="rules.linkQuantity"
|
|
|
+ :inline-message="true"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="row.linkQuantity"
|
|
|
+ placeholder="请输入"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="zip" label="操作" width="100">
|
|
|
+ <template #default="{ $index }">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ link
|
|
|
+ @click="handleRemoveProduct($index)"
|
|
|
+ >删除</el-button
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </template>
|
|
|
+ <template #one>
|
|
|
+ <div style="width: 100%">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="4">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.victoriatouristJson.newProductsDay1"
|
|
|
+ placeholder="请输入"
|
|
|
+ disabled
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1" style="text-align: center"> ~ </el-col>
|
|
|
+ <el-col :span="4">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.victoriatouristJson.newProductsDay"
|
|
|
+ placeholder="请输入"
|
|
|
+ @change="changeDay(10)"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1" style="text-align: center"> : </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-input
|
|
|
+ v-model="
|
|
|
+ formData.data.victoriatouristJson.newProductsExpectedSales
|
|
|
+ "
|
|
|
+ placeholder="预期销量"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #two>
|
|
|
+ <div style="width: 100%">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="4">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.victoriatouristJson.growUpDay1"
|
|
|
+ placeholder="请输入"
|
|
|
+ disabled
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1" style="text-align: center"> ~ </el-col>
|
|
|
+ <el-col :span="4">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.victoriatouristJson.growUpDay"
|
|
|
+ placeholder="请输入"
|
|
|
+ @change="changeDay(20)"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1" style="text-align: center"> : </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-input
|
|
|
+ v-model="
|
|
|
+ formData.data.victoriatouristJson.growUpExpectedSales
|
|
|
+ "
|
|
|
+ placeholder="预期销量"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #three>
|
|
|
+ <el-row style="width: 100%">
|
|
|
+ <el-col :span="5">
|
|
|
+ 大于{{ formData.data.victoriatouristJson.attDay }}天:
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.victoriatouristJson.matureExpectedSales"
|
|
|
+ placeholder="预期销量"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </template>
|
|
|
+ </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
|
|
|
+ title="Excel导入"
|
|
|
+ v-model="openExcelDialog"
|
|
|
+ width="400"
|
|
|
+ v-loading="loading"
|
|
|
+ >
|
|
|
+ <template #footer>
|
|
|
+ <el-button @click="openExcelDialog = false" size="large"
|
|
|
+ >取 消</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="submitExcel()"
|
|
|
+ size="large"
|
|
|
+ :loading="submitLoading"
|
|
|
+ >
|
|
|
+ 确 定
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ v-model="openProduct"
|
|
|
+ title="选择货品"
|
|
|
+ width="70%"
|
|
|
+ append-to-body
|
|
|
+ >
|
|
|
+ <SelectGoods
|
|
|
+ @cancel="openProduct = false"
|
|
|
+ @pushGoods="pushGoods"
|
|
|
+ ></SelectGoods>
|
|
|
+ </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 treeList from "@/components/product/treeList";
|
|
|
+import SelectGoods from "@/components/product/SelectGoods";
|
|
|
+
|
|
|
+import { computed, defineComponent, ref } from "vue";
|
|
|
+let openProduct = ref(false);
|
|
|
+
|
|
|
+const loading = ref(false);
|
|
|
+const submitLoading = ref(false);
|
|
|
+const sourceList = ref({
|
|
|
+ data: [],
|
|
|
+ pagination: {
|
|
|
+ total: 3,
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ type: "",
|
|
|
+ productClassifyId: "",
|
|
|
+ keyword: "",
|
|
|
+ definition: "1",
|
|
|
+ },
|
|
|
+});
|
|
|
+let dialogVisible = ref(false);
|
|
|
+let openExcelDialog = ref(false);
|
|
|
+
|
|
|
+let modalType = ref("add");
|
|
|
+let rules = ref({
|
|
|
+ productClassifyId: [
|
|
|
+ { required: true, message: "请选择产品分类", trigger: "change" },
|
|
|
+ ],
|
|
|
+ type: [{ required: true, message: "请选择产品类型", trigger: "change" }],
|
|
|
+ name: [{ required: true, message: "请输入产品名称", trigger: "blur" }],
|
|
|
+ unit: [{ required: true, message: "请选择单位", trigger: "change" }],
|
|
|
+ linkQuantity: [
|
|
|
+ { required: true, message: "请输入组合数量", trigger: "blur" },
|
|
|
+ ],
|
|
|
+});
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
+const selectConfig = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ label: "产品类型",
|
|
|
+ prop: "type",
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ label: "成品",
|
|
|
+ value: "1",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "半成品",
|
|
|
+ value: "2",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "生命周期",
|
|
|
+ prop: "lifeCycle",
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ label: "新品",
|
|
|
+ value: "1",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "成长",
|
|
|
+ value: "2",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "成熟",
|
|
|
+ value: "3",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+const config = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "产品类型",
|
|
|
+ prop: "type",
|
|
|
+ },
|
|
|
+ render(type) {
|
|
|
+ return type == 1 ? "成品" : type == 2 ? "半成品" : "";
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "产品编码",
|
|
|
+ prop: "code",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "产品名称",
|
|
|
+ prop: "name",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "图片",
|
|
|
+ prop: "unit",
|
|
|
+ slot: "pic",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "单位",
|
|
|
+ prop: "unit",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "规格型号",
|
|
|
+ prop: "spec",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "管理部门",
|
|
|
+ prop: "deptName",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "生命周期",
|
|
|
+ prop: "lifeCycle",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "京东供价",
|
|
|
+ prop: "jdPurchasePrice",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "标准售价",
|
|
|
+ prop: "sellingPrice",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "标准采购价",
|
|
|
+ prop: "purchasePrice",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "产品备注",
|
|
|
+ prop: "remark",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "操作",
|
|
|
+ width: "100",
|
|
|
+ align: "right",
|
|
|
+ },
|
|
|
+ // 渲染 el-button,一般用在最后一列。
|
|
|
+ renderHTML(row) {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "选择",
|
|
|
+ type: "primary",
|
|
|
+ text: true,
|
|
|
+ },
|
|
|
+ el: "button",
|
|
|
+ click() {
|
|
|
+ handleSelect(row);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+
|
|
|
+const uploadData = ref({});
|
|
|
+const fileList = ref([]);
|
|
|
+const fileListCopy = ref([]);
|
|
|
+
|
|
|
+let formData = reactive({
|
|
|
+ data: {},
|
|
|
+});
|
|
|
+const formOption = reactive({
|
|
|
+ inline: true,
|
|
|
+ labelWidth: 100,
|
|
|
+ itemWidth: 100,
|
|
|
+ rules: [],
|
|
|
+});
|
|
|
+const byform = ref(null);
|
|
|
+const treeListData = ref([]);
|
|
|
+const formConfig = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ type: "treeSelect",
|
|
|
+ prop: "productClassifyId",
|
|
|
+ label: "产品分类",
|
|
|
+ data: [],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "select",
|
|
|
+ prop: "type",
|
|
|
+ label: "产品类型",
|
|
|
+ required: true,
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ label: "成品",
|
|
|
+ id: "1",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "半成品",
|
|
|
+ id: "2",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "name",
|
|
|
+ label: "产品名称",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "spec",
|
|
|
+ label: "规格型号",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "select",
|
|
|
+ prop: "unit",
|
|
|
+ label: "单位",
|
|
|
+ required: true,
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ label: "个",
|
|
|
+ id: "个",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "双",
|
|
|
+ id: "双",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "productPic",
|
|
|
+ prop: "fileList",
|
|
|
+ label: "产品图片",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "remark",
|
|
|
+ label: "备注",
|
|
|
+ itemType: "textarea",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "radio",
|
|
|
+ prop: "combination",
|
|
|
+ label: "是否组合",
|
|
|
+ required: true,
|
|
|
+ border: true,
|
|
|
+ data: [
|
|
|
+ { label: "是", value: "1" },
|
|
|
+ { label: "否", value: "0" },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "json",
|
|
|
+ prop: "victoriatouristJson",
|
|
|
+ json: [
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "jdPurchasePrice",
|
|
|
+ label: "京东供价",
|
|
|
+ itemWidth: 33,
|
|
|
+ style: {
|
|
|
+ width: "100%",
|
|
|
+ "margin-right": "10px",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "sellingPrice",
|
|
|
+ label: "标准售价",
|
|
|
+ itemWidth: 33,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "purchasePrice",
|
|
|
+ label: "标准采购价",
|
|
|
+ itemWidth: 33,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "date",
|
|
|
+ prop: "clearancePeriod",
|
|
|
+ label: "库存清空期限",
|
|
|
+ itemWidth: 50,
|
|
|
+ format: "YYYY-MM-DD",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // type: "title",
|
|
|
+ // title: "组合明细",
|
|
|
+ // label: "",
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "combination",
|
|
|
+ label: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "title",
|
|
|
+ title: "生命周期规则",
|
|
|
+ label: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "one",
|
|
|
+ label: "新品期",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "two",
|
|
|
+ label: "成长期",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "three",
|
|
|
+ label: "成熟期",
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+const newPassword = () => {
|
|
|
+ formData.data.password = generatePassword();
|
|
|
+};
|
|
|
+const generatePassword = () => {
|
|
|
+ var length = 12,
|
|
|
+ charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",
|
|
|
+ password = "";
|
|
|
+ for (var i = 0, n = charset.length; i < length; ++i) {
|
|
|
+ password += charset.charAt(Math.floor(Math.random() * n));
|
|
|
+ }
|
|
|
+ return password;
|
|
|
+};
|
|
|
+
|
|
|
+const getList = async (req) => {
|
|
|
+ sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
|
|
|
+ loading.value = true;
|
|
|
+ proxy
|
|
|
+ .post("/productInfo/page", sourceList.value.pagination)
|
|
|
+ .then((message) => {
|
|
|
+ console.log(message);
|
|
|
+ sourceList.value.data = message.rows.map((x) => ({
|
|
|
+ ...x,
|
|
|
+ fileList: [],
|
|
|
+ ...JSON.parse(x.victoriatouristJson),
|
|
|
+ }));
|
|
|
+ sourceList.value.pagination.total = message.total;
|
|
|
+ setTimeout(() => {
|
|
|
+ loading.value = false;
|
|
|
+ }, 200);
|
|
|
+
|
|
|
+ const productIdList = message.rows.map((x) => x.id);
|
|
|
+ // 请求文件数据并回显
|
|
|
+ if (productIdList.length > 0) {
|
|
|
+ proxy
|
|
|
+ .post("/fileInfo/getList", { businessIdList: productIdList })
|
|
|
+ .then((fileObj) => {
|
|
|
+ for (let i = 0; i < sourceList.value.data.length; i++) {
|
|
|
+ const e = sourceList.value.data[i];
|
|
|
+ for (const key in fileObj) {
|
|
|
+ if (e.id === key) {
|
|
|
+ e.fileList = fileObj[key];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+const treeChange = (e) => {
|
|
|
+ console.log(e);
|
|
|
+ sourceList.value.pagination.productClassifyId = e.id;
|
|
|
+ getList({ productClassifyId: e.id });
|
|
|
+};
|
|
|
+
|
|
|
+const openModal = () => {
|
|
|
+ dialogVisible.value = true;
|
|
|
+ modalType.value = "add";
|
|
|
+ formData.data = {
|
|
|
+ definition: "1",
|
|
|
+ type: "1",
|
|
|
+ fileList: [],
|
|
|
+ combination: "1",
|
|
|
+ victoriatouristJson: {
|
|
|
+ combination: 1,
|
|
|
+ newProductsDay1: 0,
|
|
|
+ newProductsDay: 60,
|
|
|
+ growUpDay1: 61,
|
|
|
+ growUpDay: 120,
|
|
|
+ attDay: 120,
|
|
|
+ },
|
|
|
+ productCombinationList: [],
|
|
|
+ };
|
|
|
+ fileList.value = [];
|
|
|
+ fileListCopy.value = [];
|
|
|
+};
|
|
|
+
|
|
|
+const openExcel = () => {
|
|
|
+ openExcelDialog.value = true;
|
|
|
+};
|
|
|
+const submitExcel = () => {
|
|
|
+ openExcelDialog.value = false;
|
|
|
+};
|
|
|
+const TreetenantId = ref("");
|
|
|
+const selection = ref({
|
|
|
+ data: [],
|
|
|
+});
|
|
|
+const select = (_selection, row) => {
|
|
|
+ selection.value.data = _selection;
|
|
|
+ console.log(_selection.length);
|
|
|
+};
|
|
|
+
|
|
|
+const tree = ref(null);
|
|
|
+const submitForm = () => {
|
|
|
+ byform.value.handleSubmit((valid) => {
|
|
|
+ if (formData.data.combination == 1) {
|
|
|
+ if (!formData.data.productCombinationList.length > 0) {
|
|
|
+ return ElMessage({
|
|
|
+ message: "请添加组合明细",
|
|
|
+ type: "info",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ formData.data.victoriatouristJson = JSON.parse(
|
|
|
+ formData.data.victoriatouristJson
|
|
|
+ );
|
|
|
+ formData.data.victoriatouristJson.productCombinationList =
|
|
|
+ formData.data.productCombinationList;
|
|
|
+ formData.data.victoriatouristJson.combination = formData.data.combination;
|
|
|
+ delete formData.data.productCombinationList;
|
|
|
+ delete formData.data.combination;
|
|
|
+ formData.data.victoriatouristJson = JSON.stringify(
|
|
|
+ formData.data.victoriatouristJson
|
|
|
+ );
|
|
|
+ }
|
|
|
+ formData.data.fileList = fileListCopy.value.map((x) => ({
|
|
|
+ id: x.id,
|
|
|
+ fileName: x.fileName,
|
|
|
+ }));
|
|
|
+ submitLoading.value = true;
|
|
|
+ proxy.post("/productInfo/" + 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 getTreeList = () => {
|
|
|
+ proxy
|
|
|
+ .post("/productClassify/tree", { parentId: "", name: "", definition: "1" })
|
|
|
+ .then((message) => {
|
|
|
+ treeListData.value = message;
|
|
|
+ formConfig.value[0].data = message;
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+const getDtl = (row) => {
|
|
|
+ modalType.value = "edit";
|
|
|
+ proxy.post("/productInfo/detail", { id: row.id }).then((res) => {
|
|
|
+ fileList.value = row.fileList.map((x) => ({ ...x, url: x.fileUrl }));
|
|
|
+ fileListCopy.value = [...fileList.value];
|
|
|
+ res.type = res.type + ""; //type回显
|
|
|
+ res.definition = "1"; //产品
|
|
|
+ res.victoriatouristJson = JSON.parse(res.victoriatouristJson);
|
|
|
+ res.combination = res.victoriatouristJson.combination + "";
|
|
|
+ res.productCombinationList = res.victoriatouristJson.productCombinationList;
|
|
|
+ formData.data = res;
|
|
|
+ dialogVisible.value = true;
|
|
|
+ });
|
|
|
+};
|
|
|
+getTreeList();
|
|
|
+getList();
|
|
|
+const handleBeforeUpload = async (file) => {
|
|
|
+ const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
|
|
|
+ uploadData.value = res.uploadBody;
|
|
|
+ fileListCopy.value.push({
|
|
|
+ id: res.id,
|
|
|
+ fileName: res.fileName,
|
|
|
+ path: res.fileUrl,
|
|
|
+ url: res.fileUrl,
|
|
|
+ uid: file.uid,
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+const handleSuccess = (res, file, files) => {
|
|
|
+ // 查当前file的index值去赋值对应的copy变量的值
|
|
|
+ // let uid = file.uid;
|
|
|
+ // const index = fileList.value.findIndex((x) => x.uid === uid);
|
|
|
+ // fileListCopy.value[index].uid = uid;
|
|
|
+};
|
|
|
+
|
|
|
+const handleRemove = (file) => {
|
|
|
+ const index = fileListCopy.value.findIndex(
|
|
|
+ (x) => x.uid === file.uid || x.id === file.id
|
|
|
+ );
|
|
|
+ fileListCopy.value.splice(index, 1);
|
|
|
+};
|
|
|
+
|
|
|
+const handleClickFile = (file) => {
|
|
|
+ window.open(file.fileUrl, "_blank");
|
|
|
+};
|
|
|
+
|
|
|
+const handleRemoveProduct = (index) => {
|
|
|
+ formData.data.productCombinationList.splice(index, 1);
|
|
|
+ return ElMessage({
|
|
|
+ message: "删除成功!",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+const pushGoods = (goods) => {
|
|
|
+ const arr = goods.map((x) => ({
|
|
|
+ linkProductId: x.id,
|
|
|
+ linkQuantity: "",
|
|
|
+ name: x.name,
|
|
|
+ code: x.code,
|
|
|
+ }));
|
|
|
+ formData.data.productCombinationList =
|
|
|
+ formData.data.productCombinationList.concat(arr);
|
|
|
+ return ElMessage({
|
|
|
+ message: "添加成功!",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+const changeDay = (type) => {
|
|
|
+ if (type == 10) {
|
|
|
+ formData.data.victoriatouristJson.growUpDay1 =
|
|
|
+ Number(formData.data.victoriatouristJson.newProductsDay) + 1;
|
|
|
+ } else if (type == 20) {
|
|
|
+ formData.data.victoriatouristJson.attDay = Number(
|
|
|
+ formData.data.victoriatouristJson.growUpDay
|
|
|
+ );
|
|
|
+ }
|
|
|
+};
|
|
|
+const handleSelect = (row) => {
|
|
|
+ proxy.$emit("handleSelect", toRaw(row));
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.user {
|
|
|
+ padding: 20px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ .tree {
|
|
|
+ width: 300px;
|
|
|
+ }
|
|
|
+ .content {
|
|
|
+ // width: calc(100% - 320px);
|
|
|
+ // flex: 1;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.pic {
|
|
|
+ object-fit: contain;
|
|
|
+ width: 50px;
|
|
|
+ height: 50px;
|
|
|
+ cursor: pointer;
|
|
|
+ vertical-align: middle;
|
|
|
+}
|
|
|
+</style>
|