Commit c3fcf32f authored by 张冬's avatar 张冬

项目信息编辑

parent 68675847
......@@ -17,18 +17,9 @@ import { cityList } from '@/api/common/list';
// import arrAll from './area.js'
export default {
props: {
provinceId: {
type: String,
default: ''
},
cityId: {
type: String,
default: ''
},
districtId: {
type: String,
default: ''
}
provinceId: ["Number","String"],
cityId: ["Number","String"],
districtId: ["Number","String"]
},
data() {
return {
......
......@@ -73,7 +73,8 @@
query: {
type: "examine",
feeId: row.feeId,
state:row.feeStatus
state:row.feeStatus,
companyId:row.companyId
}
})
},
......
......@@ -123,6 +123,7 @@ export default {
},
data() {
return {
companyId:"",
dialogFormVisible: false,
state: '',
breads: ['招标管理', '招标项目管理', '工作台'],
......@@ -168,6 +169,7 @@ export default {
form.aduit = 2;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
form.companyId=this.companyId
const { code, msg } = await aduit(form);
if (code === 200) {
this.$message({
......@@ -193,6 +195,7 @@ export default {
form.aduit = 1;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
form.companyId=this.companyId
const { code, msg } = await aduit(form);
if (code === 200) {
this.$message({
......@@ -220,6 +223,7 @@ export default {
this.title = '查看';
}
let feeId = this.$route.query.feeId;
this.companyId=this.$route.query.companyId;
this.feeId = feeId;
this.getearnestDetail();
}
......
......@@ -155,6 +155,7 @@ export default {
},
data() {
return {
companyId:"",
state: '',
dialogFormVisible: false,
breads: ['招标管理', '招标项目管理', '工作台'],
......@@ -199,6 +200,7 @@ export default {
form.aduit = 2;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
form.companyId=this.companyId
const { code, msg } = await operationAduit(form);
if (code === 200) {
this.$message({
......@@ -224,6 +226,7 @@ export default {
form.aduit = 1;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
form.companyId=this.companyId
const { code, msg } = await operationAduit(form);
if (code === 200) {
this.$message({
......@@ -252,6 +255,7 @@ export default {
}
let feeId = this.$route.query.feeId;
this.feeId = feeId;
this.companyId=this.$route.query.companyId;
this.getBidbookDetail();
}
};
......
......@@ -69,7 +69,8 @@
query: {
type: "examine",
feeId: row.feeId,
state:row.condition
state:row.condition,
companyId:row.companyId
}
})
},
......
......@@ -18,8 +18,8 @@ export function getSearchString(key) {
export function down(url) {
window.open(url)
}
// export let requestUrl = 'http://192.168.3.35:8085';
export let requestUrl = 'http://60.205.251.80:8082';
export let requestUrl = 'http://192.168.3.35:8085';
// export let requestUrl = 'http://60.205.251.80:8082';
// export let homeUrl = 'http://localhost:3000';
export let homeUrl = 'http://60.205.251.80:8081';
......
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