党员积分
This commit is contained in:
@@ -131,9 +131,12 @@ export default {
|
|||||||
font-family: PingFangSC-Regular, PingFang SC;
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
color: #999;
|
color: #999;
|
||||||
line-height: 36px;
|
line-height: 36px;
|
||||||
overflow:hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
overflow-wrap: break-word;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
.left{
|
.left{
|
||||||
width: 480px;
|
width: 480px;
|
||||||
|
|||||||
@@ -43,7 +43,8 @@ export default {
|
|||||||
integralRuleName: '',
|
integralRuleName: '',
|
||||||
|
|
||||||
typeList: [],
|
typeList: [],
|
||||||
showTypeSelect: false
|
showTypeSelect: false,
|
||||||
|
flag: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
@@ -66,6 +67,10 @@ export default {
|
|||||||
files: this.fileList,
|
files: this.fileList,
|
||||||
partyId: this.user.partyId
|
partyId: this.user.partyId
|
||||||
}
|
}
|
||||||
|
if(this.flag) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.flag = true
|
||||||
this.$instance.post(`/app/apppartyintegraldeclare/addOrUpdate`, params).then((res) => {
|
this.$instance.post(`/app/apppartyintegraldeclare/addOrUpdate`, params).then((res) => {
|
||||||
if(res.code == 0) {
|
if(res.code == 0) {
|
||||||
this.$u.toast('申请成功')
|
this.$u.toast('申请成功')
|
||||||
@@ -111,6 +116,7 @@ export default {
|
|||||||
font-size: 34px;
|
font-size: 34px;
|
||||||
font-family: PingFangSC-Regular, PingFang SC;
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
line-height: 48px;
|
line-height: 48px;
|
||||||
|
width: 500px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.title{
|
.title{
|
||||||
@@ -144,6 +150,7 @@ export default {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 16px 32px;
|
padding: 16px 32px;
|
||||||
|
background-color: #f3f6f9;
|
||||||
.btn{
|
.btn{
|
||||||
width: 686px;
|
width: 686px;
|
||||||
height: 88px;
|
height: 88px;
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
<div class="value" :class="`status`+info.auditStatus">{{ $dict.getLabel('integralDeclareStatus', info.auditStatus) }}</div>
|
<div class="value" :class="`status`+info.auditStatus">{{ $dict.getLabel('integralDeclareStatus', info.auditStatus) }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="info.auditStatus == 1">
|
<div v-if="info.auditStatus == 1">
|
||||||
<div class="info">
|
<div class="info" v-if="info.ruleType == 1">
|
||||||
<div class="label">加分项</div>
|
<div class="label">加分项</div>
|
||||||
<div class="value">{{info.auditType}}</div>
|
<div class="value">{{info.auditType}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
<div class="top">
|
<div class="top">
|
||||||
<p class="title">{{item.description}}</p>
|
<p class="title">{{item.description}}</p>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<div>{{item.integralRuleName}}</div>
|
<div class="rule-name">{{item.integralRuleName}}</div>
|
||||||
<p>{{item.createTime.substring(0, 16)}}</p>
|
<p>{{item.createTime.substring(0, 16)}}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -205,6 +205,9 @@ export default {
|
|||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
.rule-name{
|
||||||
|
max-width: 300rpx;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bottom{
|
.bottom{
|
||||||
|
|||||||
Reference in New Issue
Block a user