-
+
{{ item.title }}
@@ -27,8 +99,9 @@
- 延长仓储
- 保鲜储存
+ 高品质
+ 杀菌灭毒
+ 绿色
@@ -39,9 +112,9 @@
报价
- ¥{{ item.price }}/间/月
+ ¥{{ item.price }}/kg
-
+
联系卖家
@@ -54,7 +127,7 @@
-
+
@@ -69,6 +142,9 @@ import Common from './components/common.vue';
const route = useRoute();
const router = useRouter();
+const tab1 = reactive(['叶菜类', '豆菜类', '根茎类', '茄果菜类', '食用菌类', '其他类蔬菜']);
+const tab2 = reactive(['甘蔗', '热带水果', '其他类水果']);
+const tab3 = reactive(['水产', '其他类']);
const state = reactive({
menus: warehouseLogisticsRoutes[0].children,
query: {
@@ -76,78 +152,226 @@ const state = reactive({
},
data: [
{
- imageUrl: '/storage1.jpg',
- title: '果蔬保鲜仓储',
- description: '绿鲜蔬选果蔬仓储中心 ',
+ title: '蔬菜分拣服务',
+ description: '绿鲜甄选蔬菜分拣中心 ',
location: '临沧市-耿马县',
- price: '600.0',
+ price: '150',
rank: '1',
+ imageUrl: 'images/vegetable.png',
},
{
- imageUrl: '/storage2.jpg',
- title: '果蔬保鲜仓储',
- description: '绿鲜蔬选果蔬仓储中心',
+ title: '水果分拣服务',
+ description: '果韵鲜享分拣站',
location: '临沧市-耿马县',
- price: '600.0',
+ price: '150',
rank: '2',
+ imageUrl: 'images/fruit.png',
},
{
- imageUrl: '/storage3.jpg',
- title: '果蔬保鲜仓储',
- description: '绿鲜蔬选果蔬仓储中心 ',
+ title: '水果分拣服务',
+ description: '好果分拣站 ',
location: '临沧市-耿马县',
- price: '600.0',
+ price: '150',
rank: '3',
+ imageUrl: 'images/fruit.png',
},
{
- imageUrl: '/storage3.jpg',
- title: '果蔬保鲜仓储',
- description: '绿鲜蔬选果蔬仓储中心 ',
+ title: '水果分拣服务',
+ description: '果美分拣站 ',
location: '临沧市-耿马县',
- price: '600.0',
+ price: '150',
rank: '',
+ imageUrl: 'images/fruit.png',
},
{
- imageUrl: '/storage3.jpg',
- title: '果蔬保鲜仓储',
- description: '绿鲜蔬选果蔬仓储中心 ',
+ title: '水果分拣服务',
+ description: '好果存分拣站 ',
location: '临沧市-耿马县',
- price: '600.0',
- rank: '',
- },
- {
- imageUrl: '/storage3.jpg',
- title: '果蔬保鲜仓储',
- description: '绿鲜蔬选果蔬仓储中心 ',
- location: '临沧市-耿马县',
- price: '600.0',
+ price: '150',
rank: '',
+ imageUrl: 'images/fruit.png',
},
],
});
-const currentTab = ref(0);
+const currentTab1 = ref(0);
+const currentTab2 = ref(0);
+const currentTab3 = ref(0);
+const dialogVisible = ref(false);
+const formRef = ref(null);
+
+const form = reactive({
+ quantity: '',
+ title: '',
+ phone: '',
+ name: '',
+});
+
+const diotext = ref('');
+const diodescription = ref('');
+
+const goDei = (data) => {
+ diodescription.value = data.description;
+ diotext.value = data.title;
+ dialogVisible.value = true;
+};
+
+const handleSubmit = () => {
+ formRef.value.validate((valid) => {
+ if (valid) {
+ console.log('提交数据:', form);
+ dialogVisible.value = false;
+ }
+ });
+};
const currentChange = (current) => {
state.query.current = current;
};
const toLink = (row) => {
- router.push({
- path: '/sub-operation-service/warehouse-detail',
- query: { id: row?.id ?? '100' },
- });
+ // router.push({
+ // path: '/sub-operation-service/warehouse-detail',
+ // query: { id: row?.id ?? '100' },
+ // });
};