123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023 |
- <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="[
- {
- text: 'Excel导入',
- action: () => openExcel(),
- disabled: false,
- },
- {
- text: '添加产品',
- action: () => openModal('add'),
- disabled: false,
- },
- ]"
- @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="loadingOne"
- >
- <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"
- accept=".gif, .jpeg, .jpg, .png"
- >
- <el-icon><Plus /></el-icon>
- </el-upload>
- </div>
- </template>
- <template #combination>
- <div>
- <div
- style="
- font-size: 14px;
- font-weight: bold;
- margin-bottom: 10px;
- color: #333333;
- "
- v-show="formData.data.combination == 1"
- >
- 组合明细
- </div>
- <el-button
- type="primary"
- @click="openProduct = true"
- style="margin-bottom: 10px"
- v-show="formData.data.combination == 1"
- >
- 添加
- </el-button>
- <el-table
- :data="formData.data.productCombinationList"
- v-show="formData.data.combination == 1"
- >
- <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>
- </div>
- </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 title="移交" v-model="moveDept" width="400" v-loading="loading">
- <div style="margin-bottom: 15px">请选择部门</div>
- <el-tree-select
- v-model="moveForm.deptId"
- :data="deptList"
- :render-after-expand="false"
- check-strictly
- :node-key="'deptId'"
- :props="defaultProps"
- />
- <template #footer>
- <el-button @click="moveDept = false">取 消</el-button>
- <el-button
- type="primary"
- @click="submitMove()"
- :loading="submitLoading"
- >
- 确 定
- </el-button>
- </template>
- </el-dialog>
- <el-dialog
- v-model="openProduct"
- title="选择产品"
- width="70%"
- append-to-body
- >
- <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 treeList from "@/components/product/treeList";
- import SelectProduct from "@/components/WDLY/product/SelectProduct";
- import useUserStore from "@/store/modules/user";
- // 引入插件解决json.parse()会导致id值错误
- import { parse, stringify } from "lossless-json";
- import { computed, defineComponent, ref } from "vue";
- let openProduct = ref(false);
- const loading = ref(false);
- const loadingOne = 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 moveDept = ref(false);
- const deptIdCopy = ref("");
- 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 = reactive([
- {
- label: "产品类型",
- prop: "type",
- data: [],
- },
- {
- label: "生命周期",
- prop: "lifeCycle",
- data: [
- {
- label: "新品",
- value: "1",
- },
- {
- label: "成长",
- value: "2",
- },
- {
- label: "成熟",
- value: "3",
- },
- ],
- },
- ]);
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "产品类型",
- prop: "type",
- },
- render(type) {
- return proxy.dictDataEcho(type, productType.value);
- },
- },
- {
- attrs: {
- label: "产品编码",
- prop: "code",
- },
- },
- {
- attrs: {
- label: "产品名称",
- prop: "name",
- },
- },
- {
- attrs: {
- label: "图片",
- prop: "unit",
- slot: "pic",
- },
- },
- {
- attrs: {
- label: "单位",
- prop: "unit",
- },
- render(unit) {
- return proxy.dictDataEcho(unit, productUnit.value);
- },
- },
- {
- attrs: {
- label: "规格型号",
- prop: "spec",
- },
- },
- {
- attrs: {
- label: "管理部门",
- prop: "deptName",
- },
- },
- {
- attrs: {
- label: "生命周期",
- prop: "lifeCycle",
- },
- render(lifeCycle) {
- return lifeCycle == "1" ? "新品" : lifeCycle == "2" ? "成长" : "成熟";
- },
- },
- {
- attrs: {
- label: "京东供价",
- prop: "jdPurchasePrice",
- },
- },
- {
- attrs: {
- label: "标准售价",
- prop: "sellingPrice",
- },
- },
- {
- attrs: {
- label: "标准采购价",
- prop: "purchasePrice",
- },
- },
- {
- attrs: {
- label: "产品备注",
- prop: "remark",
- },
- },
- {
- 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: "primary",
- text: true,
- },
- el: "button",
- click() {
- getDtlOne(row);
- },
- },
- {
- attrs: {
- label: "删除",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- // 弹窗提示是否删除
- ElMessageBox.confirm(
- "此操作将永久删除该数据, 是否继续?",
- "提示",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- ).then(() => {
- // 删除
- proxy
- .post("/productInfo/delete", {
- id: row.id,
- })
- .then((res) => {
- ElMessage({
- message: "删除成功",
- type: "success",
- });
- getList();
- });
- });
- },
- },
- ];
- },
- },
- ];
- });
- 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: [],
- },
- {
- type: "input",
- prop: "name",
- label: "产品名称",
- },
- {
- type: "input",
- prop: "spec",
- label: "规格型号",
- },
- {
- type: "select",
- prop: "unit",
- label: "单位",
- required: true,
- data: productUnit.value.map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- })),
- },
- {
- 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: "MM-DD",
- },
- ],
- },
- {
- 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/pageByWdly", 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) => {
- 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);
- let submitProductData = ref({});
- const submitForm = () => {
- byform.value.handleSubmit((valid) => {
- submitProductData.value = { ...formData.data };
- const list = formData.data.productCombinationList;
- let jsonObj = JSON.parse(formData.data.victoriatouristJson);
- if (formData.data.combination == 1) {
- if (!(list.length > 0)) {
- formData.data.victoriatouristJson = jsonObj;
- return ElMessage({
- message: "请添加组合明细",
- type: "info",
- });
- }
- }
- if (jsonObj.growUpDay <= Number(jsonObj.growUpDay1)) {
- formData.data.victoriatouristJson = jsonObj;
- return ElMessage({
- message: "生命周期规则输入有误!",
- type: "info",
- });
- }
- loadingOne.value = true;
- jsonObj.deptId = deptIdCopy.value;
- formData.data.victoriatouristJson = jsonObj;
- jsonObj.productCombinationList = list;
- jsonObj.combination = formData.data.combination;
- delete formData.data.productCombinationList;
- delete formData.data.combination;
- formData.data.victoriatouristJson = JSON.stringify(jsonObj);
- formData.data.fileList = fileListCopy.value.map((x) => ({
- id: x.id,
- fileName: x.fileName,
- }));
- submitLoading.value = true;
- let url =
- modalType.value == "add" ? "/productInfo/addByWdly" : "/productInfo/edit";
- proxy.post(url, formData.data).then(
- (res) => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- loadingOne.value = false;
- submitLoading.value = false;
- getList();
- },
- (err) => {
- formData.data = { ...submitProductData.value };
- formData.data.victoriatouristJson = JSON.parse(
- submitProductData.value.victoriatouristJson
- );
- loadingOne.value = false;
- submitLoading.value = false;
- }
- );
- });
- };
- const getTreeList = () => {
- proxy
- .post("/productClassify/tree", { parentId: "", name: "", definition: "1" })
- .then((message) => {
- treeListData.value = message;
- formConfig.value[0].data = message;
- });
- };
- const deptList = ref([]);
- const defaultProps = {
- children: "children",
- label: "deptName",
- };
- const getDept = () => {
- proxy
- .get("/tenantDept/list", {
- pageNum: 1,
- pageSize: 999,
- tenantId: useUserStore().user.tenantId,
- })
- .then((res) => {
- deptList.value = proxy.handleTree(res.data, "deptId");
- });
- };
- const getDtl = (row) => {
- modalType.value = "edit";
- proxy.post("/productInfo/detail", { id: row.id }).then((res) => {
- if (res.victoriatouristJson) {
- if (res.victoriatouristJson.deptId) {
- deptIdCopy.value = parse(res.victoriatouristJson).deptId.value;
- }
- }
- fileList.value = row.fileList.map((x) => ({ ...x, url: x.fileUrl }));
- fileListCopy.value = [...fileList.value];
- res.type = res.type + ""; //type回显
- res.definition = "1"; //产品
- res.victoriatouristJson = res.victoriatouristJson
- ? JSON.parse(res.victoriatouristJson)
- : {};
- res.combination = res.victoriatouristJson.combination
- ? res.victoriatouristJson.combination + ""
- : "0";
- res.productCombinationList = res.victoriatouristJson.productCombinationList;
- formData.data = res;
- dialogVisible.value = true;
- });
- };
- getTreeList();
- getDept();
- // getDict()
- 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) => {
- const flag = formData.data.productCombinationList.some(
- (x) => x.linkProductId === row.id
- );
- if (flag)
- return ElMessage({
- message: "该产品已选择",
- type: "info",
- });
- const product = {
- linkProductId: row.id,
- linkQuantity: "",
- name: row.name,
- code: row.code,
- };
- formData.data.productCombinationList.push(product);
- return ElMessage({
- message: "选择成功",
- type: "success",
- });
- };
- let moveForm = ref({});
- let rowData = {};
- const getDtlOne = (row) => {
- moveForm.value.deptId = row.deptId ? row.deptId.toString() : "";
- moveDept.value = true;
- rowData = row;
- };
- const submitMove = () => {
- if (!moveForm.value.deptId) {
- return ElMessage({
- message: "请选择部门!",
- type: "info",
- });
- }
- proxy
- .post("/productInfo/transfer", {
- id: rowData.id,
- deptId: moveForm.value.deptId,
- })
- .then((res) => {
- ElMessage({
- message: "移交成功",
- type: "success",
- });
- getList();
- moveDept.value = false;
- });
- };
- const productUnit = ref([]);
- const productType = ref([]);
- const getDict = () => {
- proxy.getDict(["unit", "product_type"]).then((res) => {
- productUnit.value = res["unit"];
- productType.value = res["product_type"];
- formConfig.value[1].data = productType.value.map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- selectConfig[0].data = productType.value.map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- });
- };
- getDict();
- </script>
-
- <style lang="scss" scoped>
- .user {
- padding: 20px;
- display: flex;
- justify-content: space-between;
- .tree {
- width: 300px;
- }
- .content {
- width: calc(100% - 320px);
- }
- }
- .pic {
- object-fit: contain;
- width: 50px;
- height: 50px;
- cursor: pointer;
- vertical-align: middle;
- }
- :deep(.el-date-picker-header) {
- span:nth-child(3) {
- display: none !important;
- }
- button:nth-child(1) {
- display: none !important;
- }
- button:nth-child(5) {
- display: none !important;
- }
- }
- :deep(.el-date-picker__prev-btn .el-picker-panel__icon-btn) {
- display: none;
- }
- :deep(.el-date-picker__next-btn .el-picker-panel__icon-btn) {
- display: none;
- }
- :deep(.el-date-picker__header .el-date-picker__header-label) {
- display: none;
- }
- </style>
|