bug
This commit is contained in:
@@ -43,7 +43,7 @@ export default {
|
||||
if(this.current > this.pages) return
|
||||
this.$instance.post(`/app/approval-process-def/list-xcx?processType=2`, null, {
|
||||
params: {
|
||||
size: 10,
|
||||
size: 20,
|
||||
current: this.current
|
||||
},
|
||||
withoutToken: true,
|
||||
|
||||
@@ -68,7 +68,10 @@ export default {
|
||||
if (res.code == 0) {
|
||||
this.pages = res.data.pages
|
||||
res.data.records.map((item) => {
|
||||
item.ladderRule = JSON.parse(item.ladderRule)
|
||||
if(item.ladderRule) {
|
||||
item.ladderRule = JSON.parse(item.ladderRule)
|
||||
}
|
||||
|
||||
})
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records]
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</div>
|
||||
<div class="text-area">
|
||||
<div class="title"><span class="tips">*</span>申请描述</div>
|
||||
<u-input v-model="description" type="textarea" :height="200" placeholder="请输入描述信息" placeholder-style="font-size:20px;color:#999;" maxlength="500" />
|
||||
<u-input v-model="description" type="textarea" :height="200" placeholder="请输入描述信息" placeholder-style="font-size:20px;color:#999;" maxlength="500" :custom-style="customStyle"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="upload">
|
||||
@@ -44,7 +44,8 @@ export default {
|
||||
|
||||
typeList: [],
|
||||
showTypeSelect: false,
|
||||
flag: false
|
||||
flag: false,
|
||||
customStyle: {'font-size':'17px'},
|
||||
};
|
||||
},
|
||||
onLoad(options) {
|
||||
@@ -73,7 +74,7 @@ export default {
|
||||
this.flag = true
|
||||
this.$instance.post(`/app/apppartyintegraldeclare/addOrUpdate`, params).then((res) => {
|
||||
if(res.code == 0) {
|
||||
this.$u.toast('申请成功')
|
||||
this.$u.toast('提交成功')
|
||||
setTimeout(() => {
|
||||
uni.navigateBack()
|
||||
}, 500)
|
||||
@@ -152,6 +153,7 @@ export default {
|
||||
width: 100%;
|
||||
padding: 16px 32px;
|
||||
background-color: #f3f6f9;
|
||||
z-index: 999;
|
||||
.btn{
|
||||
width: 686px;
|
||||
height: 88px;
|
||||
|
||||
@@ -32,9 +32,9 @@
|
||||
<div class="value" :class="`status`+info.auditStatus">{{ $dict.getLabel('integralDeclareStatus', info.auditStatus) }}</div>
|
||||
</div>
|
||||
<div v-if="info.auditStatus == 1">
|
||||
<div class="info" v-if="info.ruleType == 1">
|
||||
<div class="info" v-if="info.integralRule && info.integralRule.ruleType == 1">
|
||||
<div class="label">加分项</div>
|
||||
<div class="value">{{info.auditType}}</div>
|
||||
<div class="value">{{info.integralRule.eventName}}</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
<div class="label">积分调整</div>
|
||||
|
||||
Reference in New Issue
Block a user