|
@@ -844,6 +844,8 @@ export default {
|
|
|
created() {
|
|
|
this.bmProjectId = this.$route.query.setid;
|
|
|
this.bmjdeu.bmProjectId = this.$route.query.setid;
|
|
|
+ this.queryParamsstallation.bmProjectId = this.$route.query.setid;
|
|
|
+ this.queryParams.bmProjectId = this.$route.query.setid;
|
|
|
this.setrd = this.$route.query.setrd;
|
|
|
if(this.setrd !== 5){
|
|
|
this.disfal = true
|
|
@@ -892,22 +894,23 @@ export default {
|
|
|
//驳回
|
|
|
backBtn() {
|
|
|
var that=this
|
|
|
- this.$confirm("是否确认驳回", "提醒", {
|
|
|
+ this.$prompt("请输入驳回意见", "提醒", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
|
})
|
|
|
- .then(function () {
|
|
|
- return setReject({
|
|
|
- code: 2,
|
|
|
- bmProjectId: that.bmProjectId,
|
|
|
+ .then(({ value }) => {
|
|
|
+ return setReject({
|
|
|
+ code: 2,
|
|
|
+ bmProjectId: that.bmProjectId,
|
|
|
+ remark:value
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.$router.go(-1);
|
|
|
+ this.getList();
|
|
|
+ this.msgSuccess("驳回成功");
|
|
|
});
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- this.$router.go(-1);
|
|
|
- this.getList();
|
|
|
- this.msgSuccess("驳回成功");
|
|
|
- });
|
|
|
},
|
|
|
handleChange(file, fileList){
|
|
|
console.log(file, fileList)
|
|
@@ -1105,7 +1108,7 @@ export default {
|
|
|
//项目到资列表接口
|
|
|
getListfour() {
|
|
|
this.loading = true;
|
|
|
- listConfigfunding().then((response) => {
|
|
|
+ listConfigfunding(this.queryParams).then((response) => {
|
|
|
this.configLisfour = response.rows;
|
|
|
this.configLisfour.filter((route) => {
|
|
|
if (route.photo !== null) {
|