This commit is contained in:
shengchanzhe 2023-11-05 16:12:52 +08:00
parent c0b9dc0c68
commit 57ef10088c
4 changed files with 13 additions and 10 deletions

View File

@ -6,6 +6,9 @@ export function getCityCloundShop(data) {
export function cloudWarehouse(data) { export function cloudWarehouse(data) {
return request.get("store/product/cloudWarehouse", data); return request.get("store/product/cloudWarehouse", data);
} }
export function townCloud(data) {
return request.get("store/product/town_cloud", data);
}
/** /**
* 供销市场标签 * 供销市场标签
* @returns {*} * @returns {*}

View File

@ -2,8 +2,8 @@
"name" : "惠农生活", "name" : "惠农生活",
"appid" : "__UNI__3A527D1", "appid" : "__UNI__3A527D1",
"description" : "", "description" : "",
"versionName" : "1.5.4", "versionName" : "1.5.5",
"versionCode" : 154, "versionCode" : 155,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -30,9 +30,9 @@
获取定位失败,请手动选择 获取定位失败,请手动选择
</view> --> </view> -->
</view> </view>
<view class="" @click="getPositionFn"> <!-- <view class="" @click="getPositionFn">
获取定位失败,点击允许 获取定位失败,点击允许
</view> </view> -->
<navigator url="/pages/chat/customer_list/index?type=0" hover-class="none"> <navigator url="/pages/chat/customer_list/index?type=0" hover-class="none">
<view class="iconfont icon-xiaoxi" style="color:#fff;"> </view> <view class="iconfont icon-xiaoxi" style="color:#fff;"> </view>
</navigator> </navigator>
@ -45,9 +45,9 @@
</zbpSwiper> </zbpSwiper>
<view class="zhibo" @click="zhibo"> <!-- <view class="zhibo" @click="zhibo">
<image src="@/static/img/zhi.png" mode="aspectFit"></image> <image src="@/static/img/zhi.png" mode="aspectFit"></image>
</view> </view> -->
<view class="tabs_wrapper"> <view class="tabs_wrapper">
<!-- <u-tabs :list="tabsData.list" @click="tabsChange" lineColor="#F84221" keyName="cate_name" <!-- <u-tabs :list="tabsData.list" @click="tabsChange" lineColor="#F84221" keyName="cate_name"

View File

@ -401,7 +401,7 @@
<script> <script>
import { import {
cloudWarehouse, townCloud,
getCityCloundShop getCityCloundShop
} from '@/api/requesta.js' } from '@/api/requesta.js'
import { import {
@ -547,7 +547,7 @@
this.status = "loading" this.status = "loading"
this.page_num += 1 this.page_num += 1
// this.flag = true // this.flag = true
cloudWarehouse({ townCloud({
street_code: this.street_code, street_code: this.street_code,
category_id: this.cloudList[this.current]?.category_id || "", category_id: this.cloudList[this.current]?.category_id || "",
order: this.type, order: this.type,
@ -829,7 +829,7 @@
this.showLoading = true this.showLoading = true
this.status = "loading" this.status = "loading"
this.page_num = 1; this.page_num = 1;
cloudWarehouse({ townCloud({
street_code: this.street_code, street_code: this.street_code,
category_id: this.cloudList[this.current]?.category_id || "", category_id: this.cloudList[this.current]?.category_id || "",
order: this.type, order: this.type,
@ -930,7 +930,7 @@
street_code: this.street_code street_code: this.street_code
}) })
this.cloudList = data this.cloudList = data
cloudWarehouse({ townCloud({
street_code: this.street_code, street_code: this.street_code,
category_id: this.cloudList[this.current].category_id category_id: this.cloudList[this.current].category_id
}).then(res => { }).then(res => {