mirror of
				https://github.com/YunaiV/ruoyi-vue-pro.git
				synced 2025-10-31 10:37:41 +08:00 
			
		
		
		
	优化商品的 index 界面
This commit is contained in:
		| @ -31,7 +31,7 @@ public class SpuInfoRespDTO { | |||||||
|      */ |      */ | ||||||
|     private String code; |     private String code; | ||||||
|     /** |     /** | ||||||
|      * 商品卖点 |      * 促销语 | ||||||
|      */ |      */ | ||||||
|     private String sellPoint; |     private String sellPoint; | ||||||
|     /** |     /** | ||||||
|  | |||||||
| @ -1,7 +1,6 @@ | |||||||
| package cn.iocoder.yudao.module.product.controller.admin.spu.vo; | package cn.iocoder.yudao.module.product.controller.admin.spu.vo; | ||||||
|  |  | ||||||
| import cn.iocoder.yudao.framework.common.validation.InEnum; | import cn.iocoder.yudao.framework.common.validation.InEnum; | ||||||
| import cn.iocoder.yudao.module.product.dal.dataobject.sku.ProductSkuDO; |  | ||||||
| import cn.iocoder.yudao.module.product.enums.spu.ProductSpuSpecTypeEnum; | import cn.iocoder.yudao.module.product.enums.spu.ProductSpuSpecTypeEnum; | ||||||
| import cn.iocoder.yudao.module.product.enums.spu.ProductSpuStatusEnum; | import cn.iocoder.yudao.module.product.enums.spu.ProductSpuStatusEnum; | ||||||
| import io.swagger.annotations.ApiModelProperty; | import io.swagger.annotations.ApiModelProperty; | ||||||
| @ -25,7 +24,7 @@ public class ProductSpuBaseVO { | |||||||
|     @ApiModelProperty(value = "商品编码", example = "yudaoyuanma") |     @ApiModelProperty(value = "商品编码", example = "yudaoyuanma") | ||||||
|     private String code; |     private String code; | ||||||
|  |  | ||||||
|     @ApiModelProperty(value = "商品卖点", example = "好吃!") |     @ApiModelProperty(value = "促销语", example = "好吃!") | ||||||
|     private String sellPoint; |     private String sellPoint; | ||||||
|  |  | ||||||
|     @ApiModelProperty(value = "商品详情", required = true, example = "我是商品描述") |     @ApiModelProperty(value = "商品详情", required = true, example = "我是商品描述") | ||||||
|  | |||||||
| @ -47,7 +47,7 @@ public class ProductSpuDO extends BaseDO { | |||||||
|      */ |      */ | ||||||
|     private String code; |     private String code; | ||||||
|     /** |     /** | ||||||
|      * 商品卖点 |      * 促销语 | ||||||
|      */ |      */ | ||||||
|     private String sellPoint; |     private String sellPoint; | ||||||
|     /** |     /** | ||||||
|  | |||||||
| @ -3,7 +3,6 @@ package cn.iocoder.yudao.module.trade.service.order; | |||||||
| import cn.hutool.core.bean.BeanUtil; | import cn.hutool.core.bean.BeanUtil; | ||||||
| import cn.hutool.core.text.StrBuilder; | import cn.hutool.core.text.StrBuilder; | ||||||
| import cn.hutool.core.util.IdUtil; | import cn.hutool.core.util.IdUtil; | ||||||
| import cn.hutool.core.util.StrUtil; |  | ||||||
| import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum; | import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum; | ||||||
| import cn.iocoder.yudao.framework.common.enums.TerminalEnum; | import cn.iocoder.yudao.framework.common.enums.TerminalEnum; | ||||||
| import cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil; | import cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil; | ||||||
| @ -15,8 +14,8 @@ import cn.iocoder.yudao.module.market.api.price.dto.PriceCalculateRespDTO; | |||||||
| import cn.iocoder.yudao.module.pay.api.order.PayOrderApi; | import cn.iocoder.yudao.module.pay.api.order.PayOrderApi; | ||||||
| import cn.iocoder.yudao.module.pay.api.order.PayOrderInfoCreateReqDTO; | import cn.iocoder.yudao.module.pay.api.order.PayOrderInfoCreateReqDTO; | ||||||
| import cn.iocoder.yudao.module.product.api.sku.ProductSkuApi; | import cn.iocoder.yudao.module.product.api.sku.ProductSkuApi; | ||||||
| import cn.iocoder.yudao.module.product.api.sku.dto.SkuDecrementStockBatchReqDTO; |  | ||||||
| import cn.iocoder.yudao.module.product.api.sku.dto.ProductSkuRespDTO; | import cn.iocoder.yudao.module.product.api.sku.dto.ProductSkuRespDTO; | ||||||
|  | import cn.iocoder.yudao.module.product.api.sku.dto.SkuDecrementStockBatchReqDTO; | ||||||
| import cn.iocoder.yudao.module.product.api.spu.ProductSpuApi; | import cn.iocoder.yudao.module.product.api.spu.ProductSpuApi; | ||||||
| import cn.iocoder.yudao.module.product.api.spu.dto.SpuInfoRespDTO; | import cn.iocoder.yudao.module.product.api.spu.dto.SpuInfoRespDTO; | ||||||
| import cn.iocoder.yudao.module.product.enums.spu.ProductSpuStatusEnum; | import cn.iocoder.yudao.module.product.enums.spu.ProductSpuStatusEnum; | ||||||
| @ -181,7 +180,7 @@ public class TradeOrderServiceImpl implements TradeOrderService { | |||||||
|  |  | ||||||
|     private void checkSaleableFromSpu(List<SpuInfoRespDTO> spuInfos) { |     private void checkSaleableFromSpu(List<SpuInfoRespDTO> spuInfos) { | ||||||
|         SpuInfoRespDTO spu = CollectionUtils.findFirst(spuInfos, |         SpuInfoRespDTO spu = CollectionUtils.findFirst(spuInfos, | ||||||
|                 spuInfoDTO -> !Objects.equals(ProductSpuStatusEnum.ENABLE.getStyle(), spuInfoDTO.getStatus())); |                 spuInfoDTO -> !Objects.equals(ProductSpuStatusEnum.ENABLE.getStatus(), spuInfoDTO.getStatus())); | ||||||
|         if (Objects.isNull(spu)) { |         if (Objects.isNull(spu)) { | ||||||
|             throw ServiceExceptionUtil.exception(ErrorCodeConstants.ORDER_SPU_NOT_SALE); |             throw ServiceExceptionUtil.exception(ErrorCodeConstants.ORDER_SPU_NOT_SALE); | ||||||
|         } |         } | ||||||
|  | |||||||
| @ -45,33 +45,33 @@ spring: | |||||||
|       datasource: |       datasource: | ||||||
|         master: |         master: | ||||||
|           name: ruoyi-vue-pro |           name: ruoyi-vue-pro | ||||||
|           url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.master.name}?allowMultiQueries=true&useUnicode=true&useSSL=false&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&autoReconnect=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 |           url: jdbc:mysql://139.9.196.247:3306/${spring.datasource.dynamic.datasource.master.name}?allowMultiQueries=true&useUnicode=true&useSSL=false&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&autoReconnect=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 | ||||||
|           #          url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.master.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL Connector/J 5.X 连接的示例 |           #          url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.master.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL Connector/J 5.X 连接的示例 | ||||||
|           #          url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.slave.name} # PostgreSQL 连接的示例 |           #          url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.slave.name} # PostgreSQL 连接的示例 | ||||||
|           #          url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 |           #          url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 | ||||||
|           #          url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.master.name} # SQLServer 连接的示例 |           #          url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.master.name} # SQLServer 连接的示例 | ||||||
|           username: root |           username: root | ||||||
|           password: 123456 |           password: ${RUOYI_VUE_PRO} | ||||||
|         #          username: sa |         #          username: sa | ||||||
|         #          password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W |         #          password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W | ||||||
|         slave: # 模拟从库,可根据自己需要修改 |         slave: # 模拟从库,可根据自己需要修改 | ||||||
|           name: ruoyi-vue-pro |           name: ruoyi-vue-pro | ||||||
|           url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.slave.name}?allowMultiQueries=true&useUnicode=true&useSSL=false&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&autoReconnect=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 |           url: jdbc:mysql://139.9.196.247:3306/${spring.datasource.dynamic.datasource.master.name}?allowMultiQueries=true&useUnicode=true&useSSL=false&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&autoReconnect=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 | ||||||
|           #          url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.slave.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL Connector/J 5.X 连接的示例 |           #          url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.slave.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL Connector/J 5.X 连接的示例 | ||||||
|           #          url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.slave.name} # PostgreSQL 连接的示例 |           #          url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.slave.name} # PostgreSQL 连接的示例 | ||||||
|           #          url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 |           #          url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 | ||||||
|           #          url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.slave.name} # SQLServer 连接的示例 |           #          url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.slave.name} # SQLServer 连接的示例 | ||||||
|           username: root |           username: root | ||||||
|           password: 123456 |           password: ${RUOYI_VUE_PRO} | ||||||
|   #          username: sa |   #          username: sa | ||||||
|   #          password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W |   #          password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W | ||||||
|  |  | ||||||
|   # Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优 |   # Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优 | ||||||
|   redis: |   redis: | ||||||
|     host: 127.0.0.1 # 地址 |     host: 139.9.196.247 # 地址 | ||||||
|     port: 6379 # 端口 |     port: 6379 # 端口 | ||||||
|     database: 0 # 数据库索引 |     database: 0 # 数据库索引 | ||||||
| #    password: 123456 # 密码,建议生产环境开启 |     password: 123456 # 密码,建议生产环境开启 | ||||||
|  |  | ||||||
| jasypt: | jasypt: | ||||||
|   encryptor: |   encryptor: | ||||||
|  | |||||||
| @ -185,37 +185,54 @@ export const PayOrderRefundStatusEnum = { | |||||||
|  * 支付退款订单状态枚举 |  * 支付退款订单状态枚举 | ||||||
|  */ |  */ | ||||||
| export const PayRefundStatusEnum = { | export const PayRefundStatusEnum = { | ||||||
|   CREATE:{ |   CREATE: { | ||||||
|     status:0, |     status: 0, | ||||||
|     name: '退款订单生成' |     name: '退款订单生成' | ||||||
|   }, |   }, | ||||||
|   SUCCESS:{ |   SUCCESS: { | ||||||
|     status:1, |     status: 1, | ||||||
|     name: '退款成功' |     name: '退款成功' | ||||||
|   }, |   }, | ||||||
|   FAILURE:{ |   FAILURE: { | ||||||
|     status:2, |     status: 2, | ||||||
|     name: '退款失败' |     name: '退款失败' | ||||||
|   }, |   }, | ||||||
|   PROCESSING_NOTIFY:{ |   PROCESSING_NOTIFY: { | ||||||
|     status:3, |     status: 3, | ||||||
|     name: '退款中,渠道通知结果' |     name: '退款中,渠道通知结果' | ||||||
|   }, |   }, | ||||||
|   PROCESSING_QUERY:{ |   PROCESSING_QUERY: { | ||||||
|     status:4, |     status: 4, | ||||||
|     name: '退款中,系统查询结果' |     name: '退款中,系统查询结果' | ||||||
|   }, |   }, | ||||||
|   UNKNOWN_RETRY:{ |   UNKNOWN_RETRY: { | ||||||
|     status:5, |     status: 5, | ||||||
|     name: '状态未知,请重试' |     name: '状态未知,请重试' | ||||||
|   }, |   }, | ||||||
|   UNKNOWN_QUERY:{ |   UNKNOWN_QUERY: { | ||||||
|     status:6, |     status: 6, | ||||||
|     name: '状态未知,系统查询结果' |     name: '状态未知,系统查询结果' | ||||||
|   }, |   }, | ||||||
|   CLOSE:{ |   CLOSE: { | ||||||
|     status:99, |     status: 99, | ||||||
|     name: '退款关闭' |     name: '退款关闭' | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | /** | ||||||
|  |  * 商品 SPU 状态 | ||||||
|  |  */ | ||||||
|  | export const ProductSpuStatusEnum = { | ||||||
|  |   RECYCLE: { | ||||||
|  |     status: -1, | ||||||
|  |     name: '回收站' | ||||||
|  |   }, | ||||||
|  |   DISABLE: { | ||||||
|  |     status: 0, | ||||||
|  |     name: '下架' | ||||||
|  |   }, | ||||||
|  |   ENABLE: { | ||||||
|  |     status: 1, | ||||||
|  |     name: '上架' | ||||||
|  |   }, | ||||||
|  | } | ||||||
|  | |||||||
| @ -56,6 +56,9 @@ export const DICT_TYPE = { | |||||||
|   PAY_ORDER_REFUND_STATUS: 'pay_order_refund_status', // 商户支付订单退款状态 |   PAY_ORDER_REFUND_STATUS: 'pay_order_refund_status', // 商户支付订单退款状态 | ||||||
|   PAY_REFUND_ORDER_STATUS: 'pay_refund_order_status', // 退款订单状态 |   PAY_REFUND_ORDER_STATUS: 'pay_refund_order_status', // 退款订单状态 | ||||||
|   PAY_REFUND_ORDER_TYPE: 'pay_refund_order_type', // 退款订单类别 |   PAY_REFUND_ORDER_TYPE: 'pay_refund_order_type', // 退款订单类别 | ||||||
|  |  | ||||||
|  |   // ========== MALL - PRODUCT 模块 ========== | ||||||
|  |   PRODUCT_SPU_STATUS: 'product_spu_status', // 商品 SPU 状态 | ||||||
| } | } | ||||||
|  |  | ||||||
| /** | /** | ||||||
| @ -114,6 +117,3 @@ export function getDictDataLabel(dictType, value) { | |||||||
|   const dict = getDictData(dictType, value); |   const dict = getDictData(dictType, value); | ||||||
|   return dict ? dict.label : ''; |   return dict ? dict.label : ''; | ||||||
| } | } | ||||||
|  |  | ||||||
| export class getDictDataL { |  | ||||||
| } |  | ||||||
|  | |||||||
| @ -4,74 +4,48 @@ | |||||||
|       <el-form-item label="商品名称" prop="name"> |       <el-form-item label="商品名称" prop="name"> | ||||||
|         <el-input v-model="queryParams.name" placeholder="请输入商品名称" clearable @keyup.enter.native="handleQuery"/> |         <el-input v-model="queryParams.name" placeholder="请输入商品名称" clearable @keyup.enter.native="handleQuery"/> | ||||||
|       </el-form-item> |       </el-form-item> | ||||||
|  |  | ||||||
|       <el-form-item label="商品编码" prop="code"> |       <el-form-item label="商品编码" prop="code"> | ||||||
|         <el-input v-model="queryParams.code" placeholder="请输入商品编码" clearable @keyup.enter.native="handleQuery"/> |         <el-input v-model="queryParams.code" placeholder="请输入商品编码" clearable @keyup.enter.native="handleQuery"/> | ||||||
|       </el-form-item> |       </el-form-item> | ||||||
|  |  | ||||||
|       <el-form-item label="商品分类" prop="categoryIds"> |       <el-form-item label="商品分类" prop="categoryIds"> | ||||||
|         <el-cascader v-model="queryParams.categoryIds" placeholder="请输入商品分类" |         <el-cascader v-model="queryParams.categoryIds" placeholder="请输入商品分类" | ||||||
|                      :options="categoryList" :props="propName" clearable ref="category"/> |                      :options="categoryList" :props="propName" clearable ref="category"/> | ||||||
|       </el-form-item> |       </el-form-item> | ||||||
|  |  | ||||||
|       <el-form-item label="商品品牌" prop="brandId"> |       <el-form-item label="商品品牌" prop="brandId"> | ||||||
|         <el-select v-model="queryParams.brandId" placeholder="请输入商品品牌" clearable @keyup.enter.native="handleQuery"> |         <el-select v-model="queryParams.brandId" placeholder="请输入商品品牌" clearable @keyup.enter.native="handleQuery"> | ||||||
|           <el-option v-for="item in brandList" :key="item.id" :label="item.name" :value="item.id"/> |           <el-option v-for="item in brandList" :key="item.id" :label="item.name" :value="item.id"/> | ||||||
|         </el-select> |         </el-select> | ||||||
|       </el-form-item> |       </el-form-item> | ||||||
|  |       <!-- TODO 待实现:商品类型 --> | ||||||
|  |       <!-- TODO 待实现:商品标签 --> | ||||||
|  |       <!-- TODO 待实现:营销活动 --> | ||||||
|  |       <!-- TODO 前端优化:商品销量、商品价格,排的整齐一点 --> | ||||||
|       <el-form-item label="商品销量"> |       <el-form-item label="商品销量"> | ||||||
|         <el-col |         <el-col :span="7" style="padding-left:0"> | ||||||
|           :span="6" |  | ||||||
|           style="padding-left:0" |  | ||||||
|         > |  | ||||||
|           <el-form-item prop="salesCountMin"> |           <el-form-item prop="salesCountMin"> | ||||||
|             <el-input v-model="queryParams.salesCountMin" placeholder="最小值" clearable |             <el-input v-model="queryParams.salesCountMin" placeholder="最低销量" clearable @keyup.enter.native="handleQuery"/> | ||||||
|                       @keyup.enter.native="handleQuery"/> |  | ||||||
|           </el-form-item> |           </el-form-item> | ||||||
|         </el-col> |         </el-col> | ||||||
|         <el-col |         <el-col :span="1">-</el-col> | ||||||
|           :span="1" |         <el-col :span="7" style="padding-left:0"> | ||||||
|         > |  | ||||||
|           - |  | ||||||
|         </el-col> |  | ||||||
|         <el-col |  | ||||||
|           :span="6" |  | ||||||
|           style="padding-left:0" |  | ||||||
|         > |  | ||||||
|           <el-form-item prop="salesCountMax"> |           <el-form-item prop="salesCountMax"> | ||||||
|             <el-input v-model="queryParams.salesCountMax" placeholder="最大值" clearable |             <el-input v-model="queryParams.salesCountMax" placeholder="最高销量" clearable @keyup.enter.native="handleQuery"/> | ||||||
|                       @keyup.enter.native="handleQuery"/> |  | ||||||
|           </el-form-item> |           </el-form-item> | ||||||
|         </el-col> |         </el-col> | ||||||
|       </el-form-item> |       </el-form-item> | ||||||
|  |  | ||||||
|       <el-form-item label="商品价格" prop="code"> |       <el-form-item label="商品价格" prop="code"> | ||||||
|         <el-col |         <el-col :span="7" style="padding-left:0"> | ||||||
|           :span="6" |  | ||||||
|           style="padding-left:0" |  | ||||||
|         > |  | ||||||
|           <el-form-item prop="marketPriceMin"> |           <el-form-item prop="marketPriceMin"> | ||||||
|             <el-input v-model="queryParams.marketPriceMin" placeholder="最小值" clearable |             <el-input v-model="queryParams.marketPriceMin" placeholder="最低价格" clearable @keyup.enter.native="handleQuery"/> | ||||||
|                       @keyup.enter.native="handleQuery"/> |  | ||||||
|           </el-form-item> |           </el-form-item> | ||||||
|         </el-col> |         </el-col> | ||||||
|         <el-col |         <el-col :span="1">-</el-col> | ||||||
|           :span="1" |         <el-col :span="7" style="padding-left:0"> | ||||||
|         > |  | ||||||
|           - |  | ||||||
|         </el-col> |  | ||||||
|         <el-col |  | ||||||
|           :span="6" |  | ||||||
|           style="padding-left:0" |  | ||||||
|         > |  | ||||||
|           <el-form-item prop="marketPriceMax"> |           <el-form-item prop="marketPriceMax"> | ||||||
|             <el-input v-model="queryParams.marketPriceMax" placeholder="最大值" clearable |             <el-input v-model="queryParams.marketPriceMax" placeholder="最高价格" clearable @keyup.enter.native="handleQuery"/> | ||||||
|                       @keyup.enter.native="handleQuery"/> |  | ||||||
|           </el-form-item> |           </el-form-item> | ||||||
|         </el-col> |         </el-col> | ||||||
|       </el-form-item> |       </el-form-item> | ||||||
|  |  | ||||||
|       <el-form-item> |       <el-form-item> | ||||||
|         <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button> |         <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button> | ||||||
|         <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button> |         <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button> | ||||||
| @ -82,8 +56,7 @@ | |||||||
|     <el-row :gutter="10" class="mb8"> |     <el-row :gutter="10" class="mb8"> | ||||||
|       <el-col :span="1.5"> |       <el-col :span="1.5"> | ||||||
|         <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" |         <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" | ||||||
|                    v-hasPermi="['product:spu:create']">新增 |                    v-hasPermi="['product:spu:create']">添加商品</el-button> | ||||||
|         </el-button> |  | ||||||
|       </el-col> |       </el-col> | ||||||
|       <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"/> |       <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"/> | ||||||
|     </el-row> |     </el-row> | ||||||
| @ -96,17 +69,13 @@ | |||||||
|           <el-table-column label="商品信息" align="center" width="260"> |           <el-table-column label="商品信息" align="center" width="260"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <div class="product-info"> |               <div class="product-info"> | ||||||
|                 <img |                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height" /> | ||||||
|                   v-if="scope.row.picUrls" |  | ||||||
|                   :src="scope.row.picUrls[0]" |  | ||||||
|                   alt="分类图片" |  | ||||||
|                   class="img-height" |  | ||||||
|                 /> |  | ||||||
|                 <div class="message">{{ scope.row.name }}</div> |                 <div class="message">{{ scope.row.name }}</div> | ||||||
|               </div> |               </div> | ||||||
|             </template> |             </template> | ||||||
|  |             <!-- TODO 前端优化:可以有个 + 号,点击后,展示每个 sku --> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="unitConversion"/> |           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="formatPrice"/> | ||||||
|           <el-table-column label="库存" align="center" prop="totalStock"/> |           <el-table-column label="库存" align="center" prop="totalStock"/> | ||||||
|           <el-table-column label="销量" align="center" prop="salesCount"/> |           <el-table-column label="销量" align="center" prop="salesCount"/> | ||||||
|           <el-table-column label="排序" align="center" prop="sort"/> |           <el-table-column label="排序" align="center" prop="sort"/> | ||||||
| @ -117,18 +86,15 @@ | |||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="状态" align="center" prop="status"> |           <el-table-column label="状态" align="center" prop="status"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/> |               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/> | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|  |  | ||||||
|           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:update']">修改 |                          v-hasPermi="['product:spu:update']">修改</el-button> | ||||||
|               </el-button> |  | ||||||
|               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:delete']">删除 |                          v-hasPermi="['product:spu:delete']">删除</el-button> | ||||||
|               </el-button> |  | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|         </el-table> |         </el-table> | ||||||
| @ -141,17 +107,12 @@ | |||||||
|           <el-table-column label="商品信息" align="center" width="260"> |           <el-table-column label="商品信息" align="center" width="260"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <div class="product-info"> |               <div class="product-info"> | ||||||
|                 <img |                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height"/> | ||||||
|                   v-if="scope.row.picUrls" |  | ||||||
|                   :src="scope.row.picUrls[0]" |  | ||||||
|                   alt="分类图片" |  | ||||||
|                   class="img-height" |  | ||||||
|                 /> |  | ||||||
|                 <div class="message">{{ scope.row.name }}</div> |                 <div class="message">{{ scope.row.name }}</div> | ||||||
|               </div> |               </div> | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="unitConversion"/> |           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="formatPrice"/> | ||||||
|           <el-table-column label="库存" align="center" prop="totalStock"/> |           <el-table-column label="库存" align="center" prop="totalStock"/> | ||||||
|           <el-table-column label="销量" align="center" prop="salesCount"/> |           <el-table-column label="销量" align="center" prop="salesCount"/> | ||||||
|           <el-table-column label="排序" align="center" prop="sort"/> |           <el-table-column label="排序" align="center" prop="sort"/> | ||||||
| @ -162,18 +123,15 @@ | |||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="状态" align="center" prop="status"> |           <el-table-column label="状态" align="center" prop="status"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/> |               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/> | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|  |  | ||||||
|           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:update']">修改 |                          v-hasPermi="['product:spu:update']">修改</el-button> | ||||||
|               </el-button> |  | ||||||
|               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:delete']">删除 |                          v-hasPermi="['product:spu:delete']">删除</el-button> | ||||||
|               </el-button> |  | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|         </el-table> |         </el-table> | ||||||
| @ -186,17 +144,12 @@ | |||||||
|           <el-table-column label="商品信息" align="center" width="260"> |           <el-table-column label="商品信息" align="center" width="260"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <div class="product-info"> |               <div class="product-info"> | ||||||
|                 <img |                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height"/> | ||||||
|                   v-if="scope.row.picUrls" |  | ||||||
|                   :src="scope.row.picUrls[0]" |  | ||||||
|                   alt="分类图片" |  | ||||||
|                   class="img-height" |  | ||||||
|                 /> |  | ||||||
|                 <div class="message">{{ scope.row.name }}</div> |                 <div class="message">{{ scope.row.name }}</div> | ||||||
|               </div> |               </div> | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="unitConversion"/> |           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="formatPrice"/> | ||||||
|           <el-table-column label="库存" align="center" prop="totalStock"/> |           <el-table-column label="库存" align="center" prop="totalStock"/> | ||||||
|           <el-table-column label="销量" align="center" prop="salesCount"/> |           <el-table-column label="销量" align="center" prop="salesCount"/> | ||||||
|           <el-table-column label="排序" align="center" prop="sort"/> |           <el-table-column label="排序" align="center" prop="sort"/> | ||||||
| @ -207,18 +160,15 @@ | |||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="状态" align="center" prop="status"> |           <el-table-column label="状态" align="center" prop="status"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/> |               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/> | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|  |  | ||||||
|           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:update']">修改 |                          v-hasPermi="['product:spu:update']">修改</el-button> | ||||||
|               </el-button> |  | ||||||
|               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:delete']">删除 |                          v-hasPermi="['product:spu:delete']">删除</el-button> | ||||||
|               </el-button> |  | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|         </el-table> |         </el-table> | ||||||
| @ -231,17 +181,12 @@ | |||||||
|           <el-table-column label="商品信息" align="center" width="260"> |           <el-table-column label="商品信息" align="center" width="260"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <div class="product-info"> |               <div class="product-info"> | ||||||
|                 <img |                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height"/> | ||||||
|                   v-if="scope.row.picUrls" |  | ||||||
|                   :src="scope.row.picUrls[0]" |  | ||||||
|                   alt="分类图片" |  | ||||||
|                   class="img-height" |  | ||||||
|                 /> |  | ||||||
|                 <div class="message">{{ scope.row.name }}</div> |                 <div class="message">{{ scope.row.name }}</div> | ||||||
|               </div> |               </div> | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="unitConversion"/> |           <el-table-column label="价格" align="center" prop="marketPrice" :formatter="formatPrice"/> | ||||||
|           <el-table-column label="库存" align="center" prop="totalStock"/> |           <el-table-column label="库存" align="center" prop="totalStock"/> | ||||||
|           <el-table-column label="销量" align="center" prop="salesCount"/> |           <el-table-column label="销量" align="center" prop="salesCount"/> | ||||||
|           <el-table-column label="排序" align="center" prop="sort"/> |           <el-table-column label="排序" align="center" prop="sort"/> | ||||||
| @ -252,27 +197,24 @@ | |||||||
|           </el-table-column> |           </el-table-column> | ||||||
|           <el-table-column label="状态" align="center" prop="status"> |           <el-table-column label="状态" align="center" prop="status"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/> |               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/> | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|  |  | ||||||
|           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> | ||||||
|             <template slot-scope="scope"> |             <template slot-scope="scope"> | ||||||
|               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:update']">修改 |                          v-hasPermi="['product:spu:update']">修改</el-button> | ||||||
|               </el-button> |  | ||||||
|               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" |               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" | ||||||
|                          v-hasPermi="['product:spu:delete']">删除 |                          v-hasPermi="['product:spu:delete']">删除</el-button> | ||||||
|               </el-button> |  | ||||||
|             </template> |             </template> | ||||||
|           </el-table-column> |           </el-table-column> | ||||||
|         </el-table> |         </el-table> | ||||||
|       </el-tab-pane> |       </el-tab-pane> | ||||||
|     </el-tabs> |     </el-tabs> | ||||||
|  |  | ||||||
|     <!-- 分页组件 --> |     <!-- 分页组件 --> | ||||||
|     <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" |     <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" | ||||||
|                 @pagination="getList"/> |                 @pagination="getList"/> | ||||||
|  |  | ||||||
|   </div> |   </div> | ||||||
| </template> | </template> | ||||||
|  |  | ||||||
| @ -353,9 +295,6 @@ export default { | |||||||
|       this.addBeginAndEndTime(params, this.dateRangeCreateTime, "createTime"); |       this.addBeginAndEndTime(params, this.dateRangeCreateTime, "createTime"); | ||||||
|       // 执行查询 |       // 执行查询 | ||||||
|       getSpuPage(params).then((response) => { |       getSpuPage(params).then((response) => { | ||||||
|         response.data.list.forEach(element => { |  | ||||||
|           element.price = this.divide(element.minPrice, 100) + "~" + this.divide(element.maxPrice, 100) |  | ||||||
|         }); |  | ||||||
|         this.list = response.data.list; |         this.list = response.data.list; | ||||||
|         this.total = response.data.total; |         this.total = response.data.total; | ||||||
|         this.loading = false; |         this.loading = false; | ||||||
| @ -390,18 +329,16 @@ export default { | |||||||
|         .confirm('是否确认删除商品spu编号为"' + id + '"的数据项?') |         .confirm('是否确认删除商品spu编号为"' + id + '"的数据项?') | ||||||
|         .then(function () { |         .then(function () { | ||||||
|           return deleteSpu(id); |           return deleteSpu(id); | ||||||
|         }) |         }).then(() => { | ||||||
|         .then(() => { |  | ||||||
|           this.getList(); |           this.getList(); | ||||||
|           this.$modal.msgSuccess("删除成功"); |           this.$modal.msgSuccess("删除成功"); | ||||||
|         }) |         }).catch(() => { | ||||||
|         .catch(() => { |  | ||||||
|         }); |         }); | ||||||
|     }, |     }, | ||||||
|     unitConversion(row, column, cellValue) { |     formatPrice(row, column, cellValue) { | ||||||
|       return this.divide(cellValue, 100); |       return '¥' + this.divide(cellValue, 100); | ||||||
|     }, |     }, | ||||||
|     // 选中tab |     // 选中 tab | ||||||
|     handleClick(val) { |     handleClick(val) { | ||||||
|       if (val.name === "all") { |       if (val.name === "all") { | ||||||
|         this.queryParams.tabStatus = null; |         this.queryParams.tabStatus = null; | ||||||
|  | |||||||
| @ -7,8 +7,8 @@ | |||||||
|           <el-form-item label="商品名称" prop="name"> |           <el-form-item label="商品名称" prop="name"> | ||||||
|             <el-input v-model="baseForm.name" placeholder="请输入商品名称"/> |             <el-input v-model="baseForm.name" placeholder="请输入商品名称"/> | ||||||
|           </el-form-item> |           </el-form-item> | ||||||
|           <el-form-item label="商品卖点"> |           <el-form-item label="促销语"> | ||||||
|             <el-input type="textarea" v-model="baseForm.sellPoint" placeholder="请输入商品卖点"/> |             <el-input type="textarea" v-model="baseForm.sellPoint" placeholder="请输入促销语"/> | ||||||
|           </el-form-item> |           </el-form-item> | ||||||
|           <el-form-item label="商品主图" prop="picUrls"> |           <el-form-item label="商品主图" prop="picUrls"> | ||||||
|             <ImageUpload v-model="baseForm.picUrls" :value="baseForm.picUrls" :limit="10" class="mall-image"/> |             <ImageUpload v-model="baseForm.picUrls" :value="baseForm.picUrls" :limit="10" class="mall-image"/> | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV