|
@@ -229,14 +229,14 @@
|
|
|
</template>
|
|
|
</ex-table>
|
|
|
|
|
|
- <el-dialog
|
|
|
+ <!-- <el-dialog
|
|
|
title="当前可用库存"
|
|
|
:visible.sync="centerDialogVisible"
|
|
|
width="30%"
|
|
|
center
|
|
|
>
|
|
|
<span>等待数据返回</span>
|
|
|
- </el-dialog>
|
|
|
+ </el-dialog> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -251,7 +251,7 @@ export default {
|
|
|
mixins: [mixinPage, resToken],
|
|
|
data() {
|
|
|
return {
|
|
|
- centerDialogVisible: false,
|
|
|
+ // centerDialogVisible: false,
|
|
|
loading: true,
|
|
|
//咨询类型
|
|
|
statusArr: [
|
|
@@ -395,11 +395,13 @@ export default {
|
|
|
}
|
|
|
|
|
|
let ids = [];
|
|
|
+ let plat_code = this.changeList[0].plat_code;
|
|
|
this.changeList.forEach((item)=>{
|
|
|
ids.push(item.id)
|
|
|
})
|
|
|
let model = {
|
|
|
- ids
|
|
|
+ ids,
|
|
|
+ plat_code
|
|
|
};
|
|
|
let res = await asyncRequest.relationstockbatch(model);
|
|
|
if (res && res.code === 0) {
|
|
@@ -407,7 +409,7 @@ export default {
|
|
|
this.$message.success(res.message);
|
|
|
this.searchList()
|
|
|
//成功展示弹窗
|
|
|
- this.centerDialogVisible = true;
|
|
|
+ // this.centerDialogVisible = true;
|
|
|
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|