新增需求
This commit is contained in:
@@ -7,10 +7,10 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="type-select" v-if="haveHomeQuarantineBtn == 1">
|
||||
<div class="type-item" :class="form.handleType == index ? 'active' : ''" v-for="(item, index) in handlerTypeList" :key="index" @click="handleTypeClick(index)" v-if="index > 0">{{item.dictName}}</div>
|
||||
<div class="type-item" :class="form.handleType == index ? 'active' : 'type-item-'+item.dictValue" v-for="(item, index) in handlerTypeList" :key="index" @click="handleTypeClick(index)" v-if="index > 0">{{item.dictName}}</div>
|
||||
</div>
|
||||
<div class="type-select" v-else>
|
||||
<div class="type-item" :class="form.handleType == index ? 'active' : ''" v-for="(item, index) in handlerTypeList" :key="index" @click="handleTypeClick(index)" v-if="index != 0 && index != 3 && index != 4">{{item.dictName}}</div>
|
||||
<div class="type-item" :class="form.handleType == index ? 'active' : 'type-item-'+item.dictValue" v-for="(item, index) in handlerTypeList" :key="index" @click="handleTypeClick(index)" v-if="index != 0 && index != 3 && index != 4">{{item.dictName}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info mar-b16" v-if="form.handleType == 2">
|
||||
@@ -142,6 +142,16 @@
|
||||
<AiUploader :def.sync="form.fileList" multiple placeholder="上传图片" :limit="9" action="/admin/file/add2"></AiUploader>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
<div class="item">
|
||||
<div class="label">
|
||||
<span class="tips"></span>备注
|
||||
</div>
|
||||
</div>
|
||||
<div class="solid">
|
||||
<textarea placeholder="请输入备注" v-model="form.remarks" maxlength="500"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-height"></div>
|
||||
<div class="footer" @click="submit">提交</div>
|
||||
<u-calendar v-model="showDateSelect" mode="range" min-year="2020" max-date="2050-12-31" @change="dateConfirm"></u-calendar>
|
||||
@@ -306,6 +316,17 @@ export default {
|
||||
border: none;
|
||||
color: #fff;
|
||||
}
|
||||
.type-item-1,
|
||||
.type-item-5{
|
||||
color: #42D784;
|
||||
}
|
||||
.type-item-2,
|
||||
.type-item-3{
|
||||
color: #f46;
|
||||
}
|
||||
.type-item-4{
|
||||
color: #FFA938;
|
||||
}
|
||||
}
|
||||
.item {
|
||||
background-color: #fff;
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
</div>
|
||||
<p> {{item.idNumberText}}</p>
|
||||
<p> {{item.phone}}</p>
|
||||
<!-- <p> 处置意见:{{item.idNumberText}}</p> -->
|
||||
<div class="btn" v-if="item.status != 2" @click.stop="toEdit(item.id)">排查</div>
|
||||
<img src="./components/img/status-img.png" alt="" class="status-img" v-else>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user