123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <view class="a_mask">
- <form class="a_box" @submit="formSubmit" @reset="formReset">
- <view class="a_head">
- {{title}}
- </view>
- <view class="a_input">
- <input :type="type" :value="value" :placeholder="placeholder" :name="name"/>
- </view>
- <view class="a_btn">
-
- <button form-type="reset" :style="{color:cancelColor}">{{cancelText}}</button>
- <button form-type="submit" :style="{color:confirmColor}">{{confirmText}}</button>
- </view>
- </form>
- </view>
- </template>
- <script>
- export default {
- props:{
- title:{
- type:String,
- default:'提示'
- },
- placeholder:{
- type:String,
- default:'请点击输入'
- },
- name:{
- type:String,
- default:'text'
- },
- type:{
- type:String,
- default:'text'
- },
- value:{
- type:String,
- default:''
- },
- cancelColor:{
- type:String,
- default:'#999999'
- },
- confirmColor:{
- type:String,
- default:'#333333'
- },
- cancelText:{
- type:String,
- default:'取消'
- },
- confirmText:{
- type:String,
- default:'确定'
- },
- },
- data() {
- return {
- };
- },
- methods: {
- formSubmit: function(e) {
- console.log(e)
- let _formdata = e.detail.value
- this.$emit('confirm',_formdata)
- },
- formReset: function(e) {
- this.$emit('cancel')
- }
- }
- }
- </script>
- <style lang="scss">
- .a_mask{
- position: fixed;
- z-index: 99999;
- background-color: rgba(0,0,0,0.5);
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- .a_box{
- width: 500upx;
- overflow: hidden;
-
- background-color: #fff;
- border-radius: 10upx;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
-
- .a_head{
- text-align: center;
- font-size: 30upx;
- line-height: 88upx;
- }
- .a_input{
- padding: 30upx 20upx;
- font-size: 28upx;
- input{
- text-align: center;
- }
- }
- .a_btn{
- text-align: center;
- font-size: 30upx;
- line-height: 88upx;
- display: flex;
- justify-content: space-between;
- border-top: 1upx solid #f5f5f5;
- button{
- width: 50%;
- background-color: #fff;
- font-size: 30upx;
- border-radius: 0upx;
- padding: 0;
- &::after{
- border:none
- }
- &:first-child{
- border-right: 1upx solid #f5f5f5;
- color: #999999;
- box-sizing: border-box;
- }
- &:last-child{
- color: #333;
- }
- }
-
- }
- }
- }
- </style>
|