feat(隐藏色卡与剪样功能):

This commit is contained in:
czm 2023-02-23 20:24:41 +08:00
parent 94ea60ba20
commit 039c96b920
3 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
// export const BASE_URL = CURRENT_BASE_URL
export const BASE_URL = CURRENT_BASE_URL
// export const BASE_URL = `http://192.168.0.75:50001/lymarket`
// export const BASE_URL = `http://192.168.0.89:50001/lymarket`
// export const BASE_URL = `http://10.0.0.5:50001/lymarket`
@ -12,7 +12,7 @@
// export const BASE_URL = 'https://dev.zzfzyc.com/lymarket' // 开发环境
// export const BASE_URL = 'https://www.zzfzyc.com/lymarket' // 正式环境
// export const BASE_URL = `http://192.168.1.5:40001/lymarket` // 王霞
export const BASE_URL = 'http://192.168.1.7:50002/lymarket' // 添
// export const BASE_URL = 'http://192.168.1.7:50002/lymarket' // 添
// export const BASE_URL = 'http://192.168.1.28:50001/lymarket' // 婷
// export const BASE_URL = 'http://192.168.1.42:50002/lymarket' // 杰

View File

@ -237,6 +237,7 @@ const Details = (props: Params) => {
const { fetchData: colorCardFetchData } = GetColorCardOrderByProductApi()
const getColorCardData = async() => {
return alert.none('功能开发中')
const res = await colorCardFetchData({ product_id: productInfo.id })
if (res.data) {
res.data.count = 1
@ -249,6 +250,7 @@ const Details = (props: Params) => {
const [showColorSelect, setShowColorSelect] = useState(false)
const openColorSelect = () => {
return alert.none('功能开发中')
setShowColorSelect(true)
}

View File

@ -60,7 +60,7 @@ export default () => {
const menuList = [
{ label: '地址管理', icon: 'icon-dizhiguanli', callback: () => goLink('/pages/addressManager/index') },
{ label: '码单管理', icon: 'icon-mdgl', icon_status: 'local', callback: () => goLink('/pages/codeList/index') },
{ label: '色卡剪样', icon: 'icon-yanseduibi', callback: () => goLink('/pages/colorCardClipping/index') },
// { label: '色卡剪样', icon: 'icon-yanseduibi', callback: () => goLink('/pages/colorCardClipping/index') },
{ label: '颜色对比', icon: 'icon-yanseduibi', callback: () => goLink('/pages/sampleComparison/index') },
{ label: '我的客服', icon: 'icon-wodekefu', text: '7x24小时服务', callback: () => (set_customer_service_show(true)) },
]