|
@@ -20,7 +20,7 @@
|
|
|
v-for="item in tabOptions"
|
|
v-for="item in tabOptions"
|
|
|
:key="item.key"
|
|
:key="item.key"
|
|
|
:class="{ active: activeComp == item.key }"
|
|
:class="{ active: activeComp == item.key }"
|
|
|
- @click="activeComp = item.key"
|
|
|
|
|
|
|
+ @click="handleTag(item.key)"
|
|
|
>
|
|
>
|
|
|
{{ item.name }}
|
|
{{ item.name }}
|
|
|
</li>
|
|
</li>
|
|
@@ -232,7 +232,7 @@
|
|
|
<!--入库详情-->
|
|
<!--入库详情-->
|
|
|
<innerBoundDetails
|
|
<innerBoundDetails
|
|
|
v-if="
|
|
v-if="
|
|
|
- activeComp === 'store' &&
|
|
|
|
|
|
|
+ activeComp == 'store' &&
|
|
|
form.status == 2 &&
|
|
form.status == 2 &&
|
|
|
['3', '4', '5'].includes(form.sourceType)
|
|
['3', '4', '5'].includes(form.sourceType)
|
|
|
"
|
|
"
|
|
@@ -528,7 +528,7 @@
|
|
|
this.activeComp = val;
|
|
this.activeComp = val;
|
|
|
if (val == 'store') {
|
|
if (val == 'store') {
|
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
|
- this.$refs.innerBoundDetailsRef._getInfo(this.form.code);
|
|
|
|
|
|
|
+ this.$refs.innerBoundDetailsRef._getInfo(this.form.planCode);
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|