Commit bf1a2ed0 authored by 123zhang's avatar 123zhang

国际会啊

parent 6bb0e749
......@@ -1420,4 +1420,14 @@ export const visaT = {
qsrlingdui:'请输入领队',
qxzmoban:'请选择模板',
Regularflights:'常用航班',
qtxrank:'请填写排序',
addApplicant:'添加申请人',
rapplicantxx:'复制申请人信息',
qtxzwx:'请填写中文姓',
qtxzwm:'请填写中文名',
Completionover:'办理完成',
sfshanchubd:'是否删除绑定?',
qxzzzdqzlx:'请选择正确的签证类型!',
qxzxybddry:"请选择需要绑定的人员",
v_Othervisas:'其他签证'
}
\ No newline at end of file
......@@ -26,7 +26,7 @@
{{$t('visa.v_tvisa')}}
<el-dropdown-menu slot="dropdown" >
<el-dropdown-item v-for="item in VisaManagementList" :key='item.Id' v-if="item.IsGroupSigned==1" :command='{id:item.Id,type:2}'>{{item.Name}}</el-dropdown-item>
<el-dropdown-item v-if="LineID!=14" :command='{id:-1,type:2}'>{{$t('visa.v_Othervisas')}}</el-dropdown-item>
<el-dropdown-item v-if="LineID!=14" :command='{id:-1,type:2}'>{{$t('visaT.v_Othervisas')}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
......@@ -34,7 +34,7 @@
{{$t('visa.v_gvisa')}}
<el-dropdown-menu slot="dropdown" >
<el-dropdown-item v-for="item in VisaManagementList" :key='item.Id' v-if="item.IsOrderSigned==1" :command='{id:item.Id,type:1}'>{{item.Name}}</el-dropdown-item>
<el-dropdown-item v-if="LineID!=14" :command='{id:-1,type:1}'>{{$t('visa.v_Othervisas')}}</el-dropdown-item>
<el-dropdown-item v-if="LineID!=14" :command='{id:-1,type:1}'>{{$t('visaT.v_Othervisas')}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
......@@ -85,9 +85,9 @@
</span>
<span v-else>
<span v-if="item.VisaCountryType!=0">
<span v-if="item.VisaManageStatus==1">未办理</span>
<span v-if="item.VisaManageStatus==2">办理中</span>
<span v-if="item.VisaManageStatus==3">办理完成</span>
<span v-if="item.VisaManageStatus==1">{{$t('visa.v_weibanli')}}</span>
<span v-if="item.VisaManageStatus==2">{{$t('visa.v_banlizhong')}}</span>
<span v-if="item.VisaManageStatus==3">{{$t('visaT.Completionover')}}</span>
</span>
</span>
......@@ -122,17 +122,17 @@ export default {
StatusList:[
{
Id:'-1',
Name:'不限'
Name:this.$t('pub.unlimitedSel')
},{
Id:'0',
Name:'待处理'
Name:this.$t('Airticket.Air_toProcessed')
},
{
Id:'1',
Name:'通过'
Name: this.$t('visa.v_tongguo')
},{
Id:'2',
Name:'拒签'
Name:this.$t('visa.v_jujue')
},
],
LineID:0,
......@@ -171,16 +171,16 @@ export default {
},err=>{})
},
deletelist(id){//删除提示
this.$confirm('是否删除绑定?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
this.$confirm(this.$t('visaT.sfshanchubd'), this.$t('tips.tips'), {
confirmButtonText: this.$t('pub.sureBtn'),
cancelButtonText: this.$t('pub.cancelBtn'),
type: 'warning'
}).then(() => {
this.deleteTshi(id)
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
message: this.$t('tips.cancleDelete')
});
});
},
......@@ -196,11 +196,11 @@ export default {
},
bindVisa(command){ //绑定签证类型
if(command.id>0&&this.LineID!=14){
this.$message.error('请选择正确的签证类型!')
this.$message.error(this.$t('visaT.qxzzzdqzlx'))
return;
}
if(this.checkList.length==0){
this.$message.error('请选择需要绑定的人员')
this.$message.error(this.$t('visaT.qxzxybddry'))
return
}
let msg = {
......
This diff is collapsed.
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