|
|
|
@ -59,7 +59,7 @@
|
|
|
|
|
</i-input>
|
|
|
|
|
</FormItem>
|
|
|
|
|
<FormItem label="零售公司" prop="parentId">
|
|
|
|
|
<Select v-model="formValidate.parentId"
|
|
|
|
|
<Select filterable clearable v-model="formValidate.parentId"
|
|
|
|
|
placeholder="选择零售公司">
|
|
|
|
|
<Option v-for="item in companyList" :value="item.id" :key="item.id">{{ item.name }}</Option>
|
|
|
|
|
</Select>
|
|
|
|
@ -188,7 +188,7 @@
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
show: function (index) {
|
|
|
|
|
show: function () {
|
|
|
|
|
this.isShow = true;
|
|
|
|
|
},
|
|
|
|
|
hide: function () {
|
|
|
|
@ -269,7 +269,7 @@
|
|
|
|
|
that.data1 = [];
|
|
|
|
|
for (let i=0;i<data.results.records.length;i++) {
|
|
|
|
|
let item = data.results.records[i];
|
|
|
|
|
item.index = i+ that.pageNum * that.pageSize;
|
|
|
|
|
item.index = that.pageSize * (that.pageNum-1) + i+1 ;
|
|
|
|
|
that.data1.push(item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|