Commit 32ffe87e authored by xinzhedeai's avatar xinzhedeai

add:拒绝原因 ui构建

parent 2dd162d4
/** 爱山东网管请求封装
* 请求拦截、相应拦截、错误统一处理
*/
const BASE_URL = 'https://gqyjpt.weihai.cn'
const BASE_URL = 'https://gqyjpt.weihai.cn/prod-api'
// var errors = []
// if(localStorage.getItem('wenti')){
// errors = JSON.parse(localStorage.getItem('wenti'))
......
......@@ -304,3 +304,25 @@ body {
padding-left: 0.2rem;
background-color: #fff;
}
.textareaEle{
border: 0.01rem solid #d8d8d8;
border-radius: 2px;
font-size: .28rem;
width: 95%;
padding: .15rem;
}
.content h5{
margin-top: 0.3rem;
margin-bottom: 0.3rem;
font-family: PingFang SC;
}
.footer-bar{
display: flex; justify-content: space-around;
margin-top: .5rem;
}
.footer-bar .van-button--info{
width:2rem;
}
\ No newline at end of file
......@@ -244,6 +244,34 @@
</div>
</van-form>
<!-- 拒绝弹窗 -->
<van-action-sheet v-model="show4jujue" title=" ">
<div class="content" style="padding:0.5rem 0.4rem 0.5rem; text-align: center;">
<h5 style="text-align: left;font-size: .3rem;">拒绝原因</h5>
<textarea class="textareaEle" v-model="refuseContent" name="" id="" cols="24" rows="3" style="resize: none;"></textarea>
<h5 style="text-align: left;font-size: .3rem;">上报相关部门</h5>
<van-checkbox-group v-model="dept4resuse">
<div v-for="(item, index) in 3" style="overflow: hidden;">
<h5 style="text-align: left;font-size: .3rem;color: #1081E3;font-weight: 500;">标题{{index}}</h5>
<van-checkbox
:key="subIndex"
:name="item"
shape="square"
v-for="(item, subIndex) in 2"
>
{{ '社会事业局'+subIndex }}
</van-checkbox>
</div>
</van-checkbox-group>
<div class="footer-bar">
<van-button type="info" plain size="small" @click="show4jujue=false" >取消</van-button>
<van-button type="info" size="small" @click="show4jujue=false" >确定</van-button>
</div>
</div>
</van-action-sheet>
<!-- 延期操作确认弹窗 -->
<van-action-sheet v-model="show4yanqi" title=" ">
<div class="content" style="padding: 1rem 1rem 0.5rem; text-align: center;">
......
......@@ -74,6 +74,9 @@ window.onload = function () {
reviewRecord: '',
show4yanqi:false,
show4shangbao:false,
show4jujue :true,
refuseContent: '', // 拒绝原因
dept4resuse:[], // 拒绝部门
},
mounted() {
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment