| | |
| | | <template> |
| | | <GlobalWindow |
| | | :title="title" |
| | | width="100%" |
| | | :visible.sync="visible" |
| | | :confirm-working="isWorking" |
| | | @confirm="confirm" |
| | |
| | | <el-form-item label="接收文件邮箱" prop="email"> |
| | | <el-input v-model="form.email" placeholder="请输入" v-trim/> |
| | | </el-form-item> |
| | | <el-form-item label="投保单签章关键字" prop="signKeyword"> |
| | | <el-input v-model="form.signKeyword" placeholder="多个英文逗号隔开" v-trim/> |
| | | <el-form-item label="投保单签章关键字(如有多个关键字,请使用英文分号 ; 隔开)" prop="signKeyword"> |
| | | <el-input v-model="form.signKeyword" placeholder="多个英文分号 ; 隔开" v-trim/> |
| | | </el-form-item> |
| | | <el-button type="primary" @click="add">添加工种</el-button> |
| | | <el-table |
| | |
| | | var validType = (rule, value, callback) => { |
| | | if (this.form.validType === 0 && !value) { |
| | | return callback(new Error('延迟天数不能为空')); |
| | | } else if (!/^[0-9]*[1-9][0-9]*$/.test(value)) { |
| | | return callback(new Error('延迟天数只能为正整数')); |
| | | } |
| | | callback(); |
| | | } |
| | |
| | | }, |
| | | // 查询全部保险公司 |
| | | allCompany() { |
| | | all({ dataType: 2 }) |
| | | all({ dataType: 2, status: 0 }) |
| | | .then(res => { |
| | | console.log(res) |
| | | this.company = res |