Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄媛媛
ElectricitySheep
Commits
57e2a0ed
Commit
57e2a0ed
authored
Mar 25, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
7dd29b2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
realAuthentication.vue
src/components/tradePavilion/realAuthentication.vue
+13
-6
No files found.
src/components/tradePavilion/realAuthentication.vue
View file @
57e2a0ed
...
...
@@ -73,7 +73,11 @@
</el-form-item>
<el-form-item
label=
"联系电话:"
>
{{
listInfo
.
Mobile
}}
</el-form-item>
<el-form-item
label=
"营业执照:"
>
<img
:src=
"listInfo.BusinessLicense"
style=
"width:250px;"
/>
<el-image
style=
"width: 200px;"
:src=
"listInfo.BusinessLicense"
:preview-src-list=
"srcList"
>
</el-image>
</el-form-item>
</el-form>
</div>
...
...
@@ -96,9 +100,9 @@
<el-form-item
label=
"扩店区域:"
>
{{
listInfo
.
BrandModel
.
StoreExpansion
}}
</el-form-item>
<el-form-item
label=
"商品性质:"
>
{{
listInfo
.
BrandModel
.
ProjectType
}}
</el-form-item>
<el-form-item
label=
"面积要求:"
>
<span
v-if=
"listInfo.BrandModel.AreaRequirement>0"
>
{{
listInfo
.
BrandModel
.
AreaRequirement
}}
</span>
<span
v-if=
"listInfo.BrandModel.EndAreaRequirement>0"
>
-
{{
listInfo
.
BrandModel
.
EndAreaRequirement
}}
</span>
<span
v-if=
"listInfo.BrandModel.AreaRequirement>0"
>
{{
listInfo
.
BrandModel
.
AreaRequirement
}}
-
</span>
<span
v-if=
"listInfo.BrandModel.EndAreaRequirement>0"
>
{{
listInfo
.
BrandModel
.
EndAreaRequirement
}}
</span>
㎡
</el-form-item>
</el-form>
</
template
>
...
...
@@ -127,7 +131,8 @@
loading
:
false
,
tableData
:
[],
//数据列表
isShowInfo
:
false
,
listInfo
:
{}
listInfo
:
{},
srcList
:[]
};
},
created
()
{
...
...
@@ -159,6 +164,8 @@
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
isShowInfo
=
true
;
this
.
listInfo
=
res
.
data
.
data
;
this
.
srcList
=
[];
this
.
srcList
.
push
(
this
.
listInfo
.
BusinessLicense
);
}
})
},
...
...
@@ -183,7 +190,7 @@
}
})
});
}
}
,
},
mounted
()
{}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment