🐞 fix(ID1001354): 【面料优选&内部小程序】【色卡剪样/领取色卡】--添加色卡后,点击返回键,没弹框提示
【【面料优选&内部小程序】【色卡剪样/领取色卡】--添加色卡后,点击返回键,没弹框提示】 https://www.tapd.cn/53459131/bugtrace/bugs/view/1153459131001001354
This commit is contained in:
parent
08b8627ec9
commit
1bfd170696
@ -37,6 +37,20 @@
|
|||||||
"query": "",
|
"query": "",
|
||||||
"launchMode": "default",
|
"launchMode": "default",
|
||||||
"scene": null
|
"scene": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"pathName": "pages/login/index",
|
||||||
|
"query": "",
|
||||||
|
"launchMode": "default",
|
||||||
|
"scene": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"pathName": "pages/getColorCard/addColorCard/index",
|
||||||
|
"query": "",
|
||||||
|
"launchMode": "default",
|
||||||
|
"scene": null
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ export const BASE_URL = CURRENT_BASE_URL
|
|||||||
// 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.42:50002/lymarket' // 杰
|
// export const BASE_URL = 'http://192.168.1.42:50002/lymarket' // 杰
|
||||||
// export const BASE_URL = `http://192.168.1.95:40001/lymarket` // 华
|
// export const BASE_URL = `http://192.168.1.95:40001/lymarket` // 华
|
||||||
// export const BASE_URL = 'http://192.168.1.28:50001/lymarket' // 婷
|
// export const BASE_URL = 'http://192.168.1.28:50002/lymarket' // 婷
|
||||||
|
|
||||||
// CDN
|
// CDN
|
||||||
// 生成密钥
|
// 生成密钥
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
export default {
|
export default {
|
||||||
navigationBarTitleText: '领取色卡',
|
navigationBarTitleText: '领取色卡',
|
||||||
|
disableSwipeBack: true,
|
||||||
|
navigationStyle: 'custom',
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,6 +4,9 @@ page {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column nowrap;
|
flex-flow: column nowrap;
|
||||||
}
|
}
|
||||||
|
.backIcon {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
.layoutBlock {
|
.layoutBlock {
|
||||||
padding: 24px 34px;
|
padding: 24px 34px;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -17,6 +17,7 @@ import Remark from '@/pages/orderDetails/components/remark'
|
|||||||
import { formatRemoveHashTag } from '@/common/format'
|
import { formatRemoveHashTag } from '@/common/format'
|
||||||
import { SubmitColorCardOrder } from '@/api/colorCard'
|
import { SubmitColorCardOrder } from '@/api/colorCard'
|
||||||
import MoveBtn from '@/components/moveBtn'
|
import MoveBtn from '@/components/moveBtn'
|
||||||
|
import NavBar from '@/pages/order/components/NavBar'
|
||||||
|
|
||||||
const AddColorCard = () => {
|
const AddColorCard = () => {
|
||||||
// 获取选择的客户
|
// 获取选择的客户
|
||||||
@ -263,8 +264,27 @@ const AddColorCard = () => {
|
|||||||
setRemark(value)
|
setRemark(value)
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
return <MoveBtn showList={['businessManager']}>
|
const onClickBack = () => {
|
||||||
<View className={styles.main}>
|
Taro.showModal({
|
||||||
|
content: '返回后页面数据将不回保留,确认返回?',
|
||||||
|
confirmColor: '#4a8dff',
|
||||||
|
success: ({ confirm }) => {
|
||||||
|
if (confirm) {
|
||||||
|
Taro.navigateBack({
|
||||||
|
delta: 1,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return <View className={styles.main}>
|
||||||
|
<NavBar hasLeft leftSlot={
|
||||||
|
<View onClick={onClickBack}>
|
||||||
|
<IconFont customClassName={styles.backIcon} name="icon-chakanquanbukehu" size={48} color="#191919"></IconFont>
|
||||||
|
</View>
|
||||||
|
} title="领取色卡"
|
||||||
|
></NavBar>
|
||||||
<View className={styles.context}>
|
<View className={styles.context}>
|
||||||
{/* 客户信息 */}
|
{/* 客户信息 */}
|
||||||
<LayoutBlock circle onClick={handleSelectCustomer} customStyle={{ marginTop: '12px' }} customClassName={styles.layoutBlock}>
|
<LayoutBlock circle onClick={handleSelectCustomer} customStyle={{ marginTop: '12px' }} customClassName={styles.layoutBlock}>
|
||||||
@ -380,6 +400,5 @@ const AddColorCard = () => {
|
|||||||
<Remark onSave={getRemark} defaultValue={remark} showInput={!!showDesc} />
|
<Remark onSave={getRemark} defaultValue={remark} showInput={!!showDesc} />
|
||||||
</Popup>
|
</Popup>
|
||||||
</View>
|
</View>
|
||||||
</MoveBtn>
|
|
||||||
}
|
}
|
||||||
export default AddColorCard
|
export default AddColorCard
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
export default {
|
export default {
|
||||||
navigationBarTitleText: '领取剪样',
|
navigationBarTitleText: '领取剪样',
|
||||||
|
disableSwipeBack: true,
|
||||||
|
navigationStyle: 'custom',
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,6 +4,9 @@ page {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column nowrap;
|
flex-flow: column nowrap;
|
||||||
}
|
}
|
||||||
|
.backIcon {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
.layoutBlock {
|
.layoutBlock {
|
||||||
padding: 24px 34px;
|
padding: 24px 34px;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,6 +16,7 @@ import Popup from '@/components/popup'
|
|||||||
import Remark from '@/pages/orderDetails/components/remark'
|
import Remark from '@/pages/orderDetails/components/remark'
|
||||||
import { formatRemoveHashTag } from '@/common/format'
|
import { formatRemoveHashTag } from '@/common/format'
|
||||||
import { SubmitCutSampleOrder } from '@/api/sampleCutting'
|
import { SubmitCutSampleOrder } from '@/api/sampleCutting'
|
||||||
|
import NavBar from '@/pages/order/components/NavBar'
|
||||||
|
|
||||||
const AddColorCard = () => {
|
const AddColorCard = () => {
|
||||||
// 获取选择的客户
|
// 获取选择的客户
|
||||||
@ -310,7 +311,27 @@ const AddColorCard = () => {
|
|||||||
}, 0)
|
}, 0)
|
||||||
}, [order])
|
}, [order])
|
||||||
|
|
||||||
|
const onClickBack = () => {
|
||||||
|
Taro.showModal({
|
||||||
|
content: '返回后页面数据将不回保留,确认返回?',
|
||||||
|
confirmColor: '#4a8dff',
|
||||||
|
success: ({ confirm }) => {
|
||||||
|
if (confirm) {
|
||||||
|
Taro.navigateBack({
|
||||||
|
delta: 1,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
return <View className={styles.main}>
|
return <View className={styles.main}>
|
||||||
|
<NavBar hasLeft leftSlot={
|
||||||
|
<View onClick={onClickBack}>
|
||||||
|
<IconFont customClassName={styles.backIcon} name="icon-chakanquanbukehu" size={48} color="#191919"></IconFont>
|
||||||
|
</View>
|
||||||
|
} title="领取剪样"
|
||||||
|
></NavBar>
|
||||||
<View className={styles.context}>
|
<View className={styles.context}>
|
||||||
{/* 客户信息 */}
|
{/* 客户信息 */}
|
||||||
<LayoutBlock circle onClick={handleSelectCustomer} customStyle={{ marginTop: '12px' }} customClassName={styles.layoutBlock}>
|
<LayoutBlock circle onClick={handleSelectCustomer} customStyle={{ marginTop: '12px' }} customClassName={styles.layoutBlock}>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user