Commit ba0b03d6 authored by 前端-许佳敏's avatar 前端-许佳敏
parents 7404dea8 b71eb46b
...@@ -386,6 +386,7 @@ const Detail: React.FC<{}> = () => { ...@@ -386,6 +386,7 @@ const Detail: React.FC<{}> = () => {
* @return {type} * @return {type}
*/ */
const onCustomerCategoryChange = (value: any, options: any) => { const onCustomerCategoryChange = (value: any, options: any) => {
console.log(value, options)
let seletCategoryId = value[value.length - 1] let seletCategoryId = value[value.length - 1]
setcategoryId(seletCategoryId) setcategoryId(seletCategoryId)
setseletCategoryNameList(options) setseletCategoryNameList(options)
...@@ -556,6 +557,7 @@ const Detail: React.FC<{}> = () => { ...@@ -556,6 +557,7 @@ const Detail: React.FC<{}> = () => {
PublicApi.getProductPlatformGetCategoryTree({ rootNodeId: null }).then(res => { PublicApi.getProductPlatformGetCategoryTree({ rootNodeId: null }).then(res => {
if (res.code === 1000) { if (res.code === 1000) {
let { data } = res let { data } = res
console.log(data, 10086)
setCategoryTreeOne(data) setCategoryTreeOne(data)
} }
}) })
...@@ -568,7 +570,7 @@ const Detail: React.FC<{}> = () => { ...@@ -568,7 +570,7 @@ const Detail: React.FC<{}> = () => {
* @param {type} * @param {type}
* @return {type} * @return {type}
*/ */
PublicApi.getLogisticsSelectListShipperAddress().then(res => { PublicApi.getLogisticsSelectListReceiverAddress().then(res => {
let list = [] let list = []
res.data.forEach(item => { res.data.forEach(item => {
list.push({ value: item.id, label: item.fullAddress }) list.push({ value: item.id, label: item.fullAddress })
...@@ -621,7 +623,6 @@ const Detail: React.FC<{}> = () => { ...@@ -621,7 +623,6 @@ const Detail: React.FC<{}> = () => {
} }
//品类 //品类
if (data.productCategory) { if (data.productCategory) {
console.log(10086, '============')
setcustomerCategoryId([data.productCategory.key]) setcustomerCategoryId([data.productCategory.key])
initCreatePro(data.productCategory.key, false)//生产弹窗 initCreatePro(data.productCategory.key, false)//生产弹窗
} }
...@@ -791,6 +792,7 @@ const Detail: React.FC<{}> = () => { ...@@ -791,6 +792,7 @@ const Detail: React.FC<{}> = () => {
*/ */
const handleSubmitTabForm = () => { const handleSubmitTabForm = () => {
tabForm.validateFields().then(values => { tabForm.validateFields().then(values => {
console.log(values, `扑母早死仔`)
if (id) { if (id) {
if (!haschangeCategory) { if (!haschangeCategory) {
//不做处理 //不做处理
...@@ -940,12 +942,18 @@ const Detail: React.FC<{}> = () => { ...@@ -940,12 +942,18 @@ const Detail: React.FC<{}> = () => {
}) })
} else { } else {
Object.keys(values).forEach((key) => { Object.keys(values).forEach((key) => {
console.log(values[key], '嘿嘿嘿')
item[key] = values[key] item[key] = values[key]
}) })
} }
list.push(item) // 获得key
for(let k in item) {
console.log(k, k )
}
list.push(item)
console.log(list, '嘿嘿嘿1000')
setproductSource([...productSource, ...list])//新增就要合并 setproductSource([...productSource, ...list])//新增就要合并
setdialogVisible(false) setdialogVisible(false)
} }
...@@ -1157,7 +1165,7 @@ const Detail: React.FC<{}> = () => { ...@@ -1157,7 +1165,7 @@ const Detail: React.FC<{}> = () => {
</TabPane> </TabPane>
<TabPane tab="添加商品" key='2'> <TabPane tab="添加商品" key='2'>
<Button style={{ marginBottom: 16, marginTop: 24 }} block icon={<PlusOutlined />} onClick={() => handleOptionBtn(1)} type='dashed'>添加商品</Button> <Button style={{ marginBottom: 16, marginTop: 24 }} block icon={<PlusOutlined />} onClick={() => handleOptionBtn(1)} type='dashed'>添加商品</Button>
<Table rowKey={"id"} dataSource={productSource} columns={equiryColumns} pagination={pagination} /> <Table rowKey={"title"} dataSource={productSource} columns={equiryColumns} pagination={pagination} />
</TabPane> </TabPane>
<TabPane tab="交易条件" key='3'> <TabPane tab="交易条件" key='3'>
<Row> <Row>
......
...@@ -171,7 +171,7 @@ const EnquiryGoods: React.FC<queryProps> = (props) => { ...@@ -171,7 +171,7 @@ const EnquiryGoods: React.FC<queryProps> = (props) => {
const fetchGoodsList = (params) => { const fetchGoodsList = (params) => {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
PublicApi.getProductCommodityCommonGetCommodityListByBuyer({...params,priceTypeList: 2,memberId:memberList[0].memberId }).then(res => { PublicApi.getProductCommodityCommonGetCommodityListByBuyer({...params,priceTypeList: 2,memberId:memberList[0].memberId, shopType: 1 }).then(res => {
if(res.code === 1000) { if(res.code === 1000) {
resolve(res.data) resolve(res.data)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment