You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
962 B
48 lines
962 B
<template>
|
|
<div class="app-container">
|
|
<!-- 标题按钮部分开始 -->
|
|
<div class="tab-header webtop">
|
|
<!-- 标题 -->
|
|
<div>客户中心-信息查询</div>
|
|
<!-- start 添加修改按钮 -->
|
|
<div />
|
|
<!-- end 添加修改按钮 -->
|
|
<!-- end 详情按钮 -->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PurchaseApplicationManagementInfo',
|
|
data() {
|
|
return {
|
|
submitdisabled: false,
|
|
viewTitle: '综合数据上报',
|
|
tableKey: 0,
|
|
index: 0,
|
|
totalQuantity: '', // 合计数量
|
|
amountInTotal: '', // 合计金额
|
|
formobj: {},
|
|
rules: {}
|
|
}
|
|
},
|
|
created() {},
|
|
methods: {
|
|
handleReturn() {
|
|
this.formobj = {}
|
|
this.$refs['form_obj'].resetFields()
|
|
this.$emit('doback')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
|