1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view class="app-content">
- <view class="header"><view class="log" @tap="fall"></view>{{ navname }}</view>
- <view class="searchInput">
- <uni-easyinput class="uni-mt-5" :inputBorder='false' suffixIcon="scan" v-model="value" placeholder="请输入操作位置" @iconClick="iconClick"></uni-easyinput>
- </view>
- <button type="default" v-if="value==''" class="defaultBtn">保存并提交</button>
- <button type="default" v-else class="sendBtn">保存并提交</button>
- </view>
- </template>
- <script>
- import Nav from '../../components/header/nav.vue'
- export default {
- data() {
- return {
- navname: '操作位置录入',
- value:"",
- }
- },
- created(option) {
- },
- onLoad(){
- },
- onUnload() {
- },
- onShow() {
- },
- mounted() {
- },
- components: {
- Nav
- },
- methods: {
- fall () {
- uni.navigateBack({
- delta: 1
- })
- },
- iconClick(){
- alert("点击")
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .app-content{
- >.header{
- width: 100%;
- height: 4.375rem;
- display: flex;
- justify-content: center;
- align-items: center;
- // background: rgba(49,85,99,1);
- color: rgb(16, 17, 22);
- font-family: Noto Sans SC;
- font-size: 1rem;
- position: relative;
- >.log{
- width: .375rem;
- height: .75rem;
- font-size: .75rem;
- position: absolute;
- left: 1.5rem;
- background: url('../../static/ico@1x.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- >.searchInput{
- width: calc(100% - 2rem);
- margin-left: 1rem;
- border-bottom:1px solid rgb(224, 230, 238);
- color: rgb(48, 51, 57);
- }
- >.defaultBtn{
- width: calc(100% - 2rem);
- margin-left: 1rem;
- height: 44px;
- top: 204px;
- background: rgb(180, 191, 196);
- color: rgb(255, 255, 255);
- border-radius:4px;
- border: none;
- top: 4rem;
- }
- >.sendBtn{
- width: calc(100% - 2rem);
- margin-left: 1rem;
- height: 44px;
- top: 204px;
- background: linear-gradient(179.10deg, rgba(51,161,165,1.00) 11.326%,rgba(59,111,142,1.00) 119.032%,rgba(59,111,142,1.00) 119.032%,rgba(59,111,142,1.00) 119.032%);
- color: rgb(255, 255, 255);
- border-radius:4px;
- border: none;
- top: 4rem;
- }
- }
- </style>
|