bug(custom): eCX-7430

This commit is contained in:
zhangjing1
2025-11-17 11:39:36 +08:00
parent 6df724cace
commit cf131f7cf3
2 changed files with 25 additions and 45 deletions

16
.env
View File

@@ -1,16 +1,16 @@
APP_BASE_URL=https://demo-ecshopx.ishopex.cn/api/h5app/wxapp
APP_WEBSOCKET=wss://demo-ecshopx.ishopex.cn/ws
APP_COMPANY_ID=38
APP_PLATFORM=standard
APP_CUSTOM_SERVER=https://ecshopx-h5.ex-sandbox.com/
APP_BASE_URL=https://{域名}/api/h5app/wxapp
APP_WEBSOCKET=wss://{域名}/ws
APP_COMPANY_ID={company_id}
APP_PLATFORM={version}
APP_CUSTOM_SERVER=https://{域名}
APP_HOME_PAGE=/pages/index
APP_TRACK=youshu
APP_YOUSHU_TOKEN=bi281e87ab2424481a
APP_ID=wx1e25e45145b70faa
APP_MAP_KEY=PSPBZ-KQ5CW-CSGRF-ON2S4-K2HQJ-XEBQG
APP_ID={小程序APPID}
APP_MAP_KEY={高德地图key}
APP_MAP_NAME=oneX新零售门店定位
APP_IMAGE_CDN=https://b-img-cdn.yuanyuanke.cn/ecshopx-vshop
APP_DIANWU_URL=https://demo-ecshopx-dianwu.shopex123.com
APP_DIANWU_URL=
APP_MERCHANT_URL=
APP_ADAPAY=

View File

@@ -427,44 +427,24 @@ function ItemList() {
})}
</View>
</View>
</SpScrollView>
{/* Sku选择器 */}
<MSpSkuSelect
open={skuPanelOpen}
type={selectType}
info={info}
onClose={() => {
setState((draft) => {
draft.skuPanelOpen = false
})
}}
onChange={(skuText, curItem) => {
setState((draft) => {
draft.skuText = skuText
draft.curItem = curItem
})
}}
/>
{/* <SpDrawer
show={show}
onClose={() => {
setState(v => {
v.show = false;
});
}}
onConfirm={onConfirmBrand}
onReset={onResetBrand}
>
<View className="brand-title">品牌</View>
<SpSelect
multiple
info={brandList}
value={brandSelect}
onChange={onChangeBrand}
{/* Sku选择器 */}
<MSpSkuSelect
open={skuPanelOpen}
type={selectType}
info={info}
onClose={() => {
setState((draft) => {
draft.skuPanelOpen = false
})
}}
onChange={(skuText, curItem) => {
setState((draft) => {
draft.skuText = skuText
draft.curItem = curItem
})
}}
/>
</SpDrawer> */}
</SpScrollView>
</SpPage>
)
}