Commit c917d8e6 authored by 黄奎's avatar 黄奎

页面修改

parent fc24eb4b
...@@ -666,7 +666,8 @@ ...@@ -666,7 +666,8 @@
layout="total,prev, pager, next, jumper" :page-size="msg.pageSize" :total="total"> layout="total,prev, pager, next, jumper" :page-size="msg.pageSize" :total="total">
</el-pagination> </el-pagination>
<div class="buy-box" v-show="isShowTeamOrder"> <div class="buy-box" v-show="isShowTeamOrder">
<orderForm @success="reSearchPage" @close="closeForm" :priceObj="teamInfo"></orderForm> <orderForm @success="reSearchPage" @close="closeForm" :PTCID="teamInfo.TCID" :POrderId="0" :PBranchId="0" :PProductType="2">
</orderForm>
</div> </div>
</div> </div>
</template> </template>
...@@ -702,25 +703,23 @@ ...@@ -702,25 +703,23 @@
}, },
dataList: [], dataList: [],
isShowTeamOrder: false, //是否显示订单弹窗 isShowTeamOrder: false, //是否显示订单弹窗
teamInfo: {},//团队信息 teamInfo: {}, //团队信息
}; };
}, },
components: { components: {
orderForm: orderForm orderForm: orderForm
}, },
methods: { methods: {
//刷新页面 //刷新页面
reSearchPage() { reSearchPage() {
this.isShowTeamOrder = false; this.isShowTeamOrder = false;
this.teamInfo={}; this.teamInfo = {};
this.getList(); this.getList();
}, },
//关闭窗口 //关闭窗口
closeForm() closeForm() {
{ this.isShowTeamOrder = false;
this.isShowTeamOrder=false; this.teamInfo = {};
this.teamInfo={};
}, },
//跳转到报名清单 //跳转到报名清单
gotoOrder(item) { gotoOrder(item) {
...@@ -744,8 +743,8 @@ ...@@ -744,8 +743,8 @@
} }
}, },
goBuy(obj) { goBuy(obj) {
this.isShowTeamOrder = true;
this.teamInfo = obj; this.teamInfo = obj;
this.isShowTeamOrder = true;
}, },
getList() { getList() {
this.loading = true; this.loading = true;
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment