| | |
| | | <view class="component-popup_input"> |
| | | |
| | | <!-- 输入框--> |
| | | <!-- #ifdef H5 --> |
| | | <uni-easyinput class="p9-12" maxlength="100" type="textarea" v-model="content" |
| | | :placeholder="inputplaceholder"></uni-easyinput> |
| | | <!-- #endif --> |
| | | <!-- #ifdef MP --> |
| | | <input v-model="content" :placeholder="inputplaceholder" type="digit" v-if="currentInputKey=='price'"/> |
| | | <input v-model="content" :placeholder="inputplaceholder" type="number" v-if="currentInputKey=='stock'"/> |
| | | <!-- #endif --> |
| | | |
| | | <u-input class="bg-white" v-model="content" :placeholder="inputplaceholder" type="digit" v-if="currentInputKey=='price'"/> |
| | | <u-input class="bg-white" v-model="content" :placeholder="inputplaceholder" type="number" v-if="currentInputKey=='stock'"/> |
| | | |
| | | <!-- 提交按钮 --> |
| | | <view class="button-green" @click="submitValue">提交</view> |