1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <dialog-base ref="baseDialog" title="搜索">
- <view class="list-container">
- <input class="input-control" v-model="keywork" placeholder='批次号或产品描述' />
- <view class="login-btn uni-row" @click=""><text class="label">确认</text></view>
- </view>
- </dialog-base>
- </template>
- <script setup>
- import {
- ref,
- getCurrentInstance
- } from 'vue'
- import {
- defineProps
- } from 'vue'
- const baseDialog = ref(null)
- const keywork = ref("");
- function open() {
- resetPage();
- baseDialog.value.open();
- init();
- }
- function resetPage() {
- }
- defineExpose({
- open
- })
- function close() {
- baseDialog.value.close()
- }
- function init() {
- }
- </script>
- <style lang="scss">
- .dialog-body {
- .msg {
- height: 300rpx;
- justify-content: center;
- align-items: center;
- }
- .btn-container {
- margin-top: 32rpx;
- .btn {
- flex: 1;
- margin: 0 10rpx;
- }
- }
- .input-control {
- border: 1px solid #666666;
- padding: 16rpx 24rpx;
- font-size: 32rpx;
- margin-top: 40rpx;
- }
- .login-btn {
- // background-color: #999999;
- background-color: #1684fc;
- margin-top: 32rpx;
- justify-content: center;
- padding: 16rpx 0;
- .label {
- font-size: 40rpx;
- color: #FFFFFF;
- }
- }
- }
- </style>
|