|
|
|
@ -35,7 +35,13 @@
|
|
|
|
|
<u-icon slot="right" name="arrow-right"></u-icon> |
|
|
|
|
</u-form-item> |
|
|
|
|
<!-- 企业地址 --> |
|
|
|
|
<u-form-item label="地址" prop="address" borderBottom> |
|
|
|
|
<u-form-item |
|
|
|
|
label="地址" |
|
|
|
|
prop="address" |
|
|
|
|
borderBottom |
|
|
|
|
@click="chooseView(detail)" |
|
|
|
|
> |
|
|
|
|
<u-icon name="map" size="14" color="#17C653"></u-icon> |
|
|
|
|
<u-input |
|
|
|
|
v-model="info.form.address" |
|
|
|
|
border="none" |
|
|
|
@ -281,7 +287,8 @@ export default {
|
|
|
|
|
photo: [], // 企业照片 |
|
|
|
|
contactName: '', // 环保负责人 |
|
|
|
|
environmentalContactPhone: '', // 联系方式 |
|
|
|
|
establishmentDate: '' // 成立时间 |
|
|
|
|
establishmentDate: '', // 成立时间 |
|
|
|
|
gpsLocation: '' |
|
|
|
|
}, |
|
|
|
|
rules: { |
|
|
|
|
enterprisesName: { |
|
|
|
@ -310,12 +317,17 @@ export default {
|
|
|
|
|
message: '请输入联系方式', |
|
|
|
|
trigger: ['blur'] |
|
|
|
|
}, |
|
|
|
|
photo: { |
|
|
|
|
require: true, |
|
|
|
|
min: 1, |
|
|
|
|
message: '至少上传一张图片', |
|
|
|
|
trigger: ['blur', 'change'] |
|
|
|
|
} |
|
|
|
|
photo: [ |
|
|
|
|
{ |
|
|
|
|
validator: value => { |
|
|
|
|
return ( |
|
|
|
|
Array.isArray(this.info.form.photo) && |
|
|
|
|
this.info.form.photo.length > 0 |
|
|
|
|
) |
|
|
|
|
}, |
|
|
|
|
message: '照片数组至少需要有一个元素' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 字典 |
|
|
|
@ -374,12 +386,24 @@ export default {
|
|
|
|
|
this.initProveList() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
async chooseView() { |
|
|
|
|
uni.chooseLocation({ |
|
|
|
|
success: res => { |
|
|
|
|
console.log(res) |
|
|
|
|
console.log(this.info) |
|
|
|
|
this.info.form.address = res.address |
|
|
|
|
this.info.form.gpsLocation = res.latitude + ',' + res.longitude |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 选择图片并上传 |
|
|
|
|
* @param {Object} e |
|
|
|
|
*/ |
|
|
|
|
async addEnterprisePhoto(e) { |
|
|
|
|
this.info.form.photo = e.file.map(p => { |
|
|
|
|
console.log(p.url) |
|
|
|
|
return { |
|
|
|
|
...p, |
|
|
|
|
status: 'uploading', |
|
|
|
@ -398,6 +422,7 @@ export default {
|
|
|
|
|
}) |
|
|
|
|
).then(res => { |
|
|
|
|
this.info.form.photo = res |
|
|
|
|
console.log('pthoto3', this.info.form.photo) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
/** |
|
|
|
|