1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <view class="content">
- <fxyk-navbar :isSearch="false" title=""></fxyk-navbar>
- <fxyk-search :paddingX="40" :paddingY="20" backgroundColor="#F7FBFF"></fxyk-search>
- <view v-for="(item,index) in ongoingData" :key="index" @click="jump_path">
- <fxyk-projectCard style="box-shadow: 0rpx 6rpx 13rpx rgba(0, 0, 0, 0.16);" :projectData="item" textAndIconColor="#000" bgColor="#fff"></fxyk-projectCard>
- <!-- <u-gap height="15" bg-color="#bbb"></u-gap> -->
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- projectData: [
- {'status': 2,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 1,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 1,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 1,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 1,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 3,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 3,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 3,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'},
- {'status': 3,'name':'辽宁中润农业发展有限公司','number':'121514551Fs15','content':'描述'}
- ],
- ongoingData: []
- }
- },
- onLoad(option) {
- let status = parseInt(option.status)
- this.get_ongoing_data(status)
- },
- methods: {
- // 获取数据
- get_ongoing_data(value) {
- this.ongoingData = this.projectData.filter(item => item.status === value)
- },
- // 跳转到节点办理页
- jump_path() {
- uni.navigateTo({
- url: '/pages/index/ongoing/detail'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- width: 100%;
- height: 100%;
- min-height: 100vh;
- background-color: $yk-bg-color;
- }
- .content {
- width: 100%;
- height: 100%;
- min-height: 100vh;
- background-color: $yk-bg-color;
- }
- </style>
|