cf-wx-app/src/pages/myNeedsEdit/myNeedsEdit.js

415 lines
12 KiB
JavaScript
Raw Normal View History

2019-01-04 17:33:38 +08:00
import Taro, { Component } from '@tarojs/taro'
import { View, Text } from '@tarojs/components'
import { AtInput, AtImagePicker, AtTextarea, AtButton, Picker, AtToast } from 'taro-ui'
2019-01-08 13:51:26 +08:00
import InteractionComponent from '../../component/interactionComponent/interactionComponent'
2019-01-04 17:33:38 +08:00
import CopyrightComponent from '../../component/copyrightComponent/copyrightComponent'
import URL from '../../serviceAPI.config'
import './myNeedsEdit.scss'
class MyNeedsEdit extends Component {
2019-01-08 13:51:26 +08:00
config = {
navigationBarTitleText: '需求编辑'
}
constructor() {
super(...arguments)
this.state = {
2019-01-08 17:33:52 +08:00
industryTypeSelected: '',
needsType: [{ name: '业主需求', id: '4' }, { name: '效果图', id: '5' }],
2019-01-08 13:51:26 +08:00
needsTypeSelected: { name: '业主需求', id: '4' },
needsState: [
2019-01-08 17:33:52 +08:00
{ name: '作废', id: '0' },
{ name: '在用', id: '1' },
],
needsStateSelected: { name: '全部', id: '' },
2019-01-08 13:51:26 +08:00
title: '',
2019-01-08 17:33:52 +08:00
sd_id: '', //需求id
contactName: Taro.getStorageSync('user_identity').username,
contactNumber: Taro.getStorageSync('user_identity').userphone,
2019-01-08 13:51:26 +08:00
contactAddress: '',
2019-01-08 17:33:52 +08:00
content: '',//描述
pickerImageUrl: [],
ImagesInfo: '',
2019-01-04 17:33:38 +08:00
}
2019-01-08 13:51:26 +08:00
}
2019-01-08 17:33:52 +08:00
//获取需求信息api
getMyNeedEditInfo() {
2019-01-08 13:51:26 +08:00
Taro.request({
2019-01-08 17:33:52 +08:00
url: URL.EditMyNeeds,
2019-01-08 13:51:26 +08:00
method: 'GET',
dataType: 'json',
data: {
2019-01-08 17:33:52 +08:00
demandId: this.$router.params.id,
2019-01-08 13:51:26 +08:00
},
header: {
'content-type': 'application/x-www-form-urlencoded',
'Cookie': 'PFWSSS=' + Taro.getStorageSync('session_id'),
'X-Requested-With': 'XMLHttpRequest'
}
})
.then(res => {
2019-01-08 17:33:52 +08:00
console.log('需求详情获取成功', res)
// const selectedType = this.state.demandingSupplyCate.filter(item => item.id == res.data.sdInfo.sd_type)[0]
// const selectedState = this.state.needsState.filter(item => item.id == res.data.sdInfo.state)[0]
let industryType = {}
const classId = res.data.sdInfo.class_id
for (let outter of res.data.supplyTree) {
if (outter.children) {
for (let inner of outter.children) {
if (inner.class_id === classId) {
industryType.name = inner.class_name
industryType.id = inner.class_id
break
}
}
}
if (outter.class_id === classId) {
industryType.name = outter.class_name
industryType.id = outter.class_id
break
}
}
const needsType = this.state.needsType.filter(item => {
return item.id === res.data.sdInfo.sd_type
})[0]
2019-01-08 13:51:26 +08:00
const imageFile = res.data.sdInfo.file_path.map(item => { return { url: URL.Base + item.file_path } })
2019-01-08 17:33:52 +08:00
const needsState = this.state.needsState.filter(item => {
return item.id === res.data.sdInfo.state
})[0]
2019-01-08 13:51:26 +08:00
this.setState({
2019-01-08 17:33:52 +08:00
sd_id: res.data.sdInfo.sd_id,
industryTypeSelected: industryType,
needsTypeSelected: needsType,
2019-01-08 13:51:26 +08:00
title: res.data.sdInfo.sd_title,
contactAddress: res.data.sdInfo.user_address,
content: res.data.sdInfo.sd_desc,
2019-01-08 17:33:52 +08:00
needsStateSelected: needsState,
2019-01-08 13:51:26 +08:00
pickerImageUrl: imageFile,
ImagesInfo: res.data.sdInfo.file_path,
2019-01-04 17:33:38 +08:00
})
2019-01-08 13:51:26 +08:00
Taro.hideLoading()
}
)
.catch(error => {
console.log('供求详情获取失败', error)
})
}
2019-01-08 17:33:52 +08:00
// 上传需求按键
uploadMyNeedsButton() {
if (this.state.title &&
this.state.contactName
&& this.state.contactNumber
&& this.state.content && this.state.needsStateSelected) {
this.uploadMyNeedsApi({})
2019-01-08 13:51:26 +08:00
} else {
2019-01-08 17:33:52 +08:00
Taro.showToast({
title: '请填写完表格',
icon: 'none',
duration: 1500
2019-01-08 13:51:26 +08:00
})
2019-01-04 17:33:38 +08:00
}
2019-01-08 13:51:26 +08:00
}
2019-01-08 17:33:52 +08:00
// uploadMyNeedsApi 上传需求 的api
uploadMyNeedsApi() {
2019-01-08 13:51:26 +08:00
const file_path = [];
this.state.ImagesInfo.forEach((item) => {
file_path.push({
file_name: item.file_name,
file_size: item.file_size,
file_path: item.file_path,
thumb_path: item.thumb_path
})
})
Taro.request({
2019-01-08 17:33:52 +08:00
url: URL.PublishMyNeed,
2019-01-08 13:51:26 +08:00
method: 'POST',
dataType: 'json',
data: {
action: 2,
sdInfo: JSON.stringify({
2019-01-08 17:33:52 +08:00
class_id: this.state.industryTypeSelected.id,
sd_id: this.state.sd_id,
sd_type: this.state.needsTypeSelected.id,
sd_title: this.state.title,
user_name: this.state.contactName,
user_phone: this.state.contactNumber,
user_address: this.state.contactAddress,
sd_desc: this.state.content,
state: this.state.needsStateSelected.id,
file_path: file_path,
2019-01-04 17:33:38 +08:00
})
2019-01-08 13:51:26 +08:00
},
header: {
'content-type': 'application/x-www-form-urlencoded',
'Cookie': 'PFWSSS=' + Taro.getStorageSync('session_id'),
'X-Requested-With': 'XMLHttpRequest'
}
})
.then(res => {
2019-01-08 17:33:52 +08:00
console.log('上传需求', res)
2019-01-08 13:51:26 +08:00
if (res.data.err_msg === 'success') {
Taro.showToast({
2019-01-08 17:33:52 +08:00
title: '保存成功',
2019-01-08 13:51:26 +08:00
icon: 'success',
duration: 1500
}).then(() => {
2019-01-08 17:33:52 +08:00
// setTimeout(() => {
// Taro.navigateTo({
// // url: '/pages/mySupplyDemand/mySupplyDemand'
// })
// }, 1500);
2019-01-08 13:51:26 +08:00
})
2019-01-04 17:33:38 +08:00
2019-01-08 13:51:26 +08:00
} else {
Taro.showToast({
title: res.data.err_msg,
icon: 'none',
duration: 1500
})
}
2019-01-04 17:33:38 +08:00
2019-01-08 13:51:26 +08:00
}
)
}
// 上传图片
onChangeImg(files, operationType, index) {
const that = this
if (operationType === 'add') {
Taro.uploadFile({
url: URL.UploadDSPorductImage,
filePath: files[files.length - 1].url,
name: 'file',
header: {
'content-type': 'multipart/form-data',
'Cookie': 'PFWSSS=' + Taro.getStorageSync('session_id'),
'X-Requested-With': 'XMLHttpRequest'
},
success(response) {
const data = JSON.parse(response.data)
const imagePath = URL.Base + data.file_path
const newPickerImageUrl = that.state.pickerImageUrl.concat({ url: imagePath })
const newImageInfo = that.state.ImagesInfo.concat(data)
that.setState({
pickerImageUrl: newPickerImageUrl,
ImagesInfo: newImageInfo
})
Taro.showToast({
title: '上传成功',
icon: 'success',
duration: 1500
})
}
})
2019-01-04 17:33:38 +08:00
}
2019-01-08 13:51:26 +08:00
if (operationType === 'remove') {
this.state.ImagesInfo.splice(index, 1) // 删除显示的图片
this.state.pickerImageUrl.splice(index, 1)// 删除图片param
that.setState({
pockerImageUrl: this.state.pickerImageUrl,
ImagesInfo: this.state.ImagesInfo,
})
Taro.showToast({
title: '删除成功',
icon: 'success',
duration: 1500
})
2019-01-04 17:33:38 +08:00
}
2019-01-08 13:51:26 +08:00
}
// 修改供求类型
demandingSupplyCate = e => {
this.setState({
demandingSupplyCateSelected: this.state.demandingSupplyCate[e.detail.value]
})
}
// 修改供求状态
demSupplyStateChange = e => {
this.setState({
needsStateSelected: this.state.needsState[e.detail.value]
})
}
//改标题
titleChange(event) {
this.setState({ title: event })
}
contactNameChange(event) {
this.setState({ contactName: event })
}
contactNumberChange(event) {
this.setState({ contactNumber: event })
}
contactAddressChange(event) {
this.setState({ contactAddress: event.target.value })
}
contentChange(event) {
this.setState({ content: event.target.value })
}
2019-01-08 17:33:52 +08:00
goToMyNeedsPage() {
2019-01-08 13:51:26 +08:00
Taro.navigateTo({
2019-01-08 17:33:52 +08:00
url: '/pages/myNeeds/myNeeds'
2019-01-08 13:51:26 +08:00
})
}
2019-01-08 17:33:52 +08:00
getDataFromChild(value) {
console.log('从子组件传回来的值', value)
this.setState({ industryTypeSelected: value })
2019-01-08 13:51:26 +08:00
}
componentDidMount() {
2019-01-08 17:33:52 +08:00
Taro.showLoading({ title: '加载中' })
this.getMyNeedEditInfo()
2019-01-08 13:51:26 +08:00
}
componentWillReceiveProps(nextProps) {
console.log(this.props, nextProps)
}
componentWillUnmount() { }
componentDidShow() { }
componentDidHide() { }
render() {
return (
<View className='supply-demand'>
{/* 行业分类 */}
2019-01-08 17:33:52 +08:00
<InteractionComponent url={URL.GetIndustryTypeList} onPassDataToChild={this.getDataFromChild.bind(this)} selectedValue={this.state.industryTypeSelected} ></InteractionComponent>
2019-01-04 17:33:38 +08:00
2019-01-08 13:51:26 +08:00
{/* 需求类型 */}
<View className='page-section'>
<View>
<Picker mode='selector' rangeKey='name' range={this.state.needsType} onChange={this.demandingSupplyCate.bind(this)}>
<View className='picker'>
<View className='title-box'>
<Text className='title'><Text className='require'>*</Text>:</Text> <Text className='selected'>{this.state.needsTypeSelected.name}</Text>
2019-01-04 17:33:38 +08:00
</View>
2019-01-08 13:51:26 +08:00
</View>
</Picker>
</View>
</View>
<View className='border-box'>
<Text className='require'>*</Text><AtInput
name='value'
title='需求标题:'
type='text'
value={this.state.title}
onChange={this.titleChange.bind(this)}
/>
</View>
<View className='input-box'>
<Text className='require'>*</Text>
<AtInput
name='value'
title='联系人:'
type='text'
value={this.state.contactName}
onChange={this.contactNameChange.bind(this)}
/>
</View>
<View className='input-box'>
<Text className='require'>*</Text>
<AtInput
name='value'
title='联系电话:'
type='number'
value={this.state.contactNumber}
onChange={this.contactNumberChange.bind(this)}
/>
</View>
<View className='demanding-box'>
<View className='title-box'>
<Text className='title'>联系地址:</Text>
</View>
<AtTextarea
value={this.state.contactAddress}
onChange={this.contactAddressChange.bind(this)}
maxlength='200'
placeholder='联系地址'
/>
</View>
<View className='demanding-box'>
<View className='title-box'>
<Text className='title'><Text className='require'>*</Text>:</Text>
</View>
<AtTextarea
value={this.state.content}
onChange={this.contentChange.bind(this)}
maxlength='200'
placeholder=''
/>
</View>
<View className='img-box'>
<View className='title-box'>
<Text className='title'>需求图片:</Text>
<View className='warn'>(最多4张)</View>
</View>
<View className='img-container'>
<AtImagePicker
multiple
showAddBtn={this.state.pickerImageUrl.length < 4}
files={this.state.pickerImageUrl}
onChange={this.onChangeImg.bind(this)}
onFail={this.onFail.bind(this)}
onImageClick={this.onImageClick.bind(this)}
/>
</View>
</View>
<View className='page-section'>
<View>
<Picker mode='selector' rangeKey='name' range={this.state.needsState} onChange={this.demSupplyStateChange}>
<View className='picker'>
<View className='title-box'>
<Text className='title'> <Text className='require'>*</Text>:</Text> <Text className='selected'>{this.state.needsStateSelected.name}</Text>
2019-01-04 17:33:38 +08:00
</View>
2019-01-08 13:51:26 +08:00
</View>
</Picker>
</View>
</View>
<View className='button-box'>
2019-01-08 17:33:52 +08:00
<View className='button' onClick={this.uploadMyNeedsButton.bind(this)}>
2019-01-08 13:51:26 +08:00
<AtButton type='primary' size='small'>保存</AtButton>
</View>
{/* <View className='button'>
2019-01-04 17:33:38 +08:00
<AtButton type='primary' className='button-a' size='small'>保存并新增</AtButton>
</View> */}
2019-01-08 17:33:52 +08:00
<View className='button' onClick={this.goToMyNeedsPage.bind(this)}>
2019-01-08 13:51:26 +08:00
<AtButton type='primary' className='button-a' size='small'>我的需求</AtButton>
</View>
</View>
<CopyrightComponent></CopyrightComponent>
2019-01-04 17:33:38 +08:00
2019-01-08 13:51:26 +08:00
</View>
)
}
2019-01-04 17:33:38 +08:00
}
export default MyNeedsEdit