Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
center-user
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
center-user
Commits
f7ab7fb7
提交
f7ab7fb7
authored
9月 16, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
updates
上级
104fec85
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
12 行增加
和
4 行删除
+12
-4
View.vue
src/modules/channel/views/View.vue
+9
-3
View.vue
src/modules/user/zws/views/View.vue
+3
-1
没有找到文件。
src/modules/channel/views/View.vue
浏览文件 @
f7ab7fb7
...
@@ -64,6 +64,7 @@ const listOptions1 = $computed(() => {
...
@@ -64,6 +64,7 @@ const listOptions1 = $computed(() => {
<el-descriptions-item
label=
"更新时间"
>
{{
channelInfo
.
updated_time
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"更新时间"
>
{{
channelInfo
.
updated_time
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"法人身份证正面"
>
<el-descriptions-item
label=
"法人身份证正面"
>
<img
<img
style=
"width: 150px"
v-if=
"channelInfo.partner?.company_legal_representative_id_card_front !== null"
v-if=
"channelInfo.partner?.company_legal_representative_id_card_front !== null"
:src=
"channelInfo.partner?.company_legal_representative_id_card_front"
:src=
"channelInfo.partner?.company_legal_representative_id_card_front"
/>
/>
...
@@ -71,23 +72,28 @@ const listOptions1 = $computed(() => {
...
@@ -71,23 +72,28 @@ const listOptions1 = $computed(() => {
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
label=
"法人身份证背面"
>
<el-descriptions-item
label=
"法人身份证背面"
>
<img
<img
style=
"width: 150px"
v-if=
"channelInfo.partner?.company_legal_representative_id_card_back !== null"
v-if=
"channelInfo.partner?.company_legal_representative_id_card_back !== null"
:src=
"channelInfo.partner?.company_legal_representative_id_card_back"
:src=
"channelInfo.partner?.company_legal_representative_id_card_back"
/>
/>
<div
v-else
>
-
</div>
<div
v-else
>
-
</div>
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
label=
"营业执照"
>
<el-descriptions-item
label=
"营业执照"
>
<img
v-if=
"channelInfo.partner?.business_license !== null"
:src=
"channelInfo.partner?.business_license"
/>
<img
style=
"width: 150px"
v-if=
"channelInfo.partner?.business_license !== null"
:src=
"channelInfo.partner?.business_license"
/>
<div
v-else
>
-
</div>
<div
v-else
>
-
</div>
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
label=
"渠道摘要"
>
{{
channelInfo
.
summary
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"渠道摘要"
>
{{
channelInfo
.
summary
||
'-'
}}
</el-descriptions-item>
</el-descriptions>
</el-descriptions>
</AppCard>
</AppCard>
<AppCard
title=
"项目信息"
>
<AppCard
title=
"项目信息"
>
<AppList
v-bind=
"listOptions"
ref=
"appList"
style=
"padding: 0 15px"
></AppList>
<AppList
v-bind=
"listOptions"
ref=
"appList"
></AppList>
</AppCard>
</AppCard>
<AppCard
title=
"渠道成员信息"
>
<AppCard
title=
"渠道成员信息"
>
<AppList
v-bind=
"listOptions1"
ref=
"appList"
style=
"padding: 0 15px"
></AppList>
<AppList
v-bind=
"listOptions1"
ref=
"appList"
></AppList>
</AppCard>
</AppCard>
<AppCard
title=
"渠道控制信息"
>
<AppCard
title=
"渠道控制信息"
>
<el-descriptions
:column=
"2"
>
<el-descriptions
:column=
"2"
>
...
...
src/modules/user/zws/views/View.vue
浏览文件 @
f7ab7fb7
...
@@ -74,7 +74,9 @@ const handleView = () => {
...
@@ -74,7 +74,9 @@ const handleView = () => {
<el-descriptions-item
label=
"系统账号"
>
{{
zwsInfo
.
user_id
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"系统账号"
>
{{
zwsInfo
.
user_id
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"终端"
>
{{
zwsInfo
.
device_name
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"终端"
>
{{
zwsInfo
.
device_name
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"所在城市"
>
{{
zwsInfo
.
city_name
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"所在城市"
>
{{
zwsInfo
.
city_name
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"报名地址"
>
{{
zwsInfo
.
referrer
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"报名地址"
>
<div
style=
"width: 800px; word-break: break-all"
>
{{
zwsInfo
.
referrer
||
'-'
}}
</div></el-descriptions-item
>
</el-descriptions>
</el-descriptions>
</AppCard>
</AppCard>
<AppCard
title=
"状态信息"
>
<AppCard
title=
"状态信息"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论