inputPlaceholder:'请填写理由',

     vue 3.0 + element-ui MessageBox弹出框的 让文本框显示文字 placeholder-LMLPHP

 

方法实现如下:

this.$prompt('', '是否确认?', {

          confirmButtonText: '确定',

          cancelButtonText: '取消',

          inputPlaceholder:'请填写理由',

        }).then(({ value }) => {      

          if(value == null || value == ""){

            Message({message: '请填写淘汰原因!',type: 'error', duration: 5 * 1000});

            return;

          }  

          var postData = {aa:opkid,bb:value};

          knockout(postData).then((res) => {

              if(res.success){

                Message({message: '操作成功',type: 'success', duration: 5});

                this.pageDataInit(1);

              }

              else{

                Message({message: '操作失败,'+res.message,type: 'error', duration: 5});

              }

            }).catch(() => {})  

        }).catch(() => {

          this.$message({

            type: 'info',

            message: '取消操作'

          });      

        });

    },

08-03 02:15