Commit 69f88c0e authored by zhengke's avatar zhengke

修改

parent 1bfd58f3
...@@ -1194,7 +1194,7 @@ ...@@ -1194,7 +1194,7 @@
VideoType: 1, //视频填充方式(0默认,1-填充) VideoType: 1, //视频填充方式(0默认,1-填充)
GoodsPageType:0, //分类 0全部 1商城 2校园 GoodsPageType:0, //分类 0全部 1商城 2校园
Remark:'', //备注 Remark:'', //备注
IsNoTax:0 //是否可开发票 IsNoTax:0 //是否可开发票 0是 1否
}, },
predefineColors: [ predefineColors: [
'#000000', '#000000',
......
...@@ -90,7 +90,8 @@ ...@@ -90,7 +90,8 @@
return { return {
msg: { msg: {
User_Id: '', //提现人 User_Id: '', //提现人
Money: '' //金额 Money: '', //金额
CreateBy:0 //创建人
}, },
//提现记录msg //提现记录msg
awalMsg: { awalMsg: {
...@@ -131,6 +132,10 @@ ...@@ -131,6 +132,10 @@
this.msg.Money = this.TixianMoney; this.msg.Money = this.TixianMoney;
this.Error("提现金额不能超过开票总额"); this.Error("提现金额不能超过开票总额");
} }
let mall_userInfo = JSON.parse(localStorage.mall_userInfo);
if(mall_userInfo.EmpId){
this.msg.CreateBy = mall_userInfo.EmpId;
}
this.apipost('/api/order/SetInvoiceOnlineTrade', this.msg, this.apipost('/api/order/SetInvoiceOnlineTrade', this.msg,
res => { res => {
this.loading = false; this.loading = false;
......
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