Commit c3fcf32f authored by 张冬's avatar 张冬

项目信息编辑

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