|
@@ -56,6 +56,7 @@ class EgressDetails extends Component {
|
|
|
isVerify: false, //判断是否在审核中修改
|
|
|
selectArrderLocation: {},
|
|
|
current: "",
|
|
|
+ isNo: true,
|
|
|
};
|
|
|
this.examinePublicRelease = this.examinePublicRelease.bind(this);
|
|
|
this.getReleasetDails = this.getReleasetDails.bind(this);
|
|
@@ -70,7 +71,6 @@ class EgressDetails extends Component {
|
|
|
}
|
|
|
|
|
|
componentDidShow() {
|
|
|
- console.log("----000.");
|
|
|
//获取地区选定数据
|
|
|
const chooseLocation = requirePlugin("chooseLocation");
|
|
|
const location = chooseLocation.getLocation();
|
|
@@ -121,7 +121,70 @@ class EgressDetails extends Component {
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
|
|
|
- console.log(err);
|
|
|
+ // console.log(err);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ // 同意
|
|
|
+ agree() {
|
|
|
+ if (!this.state.opinion) {
|
|
|
+ Taro.showToast({ title: "请填写审批意见", icon: "none" });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ getReleasetDails({
|
|
|
+ id: this.$instance.router.params.id,
|
|
|
+ })
|
|
|
+ .then((v) => {
|
|
|
+ if (v.error.length === 0) {
|
|
|
+ //如果在审核期间修改过
|
|
|
+ if (
|
|
|
+ v.data.updateTime != null &&
|
|
|
+ this.state.dtails.updateTime !== v.data.updateTime
|
|
|
+ ) {
|
|
|
+ this.setState({
|
|
|
+ isInquiryOpened: true,
|
|
|
+ isNo: false,
|
|
|
+ inquiryTitle: "提醒",
|
|
|
+ inquiryContent: "当前公出申请已修改,请重新审核",
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.examinePublicRelease(2);
|
|
|
+ }
|
|
|
+ if (v.data) {
|
|
|
+ let list = [];
|
|
|
+ for (let i of v.data.annexUrl.split(",")) {
|
|
|
+ if (i) {
|
|
|
+ list.push({ url: resourceAddress + i });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ v.data.annexUrl = list;
|
|
|
+ this.setState({
|
|
|
+ dtails: v.data,
|
|
|
+ selectArrderLocation: {
|
|
|
+ longitude: parseFloat(v.data.longitude),
|
|
|
+ latitude: parseFloat(v.data.latitude),
|
|
|
+ name: v.data.userName,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ setTimeout(() => {
|
|
|
+ Taro.switchTab({
|
|
|
+ url: "/pages/punchClock/index",
|
|
|
+ });
|
|
|
+ }, 1800);
|
|
|
+ Taro.showToast({
|
|
|
+ title: "您没有权限查看此公出详情",
|
|
|
+ icon: "none",
|
|
|
+ duration: 1800,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ Taro.showToast({ title: v.error[0].message, icon: "none" });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
|
|
|
+ // console.log(err);
|
|
|
});
|
|
|
}
|
|
|
|
|
@@ -468,7 +531,8 @@ class EgressDetails extends Component {
|
|
|
inquiryTitle: "提醒",
|
|
|
inquiryContent: "您确定要同意此申请吗?",
|
|
|
inquiryFn: () => {
|
|
|
- this.examinePublicRelease(2);
|
|
|
+ this.agree();
|
|
|
+ // this.examinePublicRelease(2);
|
|
|
},
|
|
|
});
|
|
|
}}
|
|
@@ -612,11 +676,14 @@ class EgressDetails extends Component {
|
|
|
isOpened={this.state.isInquiryOpened}
|
|
|
title={this.state.inquiryTitle}
|
|
|
content={this.state.inquiryContent}
|
|
|
+ color={this.state.isNo ? "black" : "red"}
|
|
|
+ isNo={this.state.isNo}
|
|
|
onClose={() => {
|
|
|
this.setState({
|
|
|
isInquiryOpened: false,
|
|
|
inquiryTitle: "",
|
|
|
inquiryContent: "",
|
|
|
+ isNo: true,
|
|
|
});
|
|
|
}}
|
|
|
onDetermine={() => {
|
|
@@ -625,6 +692,7 @@ class EgressDetails extends Component {
|
|
|
isInquiryOpened: false,
|
|
|
inquiryTitle: "",
|
|
|
inquiryContent: "",
|
|
|
+ isNo: true,
|
|
|
inquiryFn: () => {},
|
|
|
});
|
|
|
}}
|