| | |
| | | <template> |
| | | <template> |
| | | <el-dialog |
| | | :title="'限价提交'" |
| | | :close-on-click-modal="false" |
| | | :visible.sync="visible"> |
| | | <el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()" label-width="120px"> |
| | | <el-form-item label="登录人资金密码" prop="loginSafeword"> |
| | | <el-input v-model="dataForm.loginSafeword" type="password" placeholder="登录人资金密码"></el-input> |
| | | </el-form-item> |
| | | </el-form> |
| | | </el-form> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <el-button @click="visible = false">取消</el-button> |
| | | <el-button type="primary" @click="dataFormSubmit()">确定</el-button> |
| | |
| | | loginSafeword: '', |
| | | }, |
| | | dataRule: { |
| | | loginSafeword: [ |
| | | { required: true, message: '资金密码不能为空', trigger: 'blur' }, |
| | | ], |
| | | remark: [ |
| | | remark: [ |
| | | { required: false, pattern: /\s\S+|S+\s|\S/, message: '输入格式有误', trigger: 'blur' } |
| | | ] |
| | | }, |