|
@@ -76,7 +76,7 @@
|
|
|
:total="project.total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
- <el-input slot="reference" disabled :readonly="true" v-model="form.projectname" autocomplete="off" placeholder="请选择项目" @input="selectProject"></el-input>
|
|
|
+ <el-input slot="reference" :readonly="true" v-model="form.projectname" autocomplete="off" placeholder="请选择项目" @input="selectProject"></el-input>
|
|
|
</el-popover>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -132,13 +132,13 @@
|
|
|
small
|
|
|
@size-change="handleSizeChangeCustomer"
|
|
|
@current-change="handleCurrentChangeCustomer"
|
|
|
- :page-sizes="[10,20,50,100,]"
|
|
|
+ :page-sizes="[10,20,50,100]"
|
|
|
layout="total,sizes, prev, pager, next, jumper"
|
|
|
:current-page="customer.currentPage"
|
|
|
:total="customer.total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
- <el-input slot="reference" disabled :readonly="true" v-model="form.enterprisename" autocomplete="off" placeholder="请选择客户" @input="selectCustomer"></el-input>
|
|
|
+ <el-input slot="reference" :readonly="true" v-model="form.enterprisename" autocomplete="off" placeholder="请选择客户" @input="selectCustomer"></el-input>
|
|
|
</el-popover>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -515,6 +515,7 @@ export default {
|
|
|
this.form.contactsid = 0
|
|
|
this.form.contactsname = ''
|
|
|
this.form.contactsphonenumber = ''
|
|
|
+ this.projectShow = false
|
|
|
},
|
|
|
/*客户选择信息*/
|
|
|
customerData(val){
|
|
@@ -523,12 +524,14 @@ export default {
|
|
|
this.form.contactsid = 0
|
|
|
this.form.contactsname = ''
|
|
|
this.form.contactsphonenumber = ''
|
|
|
+ this.customerShow = false
|
|
|
},
|
|
|
/*联系人选择信息*/
|
|
|
contactsData(val){
|
|
|
this.form.contactsid = val.contactsid
|
|
|
this.form.contactsname = val.name
|
|
|
this.form.contactsphonenumber = val.phonenumber
|
|
|
+ this.contactsShow = false
|
|
|
},
|
|
|
/*项目翻页*/
|
|
|
handleSizeChangeProject(val) {
|