mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-08-08 19:52:43 +08:00
1
This commit is contained in:
parent
01bb968626
commit
c4665909f4
@ -116,7 +116,6 @@ Page({
|
|||||||
let color = "#3794FF"
|
let color = "#3794FF"
|
||||||
if (detail.status == 0) { // 待审核
|
if (detail.status == 0) { // 待审核
|
||||||
color = "#3794FF"
|
color = "#3794FF"
|
||||||
verifyShow = true;
|
|
||||||
} else if (detail.status == 1) { // 审核通过
|
} else if (detail.status == 1) { // 审核通过
|
||||||
color = "#62c855"
|
color = "#62c855"
|
||||||
} else if (detail.status == 2) { // 审核驳回
|
} else if (detail.status == 2) { // 审核驳回
|
||||||
@ -422,6 +421,9 @@ Page({
|
|||||||
_this.setData({
|
_this.setData({
|
||||||
dialogShow: false,
|
dialogShow: false,
|
||||||
})
|
})
|
||||||
|
// 获取详情
|
||||||
|
_this.getDetail()
|
||||||
|
//
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
_this.setData({
|
_this.setData({
|
||||||
verifyShow: false
|
verifyShow: false
|
||||||
|
@ -44,11 +44,11 @@
|
|||||||
<view class="label must">来访事由</view>
|
<view class="label must">来访事由</view>
|
||||||
<van-field value="{{ detail.visitContent }}" bind:input="fieldInput" data-name="visitContent" input-class="input" placeholder="请输入" border="{{ false }}" input-align="right" />
|
<van-field value="{{ detail.visitContent }}" bind:input="fieldInput" data-name="visitContent" input-class="input" placeholder="请输入" border="{{ false }}" input-align="right" />
|
||||||
</view>
|
</view>
|
||||||
<view class="rowView self">
|
<view class="rowView self" wx:if="{{type != 'add'}}">
|
||||||
<view class="label">审核状态</view>
|
<view class="label">审核状态</view>
|
||||||
<view class="input" style="color: {{detail.fontColor}};">{{detail.statusName}}</view>
|
<view class="input" style="color: {{detail.fontColor}};">{{detail.statusName}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="rowView self">
|
<view class="rowView self" wx:if="{{type != 'add'}}">
|
||||||
<view class="label">审核内容</view>
|
<view class="label">审核内容</view>
|
||||||
<view class="input">{{detail.rejectContent ? detail.rejectContent : ''}}</view>
|
<view class="input">{{detail.rejectContent ? detail.rejectContent : ''}}</view>
|
||||||
</view>
|
</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user