123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- <!-- 资质审核-->
- <template>
- <view id="register">
- <viwe :class="checkStatus==0?'tip':'reject'">信息正在审核中,请耐心等待...</viwe>
- <view class="register_li">
- <view class="register_li_min">
- <img class="icon_img" src="@/pages_student/images/icon_zgsq_sqr.png">
- <view>申请人:</view>
- <input v-model="form.name" disabled type="text" >
- </view>
- <view class="register_li_min">
- <img class="icon_img" src="@/pages_student/images/icon_zgsq_dhh.png">
- <view>联系方式:</view>
- <input v-model="form.name" disabled type="text" >
- </view>
- </view>
- <view class="register_li">
- <view class="register_li_min" style="border-bottom:0;">
- <view></view>
- <view>氧气-工业级(10L):</view>
- <input v-model="form.name" disabled type="text" >
- </view>
- </view>
- <view class="register_li">
- <view class="register_li_min">
- <view></view>
- <view>实验地点:</view>
- <input v-model="form.name" disabled type="text" >
- </view>
- <view class="register_li_min">
- <view></view>
- <view>使用期限:</view>
- <input v-model="form.name" disabled type="text" >
- </view>
- <view class="register_li_min">
- <view></view>
- <view>气体用途:</view>
- <input v-model="form.name" disabled type="text" >
- </view>
- <view class="register_li_min">
- <view></view>
- <view>安全措施:</view>
- <input v-model="form.name" disabled type="text" >
- </view>
- <view class="issue_li" style="border-bottom:0;">
- <view></view>
- <view>用气申请表:</view>
- <img class="issue_img" src="@/pages_student/images/img_gysglpt_bg.png">
- </view>
- </view>
- <view v-if="listType==0" class="sub_btn">重新提交</view>
- <view v-if="listType==2" class="sub_btn">重新申请</view>
- </view>
- </template>
- <script>
- import {} from '@/api/apiDemo/index.js'
- import { config } from '@/api/request/config.js'
- export default {
- data() {
- return {
- listType:0,//0回收申请 1配送申请 2货品问题
- form:{
- name:'',
- },
- checkStatus:0,
- pickerArray:['1号车']
- }
- },
- onLoad(option) {
- },
- onShow(){
- },
- methods: {
- bindPickerChange(e){
- let index=e.target.value
- },
- }
- }
- </script>
- <style lang="stylus" scoped>
- #register{
- height:100%;
- width:100%;
- display flex;
- flex-direction column;
- padding-bottom: 220rpx;
- /* 审核中 */
- .tip{
- width: 750rpx;
- background: rgba(255,144,0,0.2);
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FF9000;
- line-height: 28rpx;
- padding: 36rpx 20rpx;
- box-sizing: border-box;
- }
- /* 驳回 */
- .reject{
- width: 750rpx;
- background: #F3DCDC;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #DC0000;
- line-height: 36rpx;
- padding: 36rpx 20rpx;
- box-sizing: border-box;
- }
- .register_li{
- background #fff;
- border-radius:20rpx;
- margin:20rpx 20rpx 0;
- padding:20rpx 0;
- box-sizing: border-box;
- .register_li_min{
- margin:0 26rpx;
- display flex;
- align-items center;
- border-bottom: 1px solid #F5F5F5;
- .icon_img{
- width: 30rpx;
- height: 30rpx;
- margin-right: 12rpx;
- }
- view{
- line-height:100rpx;
- font-size:28rpx;
- }
- view:nth-child(1){
- color:red;
- line-height:28rpx;
- margin-right: 12rpx;
- }
- view:nth-child(2){
- //width:140rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- >input{
- flex:1;
- text-align: right;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- }
- .issue_li{
- margin:34rpx 26rpx 0;
- display flex;
- border-bottom: 1px solid #F5F5F5;
- view:nth-child(1){
- color:red;
- line-height:28rpx;
- margin-right: 12rpx;
- }
- view:nth-child(2){
- //width:140rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .issue_img{
- width: 210rpx;
- height: 210rpx;
- border-radius: 10rpx;
- margin-left:250rpx;
- }
- }
- }
- /* 按钮 */
- .sub_btn{
- width: 650rpx;
- height: 100rpx;
- background: #0183FA;
- border-radius: 20rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 100rpx;
- text-align: center;
- margin-left: 50rpx;
- position: fixed;
- bottom:30rpx;
- }
- }
- /deep/.input-value-border{
- display :none !important;
- }
- </style>
|