|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
<!-- 页面主体内容 -->
|
|
|
- <div class="planAddContent" v-show="contentShow">
|
|
|
+ <div class="planAddContent">
|
|
|
<Card style="width:100%" :bordered="false" :dis-hover="true">
|
|
|
<p slot="title">申购计划详情</p>
|
|
|
<div slot="extra">
|
|
@@ -304,7 +304,9 @@
|
|
|
</Modal>
|
|
|
</div>
|
|
|
<!-- 计划明细新增 -->
|
|
|
- <planMxAdd ref="add" @plAdd="plAdd" @return="contentShow = true" v-show="!contentShow" />
|
|
|
+ <Modal v-model="contentShow" title="修改密码" width = "1600px">
|
|
|
+ <planMxAdd ref="add" @plAdd="plAdd"/>
|
|
|
+ </Modal>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -326,6 +328,7 @@ export default {
|
|
|
props: ["ssqyList", "cgyList"],
|
|
|
data() {
|
|
|
return {
|
|
|
+ planMxAddvisible: false,
|
|
|
id: "",
|
|
|
spinShow: false,
|
|
|
contentShow: true,
|
|
@@ -748,7 +751,7 @@ export default {
|
|
|
},
|
|
|
//明细弹窗
|
|
|
addMxShow() {
|
|
|
- this.contentShow = false;
|
|
|
+ this.contentShow = true;
|
|
|
this.$refs.add.projectId = this.form.ssxm;
|
|
|
this.$refs.add.documentNo = this.form.jhdjh;
|
|
|
this.$refs.add.getTableData();
|