|
@@ -147,6 +147,12 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item v-if="dataForm.deliveryTypes.includes('1')" label="快递方式">
|
|
|
+ <el-radio-group v-model="dataForm.freightType">
|
|
|
+ <el-radio :label="'0'">不包邮</el-radio>
|
|
|
+ <el-radio :label="'1'">包邮</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
<!-- <el-form-item v-if="dataForm.deliveryTypes==0" label="商品所在地" prop="location">
|
|
|
<el-select v-model="dataForm.location" filterable placeholder="请选择" style="width: 350px">
|
|
|
<el-option :key="item.dictLabel" v-for="item in locationList" :label="item.dictLabel" :value="item.dictLabel">
|
|
@@ -277,6 +283,7 @@ export default {
|
|
|
hisPrice:undefined,
|
|
|
actualStock: undefined,
|
|
|
deliveryTypes: [],
|
|
|
+ freightType:'0',
|
|
|
// location: undefined,
|
|
|
images: [],
|
|
|
imgIds: '',
|
|
@@ -405,6 +412,7 @@ export default {
|
|
|
hisPrice:undefined,
|
|
|
actualStock: undefined,
|
|
|
deliveryTypes: [],
|
|
|
+ freightType:'0',
|
|
|
// location: undefined,
|
|
|
images: [],
|
|
|
imgIds: '',
|