123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <list-test :bindData="siteListData" :bindUrl="linkUrl" :bindIcon="linkIcon" :bindNum="num" :bindType="type">
- </list-test>
- </template>
- <script>
- import json from '../../data/json.js';
- export default {
- data() {
- return {
- type: 0,
- linkUrl: '/pages/alarmingList/alarmingList',
- linkIcon:'../../static/site-icon-alarm.png',
- siteListData: json.siteListData,
- num:' 共3个未处理告警'
- };
- },
- onPullDownRefresh() {
- console.log('refresh');
- setTimeout(function() {
- uni.stopPullDownRefresh();
- }, 1000);
- },
- computed: {
-
- },
- mounted() {
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|