事件上报
This commit is contained in:
@@ -5,12 +5,11 @@
|
||||
<u-form-item label="转交给" prop="status" required :border-bottom="false" class="first-form" right-icon="arrow-right" v-if="status == 1">
|
||||
<u-input v-model="forms.name" placeholder="请选择转交人员" disabled @click="toSelectUser" />
|
||||
</u-form-item>
|
||||
<u-form-item label="事件分类" prop="groupName" required :border-bottom="false" right-icon="arrow-right" v-if="status != 1">
|
||||
<!-- <u-input v-model="forms.groupName" placeholder="请选择事件分类" /> -->
|
||||
<!-- <u-form-item label="事件分类" prop="groupName" required :border-bottom="false" right-icon="arrow-right" v-if="status != 1">
|
||||
<span @click="show = true" class="right-span" :style="forms.groupName ? '' : 'color:#999;'">{{ forms.groupName || '请选择事件分类' }}</span>
|
||||
|
||||
<u-select v-model="show" :list="myList" value-name="id" label-name="groupName" @confirm="selectStatus"></u-select>
|
||||
</u-form-item>
|
||||
</u-form-item> -->
|
||||
|
||||
<u-form-item :label="status == 3 ? '办结意见' : status == 4 ? '拒绝受理意见' : '办理意见'" prop="content" required :border-bottom="false" label-position="top"
|
||||
class="contents">
|
||||
@@ -30,11 +29,11 @@
|
||||
<span>转交事件</span>
|
||||
</div>
|
||||
|
||||
<div class="btn" v-if="this.status == 3" @click="confirm">
|
||||
<div class="btn" v-if="this.status == 4" @click="confirm">
|
||||
<span>拒绝受理</span>
|
||||
</div>
|
||||
|
||||
<div class="btn" v-if="this.status == 4" @click="confirm">
|
||||
<div class="btn" v-if="this.status == 3" @click="confirm">
|
||||
<span>我已办结</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -56,7 +55,7 @@ export default {
|
||||
},
|
||||
flag: false,
|
||||
show: false,
|
||||
status: '', //1转交 3拒绝受理 4我已办结
|
||||
status: '', //1转交 3我已办结 4拒绝受理
|
||||
myList: [],
|
||||
id: '',
|
||||
selectUser: {},
|
||||
|
||||
@@ -175,7 +175,7 @@
|
||||
</div>
|
||||
|
||||
|
||||
<div class="fixedBtn" v-if="data.rightType < 3 && data.rightType != null">
|
||||
<div class="fixedBtn" v-if="data.rightType < 4 && data.rightType != null">
|
||||
<div class="flex-btn" v-if="data.rightType == 0">
|
||||
<div class="refuse" @click="toContent(4)">拒绝受理</div>
|
||||
<div class="confirm" @click="toContent(3)">我来受理</div>
|
||||
@@ -183,6 +183,8 @@
|
||||
|
||||
<div class="change-btn" v-if="data.rightType == 1" @click="toContent(2)">前往办理</div>
|
||||
|
||||
<div class="change-btn" v-if="data.rightType == 3" @click="toContent(1)">转交事件</div>
|
||||
|
||||
<div class="flex-btn" v-if="data.rightType == 2">
|
||||
<div @click="toContent(1)">转交事件</div>
|
||||
<div class="confirm" @click="toContent(5)">前往办理</div>
|
||||
|
||||
@@ -175,6 +175,7 @@ export default {
|
||||
}
|
||||
|
||||
.list-content {
|
||||
padding-bottom: 180px;
|
||||
.title {
|
||||
line-height: 112px;
|
||||
background: #FFF;
|
||||
|
||||
Reference in New Issue
Block a user