|
|
<template>
|
|
|
<modal-import ref="importSeller" title="导入库存" :trans-params="transParams" @import="importSeller">
|
|
|
<div slot="remark">
|
|
|
<Form-item label="商品类型:">
|
|
|
<Radio-group v-model="storageType.model">
|
|
|
<Radio v-for="option in storageType.options" :key="option.value" :label="option.label"></Radio>
|
|
|
</Radio-group>
|
|
|
</Form-item>
|
|
|
<!-- <Form-item label="商品类型:">-->
|
|
|
<!-- <Radio-group v-model="storageType.model">-->
|
|
|
<!-- <Radio v-for="option in storageType.options" :key="option.value" :label="option.label"></Radio>-->
|
|
|
<!-- </Radio-group>-->
|
|
|
<!-- </Form-item>-->
|
|
|
<Form-item label="说明:">
|
|
|
<div style="display: inline-block">
|
|
|
<ul>
|
...
|
...
|
@@ -92,20 +92,6 @@ export default { |
|
|
skuNotExist: null,
|
|
|
storageNumError: null,
|
|
|
failList: null,
|
|
|
storageType: {
|
|
|
label: '商品类型',
|
|
|
model: 3,
|
|
|
options: [
|
|
|
{
|
|
|
value: 3,
|
|
|
label: 'JIT',
|
|
|
},
|
|
|
{
|
|
|
value: 6,
|
|
|
label: '一件代发',
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
};
|
|
|
},
|
|
|
created() {
|
...
|
...
|
@@ -181,20 +167,6 @@ export default { |
|
|
this.skuNotExist = null;
|
|
|
this.storageNumError = null;
|
|
|
this.failList = null;
|
|
|
this.storageType = {
|
|
|
label: '商品类型',
|
|
|
model: 3,
|
|
|
options: [
|
|
|
{
|
|
|
value: 3,
|
|
|
label: 'JIT',
|
|
|
},
|
|
|
{
|
|
|
value: 6,
|
|
|
label: '一件代发',
|
|
|
},
|
|
|
],
|
|
|
};
|
|
|
},
|
|
|
},
|
|
|
};
|
...
|
...
|
|