41 lines
1.1 KiB
Vue
41 lines
1.1 KiB
Vue
<template>
|
|
<view class="ticket-handle">
|
|
<uni-nav-bar @clickLeft="goBack()" class="nav-bar" height="110rpx" leftWidth="200rpx" leftText="加签"
|
|
leftIcon="left" border backgroundColor="#2cade8" color="#fff" fixed statusBar shadow></uni-nav-bar>
|
|
<view class="ticket-info">
|
|
<view class="form-item" style="height: 300rpx;">
|
|
<view class="form-left-text">
|
|
<text class="star">*</text>
|
|
<text>加签原因</text>
|
|
</view>
|
|
<textarea class="apply-reason-text" v-model="form.name" maxlength="250" placeholder="请输入" />
|
|
</view>
|
|
<view class="btn" style="display: flex;justify-content: space-between;">
|
|
<button class="handleBtn" type="primary" @click="addNode">提交</button>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style>
|
|
.ticket-handle {
|
|
background-color: #f3fbff;
|
|
padding-bottom: 227rpx;
|
|
}
|
|
.ticket-info {
|
|
width: 720rpx;
|
|
margin: 0 auto;
|
|
background-color: #FFFFFF;
|
|
border-radius: 10rpx;
|
|
padding: 25rpx 32rpx;
|
|
box-sizing: border-box;
|
|
margin-top: 24rpx;
|
|
}
|
|
.fixed-assets-list .ticket-info {
|
|
padding-top: 0rpx;
|
|
}
|
|
</style> |