import React from "react";
import $ from "jquery/src/ajax";
import "react-quill/dist/quill.bubble.css";
import moment from "moment";
import {
Form,
Icon,
Button,
Input,
Select,
Spin,
Table,
message,
DatePicker,
Modal,
Upload,
Popconfirm,
Cascader,
InputNumber,
Radio,
TimePicker,
Tabs,
Tag
} from "antd";
import { areaSelect, getProvince } from "@/NewDicProvinceList"; //省市区
import {
getGameState,
splitUrl,
getprovince,
getStatuslist,
getLvl,
beforeUploadFile,
getSecretType,
getBuyAuditType,
placeList,
province,
provinceStatus,
getPicPath
} from "@/tools.js";
const { Option } = Select;
import Img01 from "./image/cgg.jpg";
import Img02 from "./image/ttt.jpg";
import Img03 from "./image/xxxd.jpg";
import Img04 from "./image/bbb.jpg";
//上传图片组件
const PicturesWall = React.createClass({
getInitialState() {
return {
previewVisible: false,
previewImage: "",
fileList: this.props.pictureUrl,
imgflag: this.props.flagimg
};
},
getDefaultProps() {
return {
changeClick: this.modifyChange
};
},
handleCancel() {
this.setState({ previewVisible: false });
},
handlePreview(file) {
this.setState({
previewImage: file.url || file.thumbUrl,
previewVisible: true
});
},
handleChange(info) {
let fileList = info.fileList;
this.setState({ fileList });
this.props.fileList(fileList);
},
componentWillReceiveProps(nextProps) {
this.state.fileList = nextProps.pictureUrl;
},
render() {
const { previewVisible, previewImage, fileList, flagimg } = this.state;
const uploadButton = (
);
return (
{fileList && fileList.length >= 1 ? null : uploadButton}
);
}
});
//主体
const BuyList = Form.create()(
React.createClass({
loadData(pageNo) {
this.state.data = [];
this.setState({
loading: true,
page: pageNo
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url: globalConfig.context + "/api/admin/customerCase/listCustomerCase",
data: {
pageNo: pageNo || this.state.pagination.current || 1,
pageSize: this.state.pagination.pageSize,
name: this.state.nameSearch
},
success: function(data) {
let theArr = [];
if (!data.data || !data.data.list) {
if (data.error && data.error.length) {
message.warning(data.error[0].message);
}
} else {
for (let i = 0; i < data.data.list.length; i++) {
let thisdata = data.data.list[i];
theArr.push({
key: i + 1,
id: thisdata.id,
name: thisdata.name,
pictureUrl: thisdata.pictureUrl,
status: thisdata.status,
releaseStatus: thisdata.releaseStatus,
province: thisdata.province,
region: thisdata.region,
sort: thisdata.sort,
releaseTimeConvert: thisdata.releaseTimeConvert,
createTimeConvert: thisdata.createTimeConvert
});
}
this.state.pagination.current = data.data.pageNo;
this.state.pagination.total = data.data.totalCount;
}
this.setState({
dataSource: theArr,
pagination: this.state.pagination
});
}.bind(this)
}).always(
function() {
this.setState({
loading: false
});
}.bind(this)
);
},
getInitialState() {
return {
loading: false,
flag: true,
timesArr: [],
totalData: {
mark: false
},
purchaseImg: [],
pagination: {
defaultCurrent: 1,
defaultPageSize: 10,
showQuickJumper: true,
pageSize: 10,
onChange: function(page) {
this.loadData(page);
this.setState({
selectedRowKeys: []
});
}.bind(this),
showTotal: function(total) {
return "共" + total + "条数据";
}
},
//数据类型
columns: [
{
title: "序号",
dataIndex: "key",
key: "key"
},
{
title: "省份",
dataIndex: "province",
key: "province",
render: e => {
let str = "";
provinceStatus.forEach(item => {
if (item.value == e) {
str = item.key;
}
});
return str;
}
},
{
title: "公司名字",
dataIndex: "name",
key: "name"
},
{
title: "是否首页",
dataIndex: "status",
key: "status",
render: s => {
return s ? (
是
) : (
否
);
}
},
{
title: "LOGO缩率图",
dataIndex: "pictureUrl",
key: "pictureUrl",
render: url => {
let path = getPicPath(globalConfig.avatarUploadHost, url);
return (
);
}
},
{
title: "排序",
dataIndex: "sort",
key: "sort"
},
{
title: "操作",
dataIndex: "ads",
key: "ads",
render: (text, record, index) => {
return (
{
}
{
{
this.delete(record.id);
}}
>
}
{
}
);
}
}
],
//数据列表
dataSource: []
};
},
//点击大图
maximg(url) {
this.setState({
imgeditvisible: true,
maximg: url
});
},
componentWillMount() {
this.loadData();
},
detailes(record) {
this.setState({
loading: true
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url: globalConfig.context + "/api/admin/purchase/details",
data: {
id: record.id
},
success: function(data) {
let theArr = [];
let thisdata = data.data;
if (!data.data || !data.data.list) {
if (data.error && data.error.length) {
message.warning(data.error[0].message);
}
}
this.setState({
purchaseImg: thisdata.purchaseImg
? splitUrl(
thisdata.purchaseImg,
",",
globalConfig.avatarUploadHost + "/upload"
)
: []
});
Object.assign(
this.state.totalData,
{
content: thisdata.content,
contacts: thisdata.contacts,
contactsMobile: thisdata.contactsMobile,
orgName: thisdata.orgName
},
this.state.RowData
);
}.bind(this)
}).always(
function() {
this.setState({
loading: false
});
}.bind(this)
);
},
stopPropagation(e) {
e.stopPropagation();
e.nativeEvent.stopImmediatePropagation();
},
//删除按钮
delete(id) {
$.ajax({
method: "post",
dataType: "json",
crossDomain: false,
url:
globalConfig.context + "/api/admin/customerCase/deleteCustomerCase",
data: {
id
},
success: function(data) {
let theArr = [];
if (data.error && data.error.length) {
message.warning(data.error[0].message);
} else {
this.loadData();
}
}.bind(this)
}).always(
function() {
this.setState({
loading: false
});
}.bind(this)
);
},
//项目列表整行点击
tableRowClick(record, index) {
this.state.RowData = record;
this.setState({
editvisible: true
});
this.edit(record);
},
edithandleCancel(e) {
this.setState(
{
editvisible: false
},
() => {
this.addReset();
}
);
this.loadData();
},
search() {
this.loadData();
},
add() {
this.setState({
editvisible: true,
flag: false
});
},
toTop(record, num) {
this.setState({
loading: true
});
$.ajax({
method: "post",
dataType: "json",
crossDomain: false,
url:
globalConfig.context + "/api/admin/customerCase/updateCustomerCase",
data: {
id: record.id,
status: num
},
success: function(data) {
let theArr = [];
if (data.error && data.error.length) {
message.warning(data.error[0].message);
} else {
this.loadData();
}
}.bind(this)
}).always(
function() {
this.setState({
loading: false
});
}.bind(this)
);
},
addNew(flag) {
if (this.state.flag) {
$.ajax({
method: "post",
dataType: "json",
crossDomain: false,
url:
globalConfig.context + "/api/admin/customerCase/updateCustomerCase",
data: {
id: this.state.id,
name: this.state.name,
pictureUrl: this.state.pictureUrl
? this.state.pictureUrl[0].response.data
: undefined,
status: this.state.status ? this.state.status : 0,
releaseStatus: flag,
province: this.state.province,
region: this.state.region,
sort: this.state.sort
},
success: function(data) {
let theArr = [];
if (data.error && data.error.length) {
message.warning(data.error[0].message);
} else {
this.loadData();
this.cancelAdd();
}
}.bind(this)
}).always(
function() {
this.setState({
loading: false
});
}.bind(this)
);
} else {
$.ajax({
method: "post",
dataType: "json",
crossDomain: false,
url: globalConfig.context + "/api/admin/customerCase/addCustomerCase",
data: {
name: this.state.name,
pictureUrl: this.state.pictureUrl
? this.state.pictureUrl[0].response.data
: undefined,
status: this.state.status ? this.state.status : 0,
releaseStatus: flag,
province: this.state.province,
region: this.state.region,
sort: this.state.sort
},
success: function(data) {
let theArr = [];
if (data.error && data.error.length) {
message.warning(data.error[0].message);
} else {
this.loadData();
this.cancelAdd();
}
}.bind(this)
}).always(
function() {
this.setState({
loading: false
});
}.bind(this)
);
}
},
issueNew() {
this.change("releaseStatus", 1, () => {
this.addNew();
});
},
//编辑按钮操作
edit(record) {
this.setState({
flag: true,
editvisible: true
});
this.setState({
loading: true
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url:
globalConfig.context + "/api/admin/customerCase/selectCustomerCase",
data: {
id: record.id
},
success: function(data) {
let thisdata = data.data;
let str = "";
if (data.error && data.error.length) {
message.warning(data.error[0].message);
}
placeList.forEach(item => {
if (item.value == thisdata.region) {
str = item.place;
}
});
this.setState({
id: thisdata.id,
name: thisdata.name,
pictureUrl: thisdata.pictureUrl
? splitUrl(
thisdata.pictureUrl,
",",
globalConfig.avatarUploadHost
)
: [],
status: thisdata.status,
releaseStatus: thisdata.releaseStatus,
province: thisdata.province + "",
region: thisdata.region,
regionStr: str,
sort: thisdata.sort,
releaseTimeConvert: thisdata.releaseTimeConvert,
createTimeConvert: thisdata.createTimeConvert
});
}.bind(this)
}).always(
function() {
this.setState({
loading: false
});
}.bind(this)
);
},
cancelAdd() {
this.setState(
{
editvisible: false
},
() => {
this.setState({
flag: true
});
this.addReset();
}
);
this.loadData();
},
//新增框的清零
addReset() {
this.setState({
name: undefined,
pictureUrl: undefined,
status: 0,
province: undefined,
region: undefined,
sort: undefined,
regionStr: undefined
});
},
imghandleCancel() {
this.setState({
imgeditvisible: false
});
},
//搜索部分的清零
reset() {
this.state.nameSearch = undefined;
this.loadData();
},
getOrgCodeUrl(e) {
this.setState({ pictureUrl: e });
},
change(key, e, f) {
if (f === undefined) {
this.state.totalData[key] = e;
this.setState({
totalData: this.state.totalData
});
} else if (typeof f === "function") {
this.state.totalData[key] = e;
this.setState(
{
totalData: this.state.totalData
},
f
);
}
},
render() {
const FormItem = Form.Item;
const rowSelection = {
selectedRowKeys: this.state.selectedRowKeys,
onChange: (selectedRowKeys, selectedRows) => {
this.setState({
selectedRows: selectedRows.slice(-1),
selectedRowKeys: selectedRowKeys.slice(-1)
});
}
};
let data = this.state.totalData;
const { TextArea } = Input; //文本域
const { TabPane } = Tabs; //标签页
const { MonthPicker, RangePicker, WeekPicker } = DatePicker; //日期输入框
return (
);
}
})
);
export default BuyList;