Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录
切换导航
S
shop-new
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
王天霸
shop-new
Commits
889b241b
提交
889b241b
authored
11月 16, 2021
作者:
郑伟娜
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改bug
上级
63818c08
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
7 行增加
和
7 行删除
+7
-7
PanelGroup.vue
src/views/dashboard/PanelGroup.vue
+3
-3
securityFund.vue
src/views/system/asset/securityFund.vue
+4
-4
没有找到文件。
src/views/dashboard/PanelGroup.vue
浏览文件 @
889b241b
...
@@ -106,10 +106,10 @@ export default {
...
@@ -106,10 +106,10 @@ export default {
shopInfo
().
then
(
res
=>
{
shopInfo
().
then
(
res
=>
{
if
(
res
.
code
==
1
)
{
if
(
res
.
code
==
1
)
{
// 是否需要缴纳保证金 0否 1是
// 是否需要缴纳保证金 0否 1是
if
(
res
.
data
.
is_take_bond
==
0
&&
res
.
data
.
bond
>
res
.
data
.
cate_bond
/
2
)
{
if
(
res
.
data
.
is_take_bond
==
1
&&
res
.
data
.
bond
<
res
.
data
.
cate_bond
/
2
)
{
this
.
dialogVisible
=
false
}
else
{
this
.
dialogVisible
=
true
this
.
dialogVisible
=
true
}
else
{
this
.
dialogVisible
=
false
}
}
}
}
})
})
...
...
src/views/system/asset/securityFund.vue
浏览文件 @
889b241b
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
</div>
</div>
</div>
</div>
<div
style=
"text-align: center; margin-top: 50px; width: 100%;"
>
<div
style=
"text-align: center; margin-top: 50px; width: 100%;"
>
<el-button
type=
"primary"
size=
"mini"
style=
"width: 80px;"
@
click=
"payDialog = true"
:disabled=
"
isPay
|| !isShowPay"
>
充值
</el-button>
<el-button
type=
"primary"
size=
"mini"
style=
"width: 80px;"
@
click=
"payDialog = true"
:disabled=
"
!isPay || bond >= cate_bond
|| !isShowPay"
>
充值
</el-button>
<el-button
size=
"mini"
style=
"width: 80px;"
@
click=
"cancellationDialog = true"
:disabled=
"bond
<
=
0
"
>
申请退保
</el-button>
<el-button
size=
"mini"
style=
"width: 80px;"
@
click=
"cancellationDialog = true"
:disabled=
"bond
<
=
0
"
>
申请退保
</el-button>
</div>
</div>
</div>
</div>
...
@@ -220,7 +220,7 @@
...
@@ -220,7 +220,7 @@
<!-- 提交成功提示 -->
<!-- 提交成功提示 -->
<div
style=
"text-align: center;"
v-if=
"isSubmit"
>
<div
style=
"text-align: center;"
v-if=
"isSubmit"
>
<div><i
class=
"el-icon-success"
style=
"color: #67c23a; font-size: 34px;"
></i></div>
<div><i
class=
"el-icon-success"
style=
"color: #67c23a; font-size: 34px;"
></i></div>
<div
style=
"margin: 10px 0 30px;"
>
审
请已提交,工作人员将与您联系,请注意来电
</div>
<div
style=
"margin: 10px 0 30px;"
>
申
请已提交,工作人员将与您联系,请注意来电
</div>
<div
style=
"background: rgba(58, 160, 255, .05); padding: 20px; line-height: 30px;"
>
<div
style=
"background: rgba(58, 160, 255, .05); padding: 20px; line-height: 30px;"
>
<div>
感谢您使用云仓!
</div>
<div>
感谢您使用云仓!
</div>
<div>
您的退保申请已提交,工作人员将与您取得联系核实情况,大约需要1-3个工作日,请您耐心等待。
</div>
<div>
您的退保申请已提交,工作人员将与您取得联系核实情况,大约需要1-3个工作日,请您耐心等待。
</div>
...
@@ -447,8 +447,8 @@
...
@@ -447,8 +447,8 @@
this
.
payForm
.
money
=
this
.
getFixed
(
this
.
cate_bond
-
this
.
bond
)
this
.
payForm
.
money
=
this
.
getFixed
(
this
.
cate_bond
-
this
.
bond
)
// 是否需要缴纳保证金 0
否 1是
// 是否需要缴纳保证金 0
关闭 1打开
if
(
res
.
data
.
is_take_bond
==
0
&&
this
.
bond
>
this
.
cate_bond
/
2
)
{
if
(
res
.
data
.
is_take_bond
==
1
)
{
this
.
isPay
=
true
this
.
isPay
=
true
}
else
{
}
else
{
this
.
isPay
=
false
this
.
isPay
=
false
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论