| | |
| | | class="avatar-uploader" |
| | | :show-file-list="false" |
| | | > |
| | | <img v-if="businessObj.trading" :src="businessObj.trading" class="avatar" /> |
| | | <i v-else class="el-icon-plus avatar-uploader-icon"></i> |
| | | <el-image |
| | | style="width: 150px; height: 150px" |
| | | :src="businessObj.trading" |
| | | :preview-src-list="tradingUrlList"> |
| | | </el-image> |
| | | </el-upload> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | class="avatar-uploader" |
| | | :show-file-list="false" |
| | | > |
| | | <img v-if="form.businessLicense" :src="form.businessLicense" class="avatar" /> |
| | | <i v-else class="el-icon-plus avatar-uploader-icon"></i> |
| | | <el-image |
| | | style="width: 150px; height: 150px" |
| | | :src="form.businessLicense" |
| | | :preview-src-list="businessLicenseUrlList"> |
| | | </el-image> |
| | | </el-upload> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | class="avatar-uploader" |
| | | :show-file-list="false" |
| | | > |
| | | <img v-if="licenceForm.url" :src="licenceForm.url" class="avatar" /> |
| | | <i v-else class="el-icon-plus avatar-uploader-icon"></i> |
| | | <el-image |
| | | style="width: 150px; height: 150px" |
| | | :src="licenceForm.url" |
| | | :preview-src-list="licenceUrlList"> |
| | | </el-image> |
| | | </el-upload> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | var w = 160, |
| | | s = 12; |
| | | return { |
| | | dialogImageUrl: '', |
| | | dialogVisible: false, |
| | | businessObj:{}, |
| | | licenceForm:{}, |
| | | licenceUrlList:[], |
| | | tradingUrlList:[], |
| | | businessLicenseUrlList:[], |
| | | representativeVisiable: true, |
| | | registerCapitalVisiable: true, |
| | | fregionVisiable: false, |
| | |
| | | initData() { |
| | | var data = JSON.parse(this.$route.query.data); |
| | | this.form = data; |
| | | this.businessLicenseUrlList.push(data.businessLicense); |
| | | //单位列表进入 |
| | | var stats = data.stats; |
| | | var deptId = data.departmentid; |
| | |
| | | //查询分公司(及总公司)工商信息 |
| | | getBusinessInfo(deptId).then((res) => { |
| | | that.businessObj = res.data.data; |
| | | that.tradingUrlList.push(res.data.data.trading); |
| | | if (that.businessObj.id == -1) { |
| | | that.businessObj.id = null; |
| | | } |
| | | // console.log(that.businessObj,1234546); |
| | | }); |
| | | } |
| | | if (stats == "1") { |
| | |
| | | var that = this; |
| | | getLicenceDetail(this.deptId).then((res) => { |
| | | that.licenceForm = res.data.data; |
| | | that.licenceUrlList.push(res.data.data.url); |
| | | }); |
| | | }, |
| | | getManifestationData() { |