|
@@ -1,855 +0,0 @@
|
|
|
-<template>
|
|
|
- <div class="app-container">
|
|
|
- <el-form
|
|
|
- :model="queryParams"
|
|
|
- ref="queryForm"
|
|
|
- size="small"
|
|
|
- :inline="true"
|
|
|
- v-show="showSearch"
|
|
|
- label-width="80px"
|
|
|
- >
|
|
|
- <el-form-item label="商品名称" prop="spuName">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.spuName"
|
|
|
- placeholder="请输入商品名称"
|
|
|
- clearable
|
|
|
- style="width: 240px"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="分类" prop="categoryId">
|
|
|
- <el-cascader
|
|
|
- v-model="queryParams.categoryId"
|
|
|
- ref="formCascader"
|
|
|
- placeholder="请选择分类"
|
|
|
- :props="categoryprops"
|
|
|
- @change="cascaderChange"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
-
|
|
|
- <el-form-item label="商品状态" prop="spuStatus">
|
|
|
- <el-select v-model="queryParams.spuStatus" placeholder="请选择商品状态">
|
|
|
- <el-option label="售罄" value="2"> </el-option>
|
|
|
- <el-option label="上架" value="0"> </el-option>
|
|
|
- <el-option label="下架" value="1"> </el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
-
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"
|
|
|
- >搜索</el-button
|
|
|
- >
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
-
|
|
|
- <el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5" v-if="!activeShowBtn">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- size="mini"
|
|
|
- @click="addActive"
|
|
|
- :disabled="!multipleSelection.length > 0"
|
|
|
- >添加商品到活动</el-button
|
|
|
- >
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5" v-else>
|
|
|
- <el-button type="primary" plain size="mini" @click="prouctAdd"
|
|
|
- >新增商品</el-button
|
|
|
- >
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
-
|
|
|
- <el-table
|
|
|
- v-loading="loading"
|
|
|
- :data="configList"
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
- row-key="id"
|
|
|
- >
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="商品图片" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-image
|
|
|
- style="width: 60px; height: 60px"
|
|
|
- :src="scope.row.pic"
|
|
|
- :preview-src-list="[scope.row.pic]"
|
|
|
- >
|
|
|
- </el-image>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="商品名称"
|
|
|
- align="center"
|
|
|
- prop="spuName"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
- />
|
|
|
- <el-table-column label="分类" align="center" prop="categoryName" />
|
|
|
- <el-table-column label="价格" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.lowestPrice }} {{ scope.row.unit }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <el-table-column label="起批量" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.lowestPurchase }} {{ scope.row.unit }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="库存" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.totalStocks }} {{ scope.row.unit }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="销量" align="center" prop="salesVolume"> </el-table-column>
|
|
|
- <el-table-column label="分销比例" align="center" prop="shareRate" />
|
|
|
- <el-table-column label="销售模式" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.saleModel == 1 ? "现货" : "预售" }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="销售方式" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{
|
|
|
- scope.row.saleType == 0
|
|
|
- ? "整车"
|
|
|
- : scope.row.saleType == 1
|
|
|
- ? "零售"
|
|
|
- : scope.row.saleType == 2
|
|
|
- ? "拼车"
|
|
|
- : scope.row.saleType == 3
|
|
|
- ? "一件代发"
|
|
|
- : ""
|
|
|
- }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="发布状态" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{
|
|
|
- scope.row.releaseStatus == 0
|
|
|
- ? "未发布"
|
|
|
- : scope.row.releaseStatus == 1
|
|
|
- ? "已发布"
|
|
|
- : ""
|
|
|
- }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="商品属性" align="center" width="150">
|
|
|
- <template slot-scope="scope">
|
|
|
- <div
|
|
|
- v-for="(item, index) in scope.row.props ? JSON.parse(scope.row.props) : []"
|
|
|
- :key="index"
|
|
|
- >
|
|
|
- <div style="text-align: left">属性{{ index + 1 }}:{{ item.name }}</div>
|
|
|
- <div style="text-align: left">属性值{{ index + 1 }}:{{ item.value }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <!-- <el-table-column label="发货时间" align="center" prop="shippingTimeDesc">
|
|
|
- </el-table-column> -->
|
|
|
- <el-table-column label="商品状态" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{
|
|
|
- scope.row.spuStatus == 2
|
|
|
- ? "售罄"
|
|
|
- : scope.row.spuStatus == 0
|
|
|
- ? "上架"
|
|
|
- : scope.row.spuStatus == 1
|
|
|
- ? "下架"
|
|
|
- : ""
|
|
|
- }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
- <template slot-scope="scope">
|
|
|
- <!-- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['manage:order:detail']"
|
|
|
- >订单详情</el-button
|
|
|
- > -->
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
-
|
|
|
- <pagination
|
|
|
- v-show="total > 0"
|
|
|
- :total="total"
|
|
|
- :page.sync="queryParams.pageNo"
|
|
|
- :limit.sync="queryParams.pageSize"
|
|
|
- @pagination="getList"
|
|
|
- />
|
|
|
-
|
|
|
- <!-- 添加或修改参数配置对话框 -->
|
|
|
- <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
|
|
- <el-form ref="form" :model="form" label-width="140px">
|
|
|
- <el-row>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="商品名称:" prop="configName">
|
|
|
- <el-input v-model="form.configName" placeholder="请输入参数名称" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="商品分类:" prop="configKey">
|
|
|
- <el-input v-model="form.configKey" placeholder="请输入参数键名" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="商品描述:" prop="configValue">
|
|
|
- <el-input v-model="form.configValue" placeholder="请输入参数键值" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="商品封面图:" prop="configKey">
|
|
|
- <span style="font-size: 12px">商品封面的展示</span>
|
|
|
- <el-upload
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- list-type="picture-card"
|
|
|
- >
|
|
|
- <i class="el-icon-plus"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="商品视频:" prop="configKey">
|
|
|
- <span style="font-size: 12px; color: red"
|
|
|
- >上传视频有利于用户看的更直接</span
|
|
|
- >
|
|
|
- <el-upload
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- list-type="picture-card"
|
|
|
- >
|
|
|
- <i class="el-icon-plus"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="商品图:" prop="configKey">
|
|
|
- <span style="font-size: 12px">可上传最多10张图</span>
|
|
|
- <el-upload
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- list-type="picture-card"
|
|
|
- >
|
|
|
- <i class="el-icon-plus"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="详情图:" prop="configKey">
|
|
|
- <span style="font-size: 12px">可上传最多10张图</span>
|
|
|
- <el-upload
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- list-type="picture-card"
|
|
|
- >
|
|
|
- <i class="el-icon-plus"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="特殊资质图:" prop="configKey">
|
|
|
- <span style="font-size: 12px"
|
|
|
- >如有特殊资质例如农产检查有机认证最多10张图</span
|
|
|
- >
|
|
|
- <el-upload
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- list-type="picture-card"
|
|
|
- >
|
|
|
- <i class="el-icon-plus"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="商品价格与规格:" prop="configKey">
|
|
|
- <span style="color: #0fd70f">{{
|
|
|
- specification.length > 0 ? "已添加" + specification.length + "个规格" : ""
|
|
|
- }}</span>
|
|
|
-
|
|
|
-
|
|
|
- <el-button type="text" @click="custom('specification')">添加规格</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="运费:" prop="configKey">
|
|
|
- <el-button type="text" @click="custom('freight')">添加运费模版</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="发货地址:" prop="configKey">
|
|
|
- <div style="display: flex; flex-direction: row">
|
|
|
- <el-cascader
|
|
|
- v-model="form.area"
|
|
|
- ref="myCascader"
|
|
|
- placeholder="请选择城市"
|
|
|
- :props="props"
|
|
|
- style="width: 300px"
|
|
|
- @change="(res) => araeChange(res, 'query')"
|
|
|
- />
|
|
|
- <el-input v-model="form.configKey" placeholder="请输入详细地址" />
|
|
|
- </div>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="添加商品属性:" prop="configKey">
|
|
|
- <el-button type="text" @click="custom('stats')">添加商品属性</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="分销比例:" prop="configKey">
|
|
|
- <el-input
|
|
|
- v-model="form.configKey"
|
|
|
- placeholder="请输入分销比例"
|
|
|
- style="width: 200px"
|
|
|
- >
|
|
|
- <span slot="suffix">%</span>
|
|
|
- </el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </el-form>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary">确 定</el-button>
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
-
|
|
|
- <!-- 规格列表 -->
|
|
|
- <el-dialog
|
|
|
- :title="specificationTitle"
|
|
|
- :visible.sync="specificationOpen"
|
|
|
- width="700px"
|
|
|
- append-to-body
|
|
|
- >
|
|
|
- <el-form
|
|
|
- :model="queryParams"
|
|
|
- ref="queryForm"
|
|
|
- size="small"
|
|
|
- :inline="true"
|
|
|
- label-width="120px"
|
|
|
- >
|
|
|
- <el-form-item label="计量单位" prop="configName">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.configName"
|
|
|
- placeholder="请选择计量单位"
|
|
|
- clearable
|
|
|
- style="width: 240px"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="specificationAdd"
|
|
|
- size="mini"
|
|
|
- style="position: absolute; right: 20px"
|
|
|
- >添加规格</el-button
|
|
|
- >
|
|
|
- <div style="max-height: 500px; overflow: auto">
|
|
|
- <el-row
|
|
|
- v-for="(item, index) in specification"
|
|
|
- :key="index"
|
|
|
- style="
|
|
|
- padding: 20px 0px;
|
|
|
- border: 1px solid #f1f1f1;
|
|
|
- border-radius: 20px;
|
|
|
- margin-bottom: 20px;
|
|
|
- "
|
|
|
- >
|
|
|
- <el-col
|
|
|
- :span="24"
|
|
|
- style="text-align: right; padding: 0px 20px; position: absolute; top: 10px"
|
|
|
- >
|
|
|
- <i
|
|
|
- class="el-icon-edit-outline"
|
|
|
- style="font-size: 26px"
|
|
|
- @click="specificationEdit(item)"
|
|
|
- ></i>
|
|
|
- <i
|
|
|
- @click="specificationRemove(item, inex)"
|
|
|
- class="el-icon-delete"
|
|
|
- style="font-size: 26px; margin-left: 10px; color: red"
|
|
|
- ></i>
|
|
|
- </el-col>
|
|
|
-
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="规格名称:" prop="configName">
|
|
|
- {{ item.name }}
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="规格内容:" prop="configName">
|
|
|
- {{ item.contont }}
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="库存:" prop="configName">
|
|
|
- {{ item.inventory }} 斤
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="起批量:" prop="configName">
|
|
|
- {{ item.starting }}斤
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="批发价:" prop="configName">
|
|
|
- {{ item.wholesale }}元/斤
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="商品单价:" prop="configName">
|
|
|
- {{ item.wholesale }}元/斤
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </div>
|
|
|
- </el-form>
|
|
|
-
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary">确 定</el-button>
|
|
|
- <el-button @click="specificationOpen = false">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
-
|
|
|
- <el-dialog :title="subTitle" :visible.sync="subOpen" width="700px" append-to-body>
|
|
|
- <el-form
|
|
|
- :model="rules"
|
|
|
- ref="queryForm"
|
|
|
- size="small"
|
|
|
- :inline="true"
|
|
|
- label-width="80px"
|
|
|
- >
|
|
|
- <el-row v-if="subType == 'specification'">
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="规格名称" prop="name">
|
|
|
- <el-input
|
|
|
- v-model="rules.specification.name"
|
|
|
- placeholder="请输入规格名称"
|
|
|
- clearable
|
|
|
- style="width: 240px"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="规格内容" prop="contont">
|
|
|
- <el-input
|
|
|
- v-model="rules.specification.contont"
|
|
|
- placeholder="请输入规格内容"
|
|
|
- clearable
|
|
|
- style="width: 240px"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="库存" prop="inventory">
|
|
|
- <el-input
|
|
|
- v-model="rules.specification.inventory"
|
|
|
- placeholder="请输入库存"
|
|
|
- clearable
|
|
|
- style="width: 240px"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="起批量" prop="starting">
|
|
|
- <el-input
|
|
|
- v-model="rules.specification.starting"
|
|
|
- placeholder="请输入起批量"
|
|
|
- clearable
|
|
|
- style="width: 240px"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="批发价" prop="wholesale">
|
|
|
- <el-input
|
|
|
- v-model="rules.specification.wholesale"
|
|
|
- placeholder="请输入批发价"
|
|
|
- clearable
|
|
|
- style="width: 240px"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="商品单价" prop="configName">
|
|
|
- {{ rules.wholesale ? rules.wholesale + "元/斤" : "" }}
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row v-if="subType == 'freight'">
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="运费模版名称" prop="configName" label-width="130px">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.configName"
|
|
|
- placeholder="请输入运费模版名称"
|
|
|
- clearable
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="小于商品金额" prop="configName" label-width="130px">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.configName"
|
|
|
- placeholder="请输入商品金额"
|
|
|
- style="with: 100px"
|
|
|
- clearable
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="运费" prop="configName">
|
|
|
- <el-input
|
|
|
- style="with: 100px"
|
|
|
- v-model="queryParams.configName"
|
|
|
- placeholder="请输入运费"
|
|
|
- clearable
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="大于等于商品金额" prop="configName" label-width="130px">
|
|
|
- <div style="width: 200px; display: flex; flex-direction: row">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.configName"
|
|
|
- placeholder="请输入起批量"
|
|
|
- clearable
|
|
|
- />
|
|
|
- <div style="width: 100px; margin-left: 5px">元免运费</div>
|
|
|
- </div>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row v-if="subType == 'stats'">
|
|
|
- <el-col :span="24" style="text-align: right; position: absolute; top: -40px">
|
|
|
- <el-button type="primary" @click="productAdd" size="mini"
|
|
|
- >自定义添加</el-button
|
|
|
- ></el-col
|
|
|
- >
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="包装方式" prop="configName" label-width="100px">
|
|
|
- <el-select v-model="rules.stats.packing" placeholder="请选择包装方式">
|
|
|
- <el-option label="纸箱装" value="1"> </el-option>
|
|
|
- <el-option label="礼盒装" value="2"> </el-option>
|
|
|
- <el-option label="胶框装" value="3"> </el-option>
|
|
|
- <el-option label="泡沫箱装" value="4"> </el-option>
|
|
|
- <el-option label="袋装" value="5"> </el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="发货时间" prop="configName" label-width="100px">
|
|
|
- <el-radio-group
|
|
|
- v-model="rules.stats.deliveryTime"
|
|
|
- style="width: 500px; line-height: 30px"
|
|
|
- >
|
|
|
- <el-radio
|
|
|
- :label="item.value"
|
|
|
- v-for="(item, index) in deliveryTimes"
|
|
|
- :key="index"
|
|
|
- >
|
|
|
- {{ item.label }}
|
|
|
- <span
|
|
|
- v-if="item.type == 'add'"
|
|
|
- style="color: red"
|
|
|
- @click="removeRadio(index)"
|
|
|
- >删除</span
|
|
|
- >
|
|
|
- </el-radio>
|
|
|
- </el-radio-group>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="24" v-if="rules.stats.deliveryTime == 99">
|
|
|
- <el-form-item label="自定义添加" prop="configName" label-width="100px">
|
|
|
- <div style="margin-left: 20px">
|
|
|
- <el-input
|
|
|
- v-model="optionTime"
|
|
|
- placeholder="请输入自定义发货时间"
|
|
|
- clearable
|
|
|
- style="width: 200px"
|
|
|
- />
|
|
|
- <span style="margin-left: 5px" @click="addOption">确定</span>
|
|
|
- </div>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </el-form>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="costumSubmit">确 定</el-button>
|
|
|
- <el-button @click="subOpen = false">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
- </div>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script>
|
|
|
-import { getGoodsListPage } from "@/api/manage/product";
|
|
|
-import { getClassificationListPage } from "@/api/common/index";
|
|
|
-export default {
|
|
|
- name: "Config",
|
|
|
- // dicts: ["sys_yes_no"],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- // 遮罩层
|
|
|
- loading: true,
|
|
|
- // 选中数组
|
|
|
- ids: [],
|
|
|
- // 非单个禁用
|
|
|
- single: true,
|
|
|
- // 非多个禁用
|
|
|
- multiple: true,
|
|
|
- // 显示搜索条件
|
|
|
- showSearch: true,
|
|
|
- // 总条数
|
|
|
- total: 0,
|
|
|
- // 参数表格数据
|
|
|
- configList: [],
|
|
|
- // 弹出层标题
|
|
|
- title: "",
|
|
|
- subTitle: "",
|
|
|
- // 是否显示弹出层
|
|
|
- open: false,
|
|
|
- subOpen: false,
|
|
|
- // 日期范围
|
|
|
- dateRange: [],
|
|
|
- // 查询参数
|
|
|
- queryParams: {
|
|
|
- pageNo: 1,
|
|
|
- pageSize: 10,
|
|
|
- categoryId: "",
|
|
|
- spuStatus: "",
|
|
|
- spuName: "",
|
|
|
- },
|
|
|
- // 表单参数
|
|
|
- form: {},
|
|
|
- // 表单校验
|
|
|
-
|
|
|
- specification: [],
|
|
|
- freight: [],
|
|
|
- subType: "",
|
|
|
- specificationOpen: false,
|
|
|
- specificationTitle: "",
|
|
|
- rules: {
|
|
|
- specification: {
|
|
|
- name: "",
|
|
|
- contont: "",
|
|
|
- inventory: "",
|
|
|
- starting: "",
|
|
|
- wholesale: "",
|
|
|
- },
|
|
|
- stats: {
|
|
|
- packing: "",
|
|
|
- deliveryTime: "",
|
|
|
- },
|
|
|
- },
|
|
|
- deliveryTimes: [
|
|
|
- {
|
|
|
- label: "付款24小时",
|
|
|
- value: "1",
|
|
|
- },
|
|
|
- {
|
|
|
- label: "付款36小时",
|
|
|
- value: "2",
|
|
|
- },
|
|
|
- {
|
|
|
- label: "付款48小时",
|
|
|
- value: "3",
|
|
|
- },
|
|
|
- {
|
|
|
- label: "自定义",
|
|
|
- value: "99",
|
|
|
- },
|
|
|
- ],
|
|
|
- optionTime: "",
|
|
|
- categoryprops: {
|
|
|
- checkStrictly: true,
|
|
|
- lazy: true,
|
|
|
- lazyLoad: this.categoryLazyLoad,
|
|
|
- },
|
|
|
-
|
|
|
- activeShowBtn: true,
|
|
|
- multipleSelection: [],
|
|
|
- };
|
|
|
- },
|
|
|
-
|
|
|
- mounted() {
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- methods: {
|
|
|
- handRef(type, scope) {
|
|
|
- if (type == "active") {
|
|
|
- this.queryParams.scope = scope;
|
|
|
- this.multipleSelection = [];
|
|
|
- this.activeShowBtn = false;
|
|
|
- this.getList();
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- addActive() {
|
|
|
- this.$emit("multipleTable", this.multipleSelection);
|
|
|
- },
|
|
|
- handleSelectionChange(val) {
|
|
|
- this.multipleSelection = val;
|
|
|
- },
|
|
|
- addOption() {
|
|
|
- if (this.optionTime) {
|
|
|
- this.deliveryTimes.push({
|
|
|
- label: this.optionTime,
|
|
|
- value: this.deliveryTimes.length,
|
|
|
- type: "add",
|
|
|
- });
|
|
|
- this.deliveryTimes.sort(function (a, b) {
|
|
|
- return a.value - b.value;
|
|
|
- });
|
|
|
- this.optionTime = "";
|
|
|
- }
|
|
|
- },
|
|
|
- removeRadio(index) {
|
|
|
- this.deliveryTimes.splice(index, 1);
|
|
|
- },
|
|
|
- specificationAdd() {
|
|
|
- for (const key in this.rules.specification) {
|
|
|
- this.rules.specification[key] = "";
|
|
|
- }
|
|
|
- this.subTitle = "自定义添加规格";
|
|
|
- this.subOpen = true;
|
|
|
- },
|
|
|
- specificationRemove(record, index) {
|
|
|
- this.specification.splice(index, 1);
|
|
|
- },
|
|
|
- specificationEdit(record) {
|
|
|
- this.subTitle = "编辑规格";
|
|
|
- this.subOpen = true;
|
|
|
- this.specification = record;
|
|
|
- },
|
|
|
- custom(type) {
|
|
|
- this.subType = type;
|
|
|
- if (type == "specification") {
|
|
|
- this.specificationOpen = true;
|
|
|
- this.specificationTitle = "自定义规格";
|
|
|
- } else if (type == "freight") {
|
|
|
- this.subTitle = "自定义运费模版";
|
|
|
- this.subOpen = true;
|
|
|
- } else if (type == "stats") {
|
|
|
- this.subTitle = "添加商品属性";
|
|
|
- this.subOpen = true;
|
|
|
- }
|
|
|
- },
|
|
|
- costumSubmit() {
|
|
|
- console.log(this.rules);
|
|
|
- this.subOpen = false;
|
|
|
- this.specification.push(this.rules.specification);
|
|
|
- console.log(this.specification);
|
|
|
- },
|
|
|
-
|
|
|
- /** 查询参数列表 */
|
|
|
- getList() {
|
|
|
- this.loading = true;
|
|
|
- getGoodsListPage(this.queryParams).then((res) => {
|
|
|
- this.configList = res.data.records;
|
|
|
- this.total = res.data.total;
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- // 取消按钮
|
|
|
- cancel() {
|
|
|
- this.open = false;
|
|
|
- this.reset();
|
|
|
- },
|
|
|
- // 表单重置
|
|
|
- reset() {
|
|
|
- this.form = {
|
|
|
- configId: undefined,
|
|
|
- configName: undefined,
|
|
|
- configKey: undefined,
|
|
|
- configValue: undefined,
|
|
|
- configType: "Y",
|
|
|
- remark: undefined,
|
|
|
- };
|
|
|
- this.resetForm("form");
|
|
|
- },
|
|
|
- /** 搜索按钮操作 */
|
|
|
- handleQuery() {
|
|
|
- this.queryParams.pageNo = 1;
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- /** 重置按钮操作 */
|
|
|
- resetQuery() {
|
|
|
- this.dateRange = [];
|
|
|
- this.resetForm("queryForm");
|
|
|
- this.handleQuery();
|
|
|
- },
|
|
|
- /**
|
|
|
- * 新增商品
|
|
|
- */
|
|
|
- prouctAdd() {
|
|
|
- this.title = "添加商品";
|
|
|
- this.open = true;
|
|
|
- },
|
|
|
- cascaderChange(val) {
|
|
|
- if (val.length == 1) {
|
|
|
- this.queryParams.categoryId = val[0];
|
|
|
- } else if (val.length == 2) {
|
|
|
- this.queryParams.categoryId = val[1];
|
|
|
- } else if (val.length == 3) {
|
|
|
- this.queryParams.categoryId = val[2];
|
|
|
- }
|
|
|
- // this.getList();
|
|
|
- },
|
|
|
- categoryLazyLoad(node, resolve) {
|
|
|
- let that = this;
|
|
|
- let level = node.level;
|
|
|
- console.log(node);
|
|
|
- if (!node.data) {
|
|
|
- getClassificationListPage({ parentId: 0 }).then((res) => {
|
|
|
- //接口
|
|
|
- const nodes = Array.from(res.data).map((item, index) => ({
|
|
|
- value: item.id,
|
|
|
- label: `${item.className}`,
|
|
|
- leaf: level >= 2,
|
|
|
- }));
|
|
|
- console.log("111", node);
|
|
|
- // 通过调用resolve将子节点数据返回,通知组件数据加载完成
|
|
|
- resolve(nodes);
|
|
|
- });
|
|
|
- } else if (level == 1) {
|
|
|
- getClassificationListPage({ parentId: node.data.value }).then((res) => {
|
|
|
- const nodes = Array.from(res.data).map((item) => ({
|
|
|
- value: item.id,
|
|
|
- label: `${item.className}`,
|
|
|
- leaf: level >= 2,
|
|
|
- // level: 2,
|
|
|
- }));
|
|
|
- // 通过调用resolve将子节点数据返回,通知组件数据加载完成
|
|
|
- resolve(nodes);
|
|
|
- });
|
|
|
- } else if (level == 2) {
|
|
|
- getClassificationListPage({ parentId: node.data.value }).then((res) => {
|
|
|
- const nodes = Array.from(res.data).map((item) => ({
|
|
|
- value: item.id,
|
|
|
- label: `${item.className}`,
|
|
|
- leaf: level >= 1,
|
|
|
- level: 1,
|
|
|
- }));
|
|
|
- // 通过调用resolve将子节点数据返回,通知组件数据加载完成
|
|
|
- resolve(nodes);
|
|
|
- });
|
|
|
- } else {
|
|
|
- resolve({});
|
|
|
- }
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
-</script>
|
|
|
-<style>
|
|
|
-.el-form-item {
|
|
|
- margin-bottom: 10px;
|
|
|
-}
|
|
|
-.el-upload--picture-card {
|
|
|
- width: 50px;
|
|
|
- height: 50px;
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
-</style>
|