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