综合办公系统
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.

budgetInfo.vue 530B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div>
  3. <view class="section">
  4. <view class="section-title">
  5. <view class="line"></view>
  6. <text>项目预算表</text>
  7. </view>
  8. </view>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. budgetList: [],
  16. budgetTotal: 0,
  17. budgetPage: 1,
  18. budgetLimit: 10
  19. }
  20. },
  21. created() {
  22. this.getBudgetList()
  23. },
  24. methods: {
  25. getBudgetList() {
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. </style>