Commit f24b9ea9 authored by linxin's avatar linxin

解决冲突

parents 0bf1b9f6 fc5d4218
Pipeline #4460 canceled with stages
...@@ -37,7 +37,7 @@ export default { ...@@ -37,7 +37,7 @@ export default {
vm.$post(url, param).then(function (res) { vm.$post(url, param).then(function (res) {
vm.hlsPopup.hideLoading() vm.hlsPopup.hideLoading()
if (res.result === 'S') { if (res.result === 'S') {
vm.notice_detail = res.info.notice_detail vm.notice_detail = res.info.notice_body
} else { } else {
hlsPopup.showLongCenter(res.message) hlsPopup.showLongCenter(res.message)
} }
...@@ -73,6 +73,8 @@ export default { ...@@ -73,6 +73,8 @@ export default {
line-height: 20px; line-height: 20px;
p{ p{
text-indent: 35px; text-indent: 35px;
color: #666666;
font-size: 14px;
} }
} }
} }
......
...@@ -162,6 +162,7 @@ export default { ...@@ -162,6 +162,7 @@ export default {
upLoadObj: defaultImg, // 上传的图片 upLoadObj: defaultImg, // 上传的图片
flag: true, flag: true,
isAGENT: false, isAGENT: false,
popSetect: false, // true:待提交或者审核未通过
elecStatusDesceibe: '', elecStatusDesceibe: '',
user_bp_status: '', user_bp_status: '',
user_bp_class: '', user_bp_class: '',
...@@ -313,6 +314,7 @@ export default { ...@@ -313,6 +314,7 @@ export default {
} else if (this.bp_id && this.user_bp_status === 'NEW') { } else if (this.bp_id && this.user_bp_status === 'NEW') {
this.description = '待提交' this.description = '待提交'
this.approveBtn = false this.approveBtn = false
this.popSetect = true// 是否弹出选择框
} else if (this.bp_id && this.user_bp_status === 'APPROVED') { } else if (this.bp_id && this.user_bp_status === 'APPROVED') {
this.description = '解除绑定' this.description = '解除绑定'
this.approveBtn = true this.approveBtn = true
...@@ -322,6 +324,7 @@ export default { ...@@ -322,6 +324,7 @@ export default {
) { ) {
this.description = '审核未通过' this.description = '审核未通过'
this.approveBtn = false this.approveBtn = false
this.popSetect = true// 是否弹出选择框
} else { } else {
this.description = '审批中' this.description = '审批中'
this.approveBtn = false this.approveBtn = false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment