Commit 53765b86 authored by youjie's avatar youjie

月结制单 优化界面

parent b820706b
......@@ -133,9 +133,18 @@
</el-select>
</el-form-item>
</el-col>
<el-col :span="4">
<el-col :span="6">
<el-form-item label="金额:">
<el-input v-model="msg.sMoney" class="w64d5" @keyup.native="checkPrice(msg,'sMoney')"></el-input>-<el-input v-model="msg.eMoney" @keyup.native="checkPrice(msg,'eMoney')" class="w64d5"></el-input>
<div style="display: flex;flex-direction: row;flex-wrap: nowrap;">
<div>
<el-input v-model="msg.sMoney"
@keyup.native="checkPrice(msg,'sMoney')" style="width: 100%;"></el-input>
</div>
<span style="padding: 0 10px;">-</span>
<div>
<el-input v-model="msg.eMoney" @keyup.native="checkPrice(msg,'eMoney')" style="width: 100%;"></el-input>
</div>
</div>
</el-form-item>
</el-col>
<el-col :span="6">
......@@ -449,19 +458,6 @@ export default {
{Name:'已结算',Id:'1'},
{Name:'未结算',Id:'2'},
],
transTax:{
FrId: 0,
Fee: "0.0",
loading: false,
ClientType:'',
ClientID:''
},
transactionTax: false,
showID:false,
active:1,
userId:0,
zhuanjiaoBox:false,
searchList:[],
msg:{
pageIndex:1,
pageSize: 8,
......@@ -515,15 +511,6 @@ export default {
PostId:0,
IsLeave:0,
},
zhuanMsg:{
AuditEmId:null,
WorkFlowId:0,
},
//转交信息
zhuanjiaoMsg:{
CreateBy:'',
FrIDList:[]
},
DataList:[],
GetFinancLogList:[],
StatusList:[],
......@@ -536,52 +523,27 @@ export default {
ConditionList:[],
CompanyList:[],
productionDate:[],
approvalDate:[],
transactionDate:[],
missionDate:[],
currencyTypeList:[],
GetCostTypeList:[],
TemplateGetList:[],
AccList:[],
checkList:[],
checkAllList:[],
dateStart:'',
dateEnd:'',
dateArr:'',
status:'1',
type:'1',
loading:false,
LogLoading:false,
isCkedAll: false,
currentPage:1,
total:0,
ChineseStr:'',
mathNumber:'',
DepartIDs:'',
loading2:false,
tableData: [],
pageSize:5,
pageIndex:1,
heightQueryBox:false,
costmode:false,//费用类型的修改弹窗
costmodeHL:false,
bianjiShow: false,
trabeList:[],//修改费用类型的下拉数据
trabeListHL:[],//修改费率下拉数据
}
},
created(){
if(this.$route.query.returnCode){
this.active = this.$route.query.returnCode;
this.msg.Conditon = this.$route.query.returnCode;
}
if(this.$route.query.pageIndex){
this.msg.pageIndex = this.$route.query.pageIndex;
}
if(this.$route.query.Conditon){
this.msg.Conditon = this.$route.query.Conditon;
this.active = parseInt(this.$route.query.Conditon);
}
if(this.$route.query.FrID){
this.msg.FrID = this.$route.query.FrID;
}
......@@ -618,7 +580,6 @@ export default {
let userInfo=this.getLocalStorage();
this.getCompanyMsg.RB_Group_Id= this.employeeMsg.GroupId = this.getDepartmentMsg.RB_Group_Id = userInfo.RB_Group_id; //集团ID
this.DepartIDs = userInfo.RB_Department_Id;
this.userId = userInfo.EmployeeId;
this.msg.EmployeeId= userInfo.EmployeeId;
this.msg.FrID = this.$route.query.FrID?this.$route.query.FrID:0
this.financeinfo_post_GetClientAccountList()
......@@ -671,7 +632,7 @@ export default {
filterMethod(filters){
},
handleCurrentChanges(val){
this.pageIndex = this.msg.pageIndex = val;
this.msg.pageIndex = val;
this.getPageList();
},
AccountType_post_GetList(){ //获取账户类型下拉
......@@ -993,25 +954,7 @@ export default {
}
this.msg.sDate = this.productionDate[0];
this.msg.eDate = this.productionDate[1];
}
if(t==2){ //审批日期
if(!this.approvalDate){
this.dateStart = '';
this.dateEnd = '';
return
}
this.dateStart = this.approvalDate[0];
this.dateEnd = this.approvalDate[1];
}if(t==3){ //交易日期
if(!this.transactionDate){
this.msg.sTradeDate = '';
this.msg.eTradeDate = '';
return
}
this.msg.sTradeDate = this.transactionDate[0];
this.msg.eTradeDate = this.transactionDate[1];
}
if(t==4){ //发团日期
}if(t==4){ //发团日期
if(!this.missionDate){
this.dateStart = '';
this.dateEnd = '';
......
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