Commit 68675847 authored by 张冬's avatar 张冬

项目信息编辑

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