Blame view

src/components/contract/contractDetailFeeDemo.vue 483 Bytes
b25b036d   wuxw   v1.9 优化日期
1
  <template>
fc9bd1db   wuxw   开发完成合同详情
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
    <div>
      <contract-detail-fee ref="contractDetailFee"></contract-detail-fee>
      <el-button @click="switchContract">Switch Contract</el-button>
    </div>
  </template>
  
  <script>
  import ContractDetailFee from '@/components/contract/contractDetailFee'
  
  export default {
    components: {
      ContractDetailFee
    },
    methods: {
      switchContract() {
        this.$refs.contractDetailFee._loadContractDetailFeeData({
          contractId: '12345'
        })
      }
    }
  }
  </script>