Commit 68675847 authored by 张冬's avatar 张冬

项目信息编辑

parent 11dc358f
......@@ -18,15 +18,15 @@ import { cityList } from '@/api/common/list';
export default {
props: {
provinceId: {
type: Number,
type: String,
default: ''
},
cityId: {
type: Number,
type: String,
default: ''
},
districtId: {
type: Number,
type: String,
default: ''
}
},
......@@ -40,9 +40,11 @@ export default {
created() {
this.getProvinceArr();
if(this.provinceId){
console.log("获取省份列表")
this.getcityArr(this.provinceId);
}
if(this.cityId){
console.log("获取城市列表")
this.getdistrictArr(this.cityId);
}
},
......
......@@ -17,15 +17,15 @@
</li>
<li>
<div>行政区域 </div>
<div>{{detail.companyName}}</div>
<div>{{detail.location}}</div>
</li>
<li>
<div>单位性质</div>
<div>{{detail.companyNature}}</div>
<div>{{detail.companyNatureName}}</div>
</li>
<li>
<div>单位所在地</div>
<div>{{detail.location}}</div>
<div>{{detail.contactAddress}}</div>
</li>
<li>
......@@ -38,7 +38,7 @@
</li>
<li>
<div>联系人姓名</div>
<div>{{detail.companyName}}</div>
<div>{{detail.contacts.userName}}</div>
</li>
<li>
<div> 手机号 </div>
......@@ -51,11 +51,11 @@
</ul>
<div class="detail-item">
<div>经营范围</div>
<div>一般项目:技术服务,技术开发</div>
<div>{{detail.businessScope}}</div>
</div>
<div class="detail-item">
<div>行业类型</div>
<div>{{detail.businessScope}}</div>
<div>{{detail.industryName}}</div>
</div>
</div>
</div>
......
......@@ -34,6 +34,9 @@
@sendprovinceId="getprovinceId"
@sendcityId="getcityId"
@senddistrictId="getdistrictId"
:provinceId="ruleForm.provinceId"
:cityId="ruleForm.cityId"
:districtId="ruleForm.districtId"
></citySelect>
</el-form-item>
<el-form-item label="最小投标单位数:" prop="minTender" disabled>
......
......@@ -297,7 +297,10 @@ export default {
} else if (item2.buttonId == 9 && item2.status == 2) {
item1.url = '/purchaser/bid/bidStage/seeBidSet';
item1.label = '开标设置查看';
} else {
} else if (item2.buttonId == 3 && item2.status == 1) {
item1.url = '/purchaser/bid/editProject';
item1.label = '编辑项目信息';
}else {
item1.url = this.geturl(item1.url, item2.status);
item1.label = this.getlabel(item1.label, item2.status);
}
......
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