|
|
|
@ -55,20 +55,26 @@ |
|
|
|
|
</a-form-item> |
|
|
|
|
|
|
|
|
|
<a-form-item label="是否大牌正品" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-radio-group v-decorator="['is_brand', { initialValue: 0, rules: [{ required: true }] }]"> |
|
|
|
|
<a-radio-group |
|
|
|
|
v-decorator="['is_brand', { initialValue: 0, rules: [{ required: true }] }]" |
|
|
|
|
> |
|
|
|
|
<a-radio :value="0">否</a-radio> |
|
|
|
|
<a-radio :value="1">是</a-radio> |
|
|
|
|
</a-radio-group> |
|
|
|
|
</a-form-item> |
|
|
|
|
|
|
|
|
|
<a-form-item label="是否新品首发" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-radio-group v-decorator="['is_new', { initialValue: 0, rules: [{ required: true }] }]"> |
|
|
|
|
<a-radio-group |
|
|
|
|
v-decorator="['is_new', { initialValue: 0, rules: [{ required: true }] }]" |
|
|
|
|
> |
|
|
|
|
<a-radio :value="0">否</a-radio> |
|
|
|
|
<a-radio :value="1">是</a-radio> |
|
|
|
|
</a-radio-group> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="是否店内" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-radio-group v-decorator="['is_in_store', { initialValue: 0, rules: [{ required: true }] }]"> |
|
|
|
|
<a-radio-group |
|
|
|
|
v-decorator="['is_in_store', { initialValue: 0, rules: [{ required: true }] }]" |
|
|
|
|
> |
|
|
|
|
<a-radio :value="0">否</a-radio> |
|
|
|
|
<a-radio :value="1">是</a-radio> |
|
|
|
|
</a-radio-group> |
|
|
|
@ -102,14 +108,8 @@ |
|
|
|
|
<div v-show="form.getFieldValue('is_ind_delivery_type')"> |
|
|
|
|
<a-form-item extra="需在 [设置 - 配送方式] 中,开启支持的配送方式才可生效"> |
|
|
|
|
<a-checkbox-group |
|
|
|
|
:options="[ |
|
|
|
|
{ label: '快递配送', value: 10 }, |
|
|
|
|
{ label: '上门自提', value: 20 }, |
|
|
|
|
]" |
|
|
|
|
v-decorator="[ |
|
|
|
|
'delivery_type', |
|
|
|
|
{ initialValue: [10, 20], rules: [{ required: true, message: '配送方式至少选择一个' }] }, |
|
|
|
|
]" |
|
|
|
|
:options="[{ label: '快递配送', value: 10 }, { label: '上门自提', value: 20 }]" |
|
|
|
|
v-decorator="['delivery_type', { initialValue: [10, 20], rules: [{ required: true, message: '配送方式至少选择一个' }] }]" |
|
|
|
|
/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
@ -129,27 +129,29 @@ |
|
|
|
|
v-for="(item, index) in formData.deliveryList" |
|
|
|
|
:key="index" |
|
|
|
|
:value="item.delivery_id" |
|
|
|
|
>{{ item.name }}</a-select-option |
|
|
|
|
> |
|
|
|
|
>{{ item.name }}</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
<div class="form-item-help"> |
|
|
|
|
<router-link target="_blank" :to="{ path: '/setting/delivery/template/create' }">新增模板</router-link> |
|
|
|
|
<router-link |
|
|
|
|
target="_blank" |
|
|
|
|
:to="{ path: '/setting/delivery/template/create' }" |
|
|
|
|
>新增模板</router-link> |
|
|
|
|
<a href="javascript:;" @click="onReloadDeliveryList">刷新</a> |
|
|
|
|
</div> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="商品状态" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-radio-group v-decorator="['status', { initialValue: 10, rules: [{ required: true }] }]"> |
|
|
|
|
<a-radio-group |
|
|
|
|
v-decorator="['status', { initialValue: 10, rules: [{ required: true }] }]" |
|
|
|
|
> |
|
|
|
|
<a-radio :value="10">上架</a-radio> |
|
|
|
|
<a-radio :value="20">下架</a-radio> |
|
|
|
|
</a-radio-group> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="商品排序" :labelCol="labelCol" :wrapperCol="wrapperCol" extra="数字越小越靠前"> |
|
|
|
|
<a-input-number :min="0" v-decorator="['sort', { initialValue: 100, rules: [{ required: true }] }]" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
|
|
|
|
|
<a-form-item class="mt-20" :wrapperCol="{ span: wrapperCol.span, offset: labelCol.span }"> |
|
|
|
|
<a-button type="primary" html-type="submit" :loading="isBtnLoading">提交</a-button> |
|
|
|
|
<a-button type="primary" @click="handleTabs(1)" style="margin-left: 20px">下一步</a-button> |
|
|
|
|
<a-input-number |
|
|
|
|
:min="0" |
|
|
|
|
v-decorator="['sort', { initialValue: 100, rules: [{ required: true }] }]" |
|
|
|
|
/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
@ -191,8 +193,17 @@ |
|
|
|
|
/> |
|
|
|
|
<span class="ml-10">元</span> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="成本价" :labelCol="labelCol" :wrapperCol="wrapperCol" extra="成本价仅用于商品页展示"> |
|
|
|
|
<a-input-number :min="0.01" :precision="2" v-decorator="['cost_price']" /> |
|
|
|
|
<a-form-item |
|
|
|
|
label="成本价" |
|
|
|
|
:labelCol="labelCol" |
|
|
|
|
:wrapperCol="wrapperCol" |
|
|
|
|
extra="成本价仅用于商品页展示" |
|
|
|
|
> |
|
|
|
|
<a-input-number |
|
|
|
|
:min="0.01" |
|
|
|
|
:precision="2" |
|
|
|
|
v-decorator="['cost_price']" |
|
|
|
|
/> |
|
|
|
|
<span class="ml-10">元</span> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item |
|
|
|
@ -204,10 +215,7 @@ |
|
|
|
|
<a-input-number |
|
|
|
|
:min="0" |
|
|
|
|
:precision="0" |
|
|
|
|
v-decorator="[ |
|
|
|
|
'stock_num', |
|
|
|
|
{ initialValue: 100, rules: [{ required: true, message: '请输入库存数量' }] }, |
|
|
|
|
]" |
|
|
|
|
v-decorator="['stock_num', { initialValue: 100, rules: [{ required: true, message: '请输入库存数量' }] }]" |
|
|
|
|
/> |
|
|
|
|
<span class="ml-10">件</span> |
|
|
|
|
</a-form-item> |
|
|
|
@ -219,16 +227,15 @@ |
|
|
|
|
> |
|
|
|
|
<a-input-number |
|
|
|
|
:min="0" |
|
|
|
|
v-decorator="[ |
|
|
|
|
'goods_weight', |
|
|
|
|
{ initialValue: 0, rules: [{ required: true, message: '请输入库存数量' }] }, |
|
|
|
|
]" |
|
|
|
|
v-decorator="['goods_weight', { initialValue: 0, rules: [{ required: true, message: '请输入库存数量' }] }]" |
|
|
|
|
/> |
|
|
|
|
<span class="ml-10">千克 (Kg)</span> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
<a-form-item label="库存计算方式" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-radio-group v-decorator="['deduct_stock_type', { initialValue: 10, rules: [{ required: true }] }]"> |
|
|
|
|
<a-radio-group |
|
|
|
|
v-decorator="['deduct_stock_type', { initialValue: 10, rules: [{ required: true }] }]" |
|
|
|
|
> |
|
|
|
|
<a-radio :value="10">下单减库存</a-radio> |
|
|
|
|
<a-radio :value="20">付款减库存</a-radio> |
|
|
|
|
</a-radio-group> |
|
|
|
@ -267,22 +274,12 @@ |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item class="mt-20" :wrapperCol="{ span: wrapperCol.span, offset: labelCol.span }"> |
|
|
|
|
<a-button type="primary" html-type="submit" :loading="isBtnLoading">提交</a-button> |
|
|
|
|
<a-button type="primary" @click="handleTabs(0)" style="margin-left: 20px">上一步</a-button> |
|
|
|
|
<a-button type="primary" @click="handleTabs(2)" style="margin-left: 20px">下一步</a-button> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
<!-- 商品详情 --> |
|
|
|
|
<div class="tab-pane" v-show="tabKey == 2"> |
|
|
|
|
<a-form-item label="商品详情" :labelCol="labelCol" :wrapperCol="{ span: 16 }"> |
|
|
|
|
<a-form-item label="商品详情" :labelCol="labelCol" :wrapperCol="{span: 16}"> |
|
|
|
|
<Ueditor v-decorator="['content', { rules: [{ required: true, message: '商品详情不能为空' }] }]" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item class="mt-20" :wrapperCol="{ span: wrapperCol.span, offset: labelCol.span }"> |
|
|
|
|
<a-button type="primary" html-type="submit" :loading="isBtnLoading">提交</a-button> |
|
|
|
|
<a-button type="primary" @click="handleTabs(1)" style="margin-left: 20px">上一步</a-button> |
|
|
|
|
<a-button type="primary" @click="handleTabs(3)" style="margin-left: 20px">下一步</a-button> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 更多设置 --> |
|
|
|
@ -326,9 +323,11 @@ |
|
|
|
|
v-decorator="['serviceIds']" |
|
|
|
|
placeholder="请选择服务与承诺" |
|
|
|
|
> |
|
|
|
|
<a-select-option v-for="(item, index) in formData.serviceList" :key="index" :value="item.service_id">{{ |
|
|
|
|
item.name |
|
|
|
|
}}</a-select-option> |
|
|
|
|
<a-select-option |
|
|
|
|
v-for="(item, index) in formData.serviceList" |
|
|
|
|
:key="index" |
|
|
|
|
:value="item.service_id" |
|
|
|
|
>{{ item.name }}</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
<div class="form-item-help"> |
|
|
|
|
<router-link target="_blank" :to="{ path: '/goods/service/index' }">去新增</router-link> |
|
|
|
@ -341,9 +340,43 @@ |
|
|
|
|
:wrapperCol="wrapperCol" |
|
|
|
|
extra="用户端展示的销量 = 初始销量 + 实际销量" |
|
|
|
|
> |
|
|
|
|
<a-input-number v-decorator="['sales_initial', { initialValue: 0 }]" /> |
|
|
|
|
<a-input-number v-decorator="['sales_initial', { initialValue: 0}]" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
|
|
|
|
|
<div> |
|
|
|
|
<a-divider orientation="left">销售区域</a-divider> |
|
|
|
|
<a-form-item label="销售区域" :labelCol="labelCol" :wrapperCol="{ span: 15 }"> |
|
|
|
|
<a-table |
|
|
|
|
v-show="ruleList.length" |
|
|
|
|
class="table-rules" |
|
|
|
|
:columns="columns" |
|
|
|
|
:dataSource="ruleList" |
|
|
|
|
:pagination="false" |
|
|
|
|
bordered |
|
|
|
|
> |
|
|
|
|
<!-- 销售区域 --> |
|
|
|
|
<template slot="region_text" slot-scope="text, item, index"> |
|
|
|
|
<p class="content"> |
|
|
|
|
<span v-for="(province, pidx) in text" :key="pidx"> |
|
|
|
|
<span>{{ province.name }}</span> |
|
|
|
|
<template v-if="province.citys.length"> |
|
|
|
|
<span>(</span> |
|
|
|
|
<span class="city-name" v-for="(city, cidx) in province.citys" :key="cidx" |
|
|
|
|
>{{ city.name }}{{ province.citys.length > cidx + 1 ? '、' : '' }}</span |
|
|
|
|
> |
|
|
|
|
<span>)</span> |
|
|
|
|
</template> |
|
|
|
|
<span>{{ ' ' }}</span> |
|
|
|
|
</span> |
|
|
|
|
</p> |
|
|
|
|
<p class="operation"> |
|
|
|
|
<a href="javascript:void(0);" class="edit" @click="handleEdit(index, item)">编辑</a> |
|
|
|
|
<a href="javascript:void(0);" class="delete" @click="handleDelete(index)">删除</a> |
|
|
|
|
</p> |
|
|
|
|
</template> |
|
|
|
|
</a-table> |
|
|
|
|
<a-button icon="environment" v-if="ruleList.length == 0" @click="handleAdd">点击添加销售区域</a-button> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
<div v-show="$module('market-points')"> |
|
|
|
|
<a-divider orientation="left">积分设置</a-divider> |
|
|
|
|
<a-form-item |
|
|
|
@ -352,7 +385,9 @@ |
|
|
|
|
:wrapperCol="wrapperCol" |
|
|
|
|
extra="开启后用户购买此商品将获得积分" |
|
|
|
|
> |
|
|
|
|
<a-radio-group v-decorator="['is_points_gift', { initialValue: 1, rules: [{ required: true }] }]"> |
|
|
|
|
<a-radio-group |
|
|
|
|
v-decorator="['is_points_gift', { initialValue: 1, rules: [{ required: true }] }]" |
|
|
|
|
> |
|
|
|
|
<a-radio :value="1">开启</a-radio> |
|
|
|
|
<a-radio :value="0">关闭</a-radio> |
|
|
|
|
</a-radio-group> |
|
|
|
@ -363,7 +398,9 @@ |
|
|
|
|
:wrapperCol="wrapperCol" |
|
|
|
|
extra="开启后用户购买此商品可以使用积分进行抵扣" |
|
|
|
|
> |
|
|
|
|
<a-radio-group v-decorator="['is_points_discount', { initialValue: 1, rules: [{ required: true }] }]"> |
|
|
|
|
<a-radio-group |
|
|
|
|
v-decorator="['is_points_discount', { initialValue: 1, rules: [{ required: true }] }]" |
|
|
|
|
> |
|
|
|
|
<a-radio :value="1">开启</a-radio> |
|
|
|
|
<a-radio :value="0">关闭</a-radio> |
|
|
|
|
</a-radio-group> |
|
|
|
@ -406,20 +443,17 @@ |
|
|
|
|
:addonBefore="item.name" |
|
|
|
|
addonAfter="折" |
|
|
|
|
:inputProps="{ min: 0, max: 9.9 }" |
|
|
|
|
v-decorator="[ |
|
|
|
|
`alone_grade_equity[grade_id:${item.grade_id}]`, |
|
|
|
|
{ |
|
|
|
|
initialValue: formData.defaultUserGradeValue[item.grade_id], |
|
|
|
|
rules: [{ required: true, message: '折扣率不能为空' }], |
|
|
|
|
}, |
|
|
|
|
]" |
|
|
|
|
v-decorator="[`alone_grade_equity[grade_id:${item.grade_id}]`, { |
|
|
|
|
initialValue: formData.defaultUserGradeValue[item.grade_id], rules: [{ required: true, message: '折扣率不能为空'}] |
|
|
|
|
}]" |
|
|
|
|
/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-item-help"> |
|
|
|
|
<p class="extra" v-if="form.getFieldValue('is_alone_grade')"> |
|
|
|
|
单独折扣:折扣率范围0.0-9.9,例如: 9.8代表98折,0代表不折扣 |
|
|
|
|
</p> |
|
|
|
|
<p |
|
|
|
|
class="extra" |
|
|
|
|
v-if="form.getFieldValue('is_alone_grade')" |
|
|
|
|
>单独折扣:折扣率范围0.0-9.9,例如: 9.8代表98折,0代表不折扣</p> |
|
|
|
|
<p class="extra" v-else>默认折扣:默认为用户所属会员等级的折扣率</p> |
|
|
|
|
</div> |
|
|
|
|
</a-form-item> |
|
|
|
@ -458,18 +492,18 @@ |
|
|
|
|
:addonBefore="item.name" |
|
|
|
|
:addonAfter="form.getFieldValue('dealer_money_type') == 10 ? '%' : '元'" |
|
|
|
|
:inputProps="{ min: 0, precision: 2 }" |
|
|
|
|
v-decorator="[item.value, { rules: [{ required: true, message: '佣金不能为空' }] }]" |
|
|
|
|
v-decorator="[item.value, { rules: [{ required: true, message: '佣金不能为空'}] }]" |
|
|
|
|
/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item class="mt-20" :wrapperCol="{ span: wrapperCol.span, offset: labelCol.span }"> |
|
|
|
|
<a-button type="primary" html-type="submit" :loading="isBtnLoading">提交</a-button> |
|
|
|
|
<a-button type="primary" @click="handleTabs(2)" style="margin-left: 20px">上一步</a-button> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<a-form-item class="mt-20" :wrapperCol="{ span: wrapperCol.span, offset: labelCol.span }"> |
|
|
|
|
<a-button type="primary" html-type="submit" :loading="isBtnLoading">提交</a-button> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-form> |
|
|
|
|
<AreasModal ref="AreasModal" @handleSubmit="handleAreaSubmit" /> |
|
|
|
|
</a-spin> |
|
|
|
|
</a-card> |
|
|
|
|
</template> |
|
|
|
@ -480,7 +514,12 @@ import { SelectImage, SelectVideo, Ueditor, InputNumberGroup } from '@/component |
|
|
|
|
import GoodsModel from '@/common/model/goods/Index' |
|
|
|
|
import { GoodsType, MultiSpec } from './modules' |
|
|
|
|
import { isEmptyObject } from '@/utils/util' |
|
|
|
|
|
|
|
|
|
import { AreasModal } from '@/components/Modal' |
|
|
|
|
const defaultItem = { |
|
|
|
|
key: 0, |
|
|
|
|
region: [], |
|
|
|
|
region_text: [], |
|
|
|
|
} |
|
|
|
|
export default { |
|
|
|
|
components: { |
|
|
|
|
GoodsType, |
|
|
|
@ -489,8 +528,9 @@ export default { |
|
|
|
|
Ueditor, |
|
|
|
|
InputNumberGroup, |
|
|
|
|
MultiSpec, |
|
|
|
|
AreasModal |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
// 默认的标签索引 |
|
|
|
|
tabKey: 0, |
|
|
|
@ -507,66 +547,82 @@ export default { |
|
|
|
|
goodsId: null, |
|
|
|
|
// 表单数据 |
|
|
|
|
formData: GoodsModel.formData, |
|
|
|
|
checkList: [], |
|
|
|
|
// 销售区域 |
|
|
|
|
ruleList: [], |
|
|
|
|
// 销售区域表头 |
|
|
|
|
columns: [ |
|
|
|
|
{ |
|
|
|
|
title: '销售区域', |
|
|
|
|
dataIndex: 'region_text', |
|
|
|
|
width: '400px', |
|
|
|
|
scopedSlots: { customRender: 'region_text' }, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
// 城市总数 |
|
|
|
|
citysCount: null, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
// 监听商品ID变化 |
|
|
|
|
'$route.query.goodsId'(val) { |
|
|
|
|
'$route.query.goodsId' (val) { |
|
|
|
|
if (val) { |
|
|
|
|
this.goodsId = val |
|
|
|
|
this.initData() |
|
|
|
|
this.getDataList() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
created () { |
|
|
|
|
// 初始化数据 |
|
|
|
|
this.initData() |
|
|
|
|
}, |
|
|
|
|
beforeDestroy() { |
|
|
|
|
beforeDestroy () { |
|
|
|
|
// 销毁商品详情 |
|
|
|
|
GoodsModel.formData.goods = {} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
// 初始化数据 |
|
|
|
|
initData() { |
|
|
|
|
initData () { |
|
|
|
|
// 记录商品ID |
|
|
|
|
this.goodsId = this.$route.query.goodsId |
|
|
|
|
// 获取form所需的数据 |
|
|
|
|
this.isLoading = true |
|
|
|
|
GoodsModel.getFromData(this.goodsId).then(() => { |
|
|
|
|
// 商品表单数据 |
|
|
|
|
if (!isEmptyObject(this.form.getFieldsValue())) { |
|
|
|
|
// 第一次赋值 |
|
|
|
|
this.form.setFieldsValue(GoodsModel.getFieldsValue()) |
|
|
|
|
// 第二次赋值 (适用于动态渲染的form-item) |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.form.setFieldsValue(GoodsModel.getFieldsValue2()) |
|
|
|
|
this.onForceUpdate() |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
this.isLoading = false |
|
|
|
|
}) |
|
|
|
|
GoodsModel.getFromData(this.goodsId) |
|
|
|
|
.then(() => { |
|
|
|
|
// 商品表单数据 |
|
|
|
|
if (!isEmptyObject(this.form.getFieldsValue())) { |
|
|
|
|
// 第一次赋值 |
|
|
|
|
this.form.setFieldsValue(GoodsModel.getFieldsValue()) |
|
|
|
|
// 第二次赋值 (适用于动态渲染的form-item) |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.form.setFieldsValue(GoodsModel.getFieldsValue2()) |
|
|
|
|
this.ruleList = this.formData.goods.rules?this.formData.goods.rules:[] |
|
|
|
|
this.onForceUpdate() |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
this.isLoading = false |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 手动强制更新页面 |
|
|
|
|
onForceUpdate(bool = false) { |
|
|
|
|
onForceUpdate (bool = false) { |
|
|
|
|
this.$forceUpdate() |
|
|
|
|
// bool为true时再执行一次 $forceUpdate, 特殊情况下需执行两次,原因如下: |
|
|
|
|
// 第一次执行 $forceUpdate时, 新元素绑定v-decorator无法获取到form.getFieldValue |
|
|
|
|
bool && |
|
|
|
|
setTimeout(() => { |
|
|
|
|
this.$forceUpdate() |
|
|
|
|
}, 10) |
|
|
|
|
bool && setTimeout(() => { |
|
|
|
|
this.$forceUpdate() |
|
|
|
|
}, 10) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 切换tab选项卡 |
|
|
|
|
handleTabs(key) { |
|
|
|
|
handleTabs (key) { |
|
|
|
|
this.tabKey = key |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 刷新分类列表 |
|
|
|
|
onReloadCategoryList() { |
|
|
|
|
onReloadCategoryList () { |
|
|
|
|
this.isLoading = true |
|
|
|
|
GoodsModel.getCategoryList().then(() => { |
|
|
|
|
this.isLoading = false |
|
|
|
@ -574,7 +630,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 刷新服务与承诺列表 |
|
|
|
|
onReloadServiceList() { |
|
|
|
|
onReloadServiceList () { |
|
|
|
|
this.isLoading = true |
|
|
|
|
GoodsModel.getServiceList().then(() => { |
|
|
|
|
this.isLoading = false |
|
|
|
@ -582,7 +638,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 刷新配送模板列表 |
|
|
|
|
onReloadDeliveryList() { |
|
|
|
|
onReloadDeliveryList () { |
|
|
|
|
this.isLoading = true |
|
|
|
|
GoodsModel.getDeliveryList().then(() => { |
|
|
|
|
this.isLoading = false |
|
|
|
@ -590,12 +646,10 @@ export default { |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 确认按钮 |
|
|
|
|
handleSubmit(e) { |
|
|
|
|
handleSubmit (e) { |
|
|
|
|
e.preventDefault() |
|
|
|
|
// 表单验证 |
|
|
|
|
const { |
|
|
|
|
form: { validateFields }, |
|
|
|
|
} = this |
|
|
|
|
const { form: { validateFields }, } = this |
|
|
|
|
validateFields((errors, values) => { |
|
|
|
|
// 定位到错误的tab选项卡 |
|
|
|
|
if (errors) { |
|
|
|
@ -612,8 +666,9 @@ export default { |
|
|
|
|
// 记录多规格数据 |
|
|
|
|
values.specData = MultiSpec.getFromSpecData() |
|
|
|
|
} |
|
|
|
|
values.rules = ruleList |
|
|
|
|
// 整理商品分类ID集 |
|
|
|
|
values.categoryIds = values.categorys.map((item) => item.value) |
|
|
|
|
values.categoryIds = values.categorys.map(item => item.value) |
|
|
|
|
delete values.categorys |
|
|
|
|
// 提交到后端api |
|
|
|
|
this.onFormSubmit(values) |
|
|
|
@ -622,24 +677,14 @@ export default { |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 定位到错误的tab选项卡 |
|
|
|
|
onTargetTabError(errors) { |
|
|
|
|
onTargetTabError (errors) { |
|
|
|
|
// 表单字段与tabKey对应关系 |
|
|
|
|
// 只需要必填字段就可 |
|
|
|
|
const tabsFieldsMap = [ |
|
|
|
|
[ |
|
|
|
|
'goods_type', |
|
|
|
|
'goods_name', |
|
|
|
|
'categorys', |
|
|
|
|
'imagesIds', |
|
|
|
|
'delivery_id', |
|
|
|
|
'is_ind_delivery_type', |
|
|
|
|
'delivery_type', |
|
|
|
|
'is_brand', |
|
|
|
|
'is_in_store', |
|
|
|
|
], |
|
|
|
|
['goods_type', 'goods_name', 'categorys', 'imagesIds', 'delivery_id', 'is_ind_delivery_type', 'delivery_type', 'is_brand', 'is_in_store'], |
|
|
|
|
['spec_type', 'goods_price', 'is_restrict', 'restrict_total', 'restrict_single', 'cost_price'], |
|
|
|
|
['content'], |
|
|
|
|
['alone_grade_equity', 'first_money', 'second_money', 'third_money'], |
|
|
|
|
['alone_grade_equity', 'first_money', 'second_money', 'third_money'] |
|
|
|
|
] |
|
|
|
|
const field = Object.keys(errors).shift() |
|
|
|
|
for (const key in tabsFieldsMap) { |
|
|
|
@ -651,11 +696,11 @@ export default { |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 提交到后端api |
|
|
|
|
onFormSubmit(values) { |
|
|
|
|
onFormSubmit (values) { |
|
|
|
|
this.isLoading = true |
|
|
|
|
this.isBtnLoading = true |
|
|
|
|
GoodsApi.edit({ goodsId: this.goodsId, form: values }) |
|
|
|
|
.then((result) => { |
|
|
|
|
.then(result => { |
|
|
|
|
// 显示提示信息 |
|
|
|
|
this.$message.success(result.message, 1.5) |
|
|
|
|
// 跳转到列表页 |
|
|
|
@ -666,11 +711,92 @@ export default { |
|
|
|
|
.catch(() => { |
|
|
|
|
this.isBtnLoading = false |
|
|
|
|
}) |
|
|
|
|
.finally(() => (this.isLoading = false)) |
|
|
|
|
.finally(() => this.isLoading = false) |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 新增记录 |
|
|
|
|
handleAdd() { |
|
|
|
|
const index = this.ruleList.length |
|
|
|
|
const newItem = { ...defaultItem, key: index } |
|
|
|
|
// 排除的城市id集(已存在的城市id集) |
|
|
|
|
const excludedCityIds = this.getExcludedCityIds() |
|
|
|
|
if (excludedCityIds.length === this.citysCount) { |
|
|
|
|
this.$message.error('已选择了所有的区域', 0.8) |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
// 显示选择地区对话框 |
|
|
|
|
this.handleAreasModal('add', index, newItem, excludedCityIds) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 编辑记录 |
|
|
|
|
handleEdit(index, item) { |
|
|
|
|
// 排除的城市id集(已存在的城市id集) |
|
|
|
|
const excludedCityIds = this.getExcludedCityIds() |
|
|
|
|
// 显示选择地区对话框 |
|
|
|
|
this.handleAreasModal('edit', index, item, excludedCityIds) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 选择地区后的回调 |
|
|
|
|
handleAreaSubmit(result) { |
|
|
|
|
const { |
|
|
|
|
custom: { scene, item }, |
|
|
|
|
} = result |
|
|
|
|
item.region = result.selectedCityIds |
|
|
|
|
item.region_text = result.selectedText |
|
|
|
|
if (scene === 'add') { |
|
|
|
|
this.ruleList.push(item) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 排除的城市id集(已存在的城市id集) |
|
|
|
|
getExcludedCityIds() { |
|
|
|
|
const excludedCityIds = [] |
|
|
|
|
this.ruleList.forEach((item) => { |
|
|
|
|
item.region.forEach((cityId) => { |
|
|
|
|
excludedCityIds.push(cityId) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
return excludedCityIds |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 显示选择地区对话框 |
|
|
|
|
handleAreasModal(scene, index, item, excludedCityIds) { |
|
|
|
|
this.$refs.AreasModal.handle({ scene, index, item }, item.region, excludedCityIds) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 删除记录 |
|
|
|
|
handleDelete(index) { |
|
|
|
|
const app = this |
|
|
|
|
const modal = this.$confirm({ |
|
|
|
|
title: '您确定要删除该记录吗?', |
|
|
|
|
onOk() { |
|
|
|
|
app.ruleList.splice(index, 1) |
|
|
|
|
modal.destroy() |
|
|
|
|
}, |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<style lang="less" scoped> |
|
|
|
|
@import './style.less'; |
|
|
|
|
.table-rules { |
|
|
|
|
.operation { |
|
|
|
|
text-align: right; |
|
|
|
|
a { |
|
|
|
|
font-size: @font-size-base; |
|
|
|
|
margin-left: 6px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
color: #505050; |
|
|
|
|
white-space: normal; |
|
|
|
|
.city-name { |
|
|
|
|
font-size: 12.5px; |
|
|
|
|
color: #7b7b7b; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|