Browse Source

超出省略

master
是小王呀\24601 1 year ago
parent
commit
01c248ba3c
  1. 15
      yifengdian-company-report/src/router/index.js
  2. 58
      yifengdian-company-report/src/views/bazaar.vue
  3. 10
      yifengdian-company-report/src/views/policy.vue
  4. 5
      yifengdian-company-report/src/views/policyDetails.vue
  5. 7
      yifengdian-company-report/src/views/vegetable.vue

15
yifengdian-company-report/src/router/index.js

@ -12,11 +12,24 @@ const router = new VueRouter({
})
//全局路由守卫
router.beforeEach((to,from,next)=>{
console.log(to,from);
if(to.fullPath=="/vegetableDetails"){
if(from.fullPath=="/login"){
console.log("155");
next()
}
else(
next("/login")
)
}
else{
next()
}
})
router.afterEach((to,from)=>{
console.log(to,from);
})
export default router

58
yifengdian-company-report/src/views/bazaar.vue

@ -86,64 +86,8 @@ export default {
showDate: false,
currentDate: null,
priceList: [
{
name: '哇啊哇擦哇啊哇擦哇啊哇擦哇啊哇擦',
price: 100,
old: '1.1'
},
{
name: '土豆',
price: 100,
old: '1.1'
},
{
name: '土豆',
price: 100,
old: '1.1'
},
{
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
}, {
name: '土豆',
price: 100,
old: '1.1'
},
],
collectList: ['白菜', '白菜', '白菜', '白菜', '白菜', '白菜', '豆角', '西红柿', '西红柿', '黄瓜', '茄子', '洋葱', '彩椒'],
collectList: [],
closeable: false,
showAdd: false,
checked: [],

10
yifengdian-company-report/src/views/policy.vue

@ -34,16 +34,6 @@ export default {
return {
searchKey: '',
policyList: [
{
title: "市农业农村局开展智慧农业、设施农业建设工作指导",
source: "青岛市人民政府",
date: "2024-03-14"
},
{
title: "青岛市人民政府关于强龙头补链条兴业态树品牌加快推进农业产业化发展的意见",
source: "青岛市人民政府",
date: "2020-12-18"
}
]
};
},

5
yifengdian-company-report/src/views/policyDetails.vue

@ -33,10 +33,7 @@
placeOrgName: null,
password: null,
collection:false,
ArrayList:{title:"青岛市人民政府关于强龙头补链条兴业态树品牌加快推进农业产业化发展的意见",
source: "青岛市人民政府",
date: "2024-03-14",
context:" <B>各区、市人民政府,青岛西海岸新区管委,市 政府各部门,市直各单位: 为深入贯彻党的二十 大关于加快建设农业强国的部署要"
ArrayList:{
}
};
},

7
yifengdian-company-report/src/views/vegetable.vue

@ -9,9 +9,10 @@
<van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="onLoad">
<div v-for="(item, index) in numList" :key="index" class="item m-top10">
<div class="unit m-top15">{{ item.placeOrgName }}</div>
<div class="m-top12"> <span class="label">种植时间</span> <span class="value">{{ item.growTime }}</span></div>
<div class="m-top12"> <span class="label">上市时间</span> <span class="value">{{ item.marketTime }}</span></div>
<div class="m-top12"> <span class="label">产量</span> <span class="value yellow">{{ item.output }}</span> </div>
<div class="van-ellipsis m-top12">种植时间{{ item.growTime }}</div>
<div class="van-ellipsis m-top12">上市时间{{ item.marketTime }}</div>
<div class="van-ellipsis m-top12">产量{{item.output}}</div>
</div>
</van-list>
</div>

Loading…
Cancel
Save