Commit 49870fec authored by ly's avatar ly

协议签署发送短信新增tempId

parent e9e3a948
...@@ -247,7 +247,8 @@ export default { ...@@ -247,7 +247,8 @@ export default {
loanNo: '', loanNo: '',
operator: '', operator: '',
context: '', context: '',
mobile: '' mobile: '',
tempId:''
}, },
MessageRules: { MessageRules: {
templateCode: [{ required: true, message: "请选择短信模板", trigger: 'change' }], templateCode: [{ required: true, message: "请选择短信模板", trigger: 'change' }],
...@@ -379,11 +380,12 @@ export default { ...@@ -379,11 +380,12 @@ export default {
this.init() this.init()
}, },
handleSms(row){ handleSms(row){
const { loanNo, clientCell } = row; const { loanNo, clientCell,tempId } = row;
console.log(row,'row11') console.log(row,'row11')
this.MessageDialogVisible = true; this.MessageDialogVisible = true;
this.MessageForm.loanNo = loanNo this.MessageForm.loanNo = loanNo
this.MessageForm.mobile = clientCell this.MessageForm.mobile = clientCell
this.MessageForm.tempId=tempId
this.initMsgContext(); this.initMsgContext();
}, },
// 根据短信模板获取短信内容 // 根据短信模板获取短信内容
......
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