Commit 5f06733b authored by FE-安焕焕's avatar FE-安焕焕 👣

修改样式问题和邀请面试问题

parent e46fda02
...@@ -366,8 +366,8 @@ ...@@ -366,8 +366,8 @@
</div> </div>
<div slot='footer' style="text-align:center;position:relative;" class="Ubt"> <div slot='footer' style="text-align:center;position:relative;" class="Ubt">
<Button type='primary' @click='emailModalPush'>取消</Button> <Button type='primary' @click='emailModalPush'>取消</Button>
<Button type='primary' @click='modal10=true' v-show="this.isShowAll==false" :disabled="!isDisable">发送</Button> <Button type='primary' @click='submit' v-show="this.isShowAll==false">发送</Button>
<Button type='primary' @click='modal10=true' v-show="this.isShowAll==true" :disabled="!isDisable">添加并发送</Button> <Button type='primary' @click='submit' v-show="this.isShowAll==true">添加并发送</Button>
<Checkbox v-model="formInline.sendWeixin" class='wechat'><span>微信通知面试官</span></Checkbox> <Checkbox v-model="formInline.sendWeixin" class='wechat'><span>微信通知面试官</span></Checkbox>
</div> </div>
</Modal> </Modal>
...@@ -381,7 +381,7 @@ ...@@ -381,7 +381,7 @@
</div> </div>
<div slot='footer' style="text-align:center"> <div slot='footer' style="text-align:center">
<Button type='primary' @click='modal10=false'>取消</Button> <Button type='primary' @click='modal10=false'>取消</Button>
<Button type='primary' @click="confireSendEmail" :disabled="!isDisable">确定</Button> <Button type='primary' @click="confireSendEmail">确定</Button>
</div> </div>
</Modal> </Modal>
<!-- 转发邮件 --> <!-- 转发邮件 -->
...@@ -452,7 +452,6 @@ import {mapState} from 'vuex' ...@@ -452,7 +452,6 @@ import {mapState} from 'vuex'
callback() callback()
} }
const emailValidata = (rule, value, callback) => { const emailValidata = (rule, value, callback) => {
console.log(rule)
let field = rule.field let field = rule.field
let reg = rule.pattern let reg = rule.pattern
switch(field){ switch(field){
...@@ -1415,6 +1414,8 @@ import {mapState} from 'vuex' ...@@ -1415,6 +1414,8 @@ import {mapState} from 'vuex'
return return
} }
this.emailInline.modalArr=[] this.emailInline.modalArr=[]
this.$refs.emailInline.resetFields()
this.$refs.formInline.resetFields()
this.emailInline.moo = 'TEMP_0001' this.emailInline.moo = 'TEMP_0001'
this.emailMOdal=true this.emailMOdal=true
getEmailMoo().then(res=>{ getEmailMoo().then(res=>{
...@@ -1595,6 +1596,7 @@ import {mapState} from 'vuex' ...@@ -1595,6 +1596,7 @@ import {mapState} from 'vuex'
}); });
return return
} }
this.attachFileList=this.uploadFileList.length==0?'':this.uploadFileList this.attachFileList=this.uploadFileList.length==0?'':this.uploadFileList
this.flowStatusTT=this.emailFlowStatus==''?'':'TO_SEE' this.flowStatusTT=this.emailFlowStatus==''?'':'TO_SEE'
this.UpdateTIMETwo=this.formInline.UpdateTIME==''?'':this.formInline.UpdateTIME this.UpdateTIMETwo=this.formInline.UpdateTIME==''?'':this.formInline.UpdateTIME
...@@ -1945,6 +1947,24 @@ import {mapState} from 'vuex' ...@@ -1945,6 +1947,24 @@ import {mapState} from 'vuex'
}) })
} }
},
submit() {
let flag = false
this.$refs.emailInline.validate(val => {
if (!val) {
flag = true
return
}
})
this.$refs.formInline.validate(val => {
if (!val) {
flag = true
return
}
})
if (!flag){
this.modal10=true
}
} }
}, },
mounted(){ mounted(){
...@@ -2162,9 +2182,12 @@ background:rgba(241,241,241,1); ...@@ -2162,9 +2182,12 @@ background:rgba(241,241,241,1);
width: 2.5%; width: 2.5%;
} }
input { input {
font-size: 15px !important;
cursor: pointer; cursor: pointer;
width: 100%; width: 1.5em;
margin: auto; height: 1.5em;
line-height: 1.5e;
vertical-align: -4px;
} }
.transmit{ .transmit{
position: absolute; position: absolute;
...@@ -2176,7 +2199,7 @@ background:rgba(241,241,241,1); ...@@ -2176,7 +2199,7 @@ background:rgba(241,241,241,1);
cursor: pointer; cursor: pointer;
width: 1.5em; width: 1.5em;
height: 1.5em; height: 1.5em;
line-height: 1.5e; line-height: 1.5em;
vertical-align: -5px; vertical-align: -5px;
} }
.status{ .status{
......
...@@ -2069,9 +2069,12 @@ select{ ...@@ -2069,9 +2069,12 @@ select{
} }
input { input {
cursor: pointer; cursor: pointer;
width: 100%; font-size: 15px !important;
margin: auto; cursor: pointer;
vertical-align: 1px; width: 1.5em;
height: 1.5em;
line-height: 1.5em;
vertical-align: -4px;
} }
.transmit{ .transmit{
position: absolute; position: absolute;
...@@ -2083,7 +2086,7 @@ select{ ...@@ -2083,7 +2086,7 @@ select{
cursor: pointer; cursor: pointer;
width: 1.5em; width: 1.5em;
height: 1.5em; height: 1.5em;
line-height: 1.5e; line-height: 1.5em;
vertical-align: -5px; vertical-align: -5px;
} }
.grey{ .grey{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment