Commit ffbd3384 by 潘际乾
parents 6b02978c 4ab1c7a8
...@@ -5,6 +5,9 @@ export default { ...@@ -5,6 +5,9 @@ export default {
data(){ data(){
return {} return {}
}, },
mounted(){
this.restoreDisplay()
},
methods:{ methods:{
init(params){ init(params){
params = params||{} params = params||{}
...@@ -41,6 +44,14 @@ export default { ...@@ -41,6 +44,14 @@ export default {
params = params||{} params = params||{}
let data = Utils.flatObject(this.model) let data = Utils.flatObject(this.model)
return Api.post(this.declareParams.trnName+"/pending",{...data,params}) return Api.post(this.declareParams.trnName+"/pending",{...data,params})
},
restoreDisplay()
{
let inr = this.$route.query.trn
if(!inr)
return
let data = Api.post("display/"+inr)
console.log(data)
} }
} }
} }
\ No newline at end of file
...@@ -40,34 +40,23 @@ function defaultDlmft() { ...@@ -40,34 +40,23 @@ function defaultDlmft() {
function defaultButimg() { function defaultButimg() {
} }
async function defaultDflg() { async function defaultDflg() {
let rtnmsg = await Api.post("sptsel/default/dflg", Utils.flatObject(this.model)) const that = this;
if (rtnmsg.respCode == "AAAAAA") { that.executeDefault("dflg").then(res => {
//TODO 处理数据逻辑 that.model.dflg = res.data.dflg;
//this.model = Utils.copyValueFromVO(this.model, rtnmsg.data); })
}
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
} }
async function defaultYptinf() { async function defaultYptinf() {
let rtnmsg = await Api.post("sptsel/default/yptinf", Utils.flatObject(this.model)) const that = this;
if (rtnmsg.respCode == "AAAAAA") { that.executeDefault("yptinf").then(res => {
//TODO 处理数据逻辑 //TODO 处理数据逻辑
//this.model = Utils.copyValueFromVO(this.model, rtnmsg.data); })
}
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
} }
function defaultUsfmodUsrExtkey() { function defaultUsfmodUsrExtkey() {
} }
async function defaultCheckbox() { async function defaultCheckbox() {
let rtnmsg = await Api.post("sptsel/default/sptstm", Utils.flatObject(this.model)) const that = this;
if (rtnmsg.respCode == "AAAAAA") { that.executeDefault("sptstm").then(res => {
//TODO 处理数据逻辑 //TODO 处理数据逻辑
this.model.stmData.data = rtnmsg.data.sptstm.rows; that.$refs.Menu.stmData.data = res.data.sptstm.rows;
} })
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
} }
...@@ -56,7 +56,11 @@ function defaultTrnInfdsp() { ...@@ -56,7 +56,11 @@ function defaultTrnInfdsp() {
} }
function defaultRecpanIncben() { function defaultRecpanIncben() {
} }
function defaultUsrcon() { async function defaultUsrcon() {
const that = this;
that.executeDefault("usrcon").then(res => {
this.model.usrcon = res.data.usrcon;
})
} }
function defaultImgmodHisimg() { function defaultImgmodHisimg() {
} }
...@@ -73,20 +77,20 @@ function defaultImgmodNewhisimg() { ...@@ -73,20 +77,20 @@ function defaultImgmodNewhisimg() {
function defaultRecpanCpltxt() { function defaultRecpanCpltxt() {
} }
async function defaultTrncorcoDflg() { async function defaultTrncorcoDflg() {
let rtnmsg = await Api.post("trnrel/default/trncorco.dflg", Utils.flatObject(this.model)) const that = this;
if (rtnmsg.respCode == "AAAAAA") { that.executeDefault("trncorco.dflg").then(res => {
//TODO 处理数据逻辑 that.model.trncorco.dflg = res.data.trncorco_dflg;
this.model = Utils.copyValueFromVO(this.model, rtnmsg.data); })
}
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
} }
function defaultOrddsp() { function defaultOrddsp() {
} }
function defaultRecpanUsrExtkey() { function defaultRecpanUsrExtkey() {
} }
function defaultAtptxt() { async function defaultAtptxt() {
const that = this;
that.executeDefault("atptxt").then(res => {
that.model.atptxt = res.data.atptxt;
})
} }
function defaultRecpanAckgrpRecSndref() { function defaultRecpanAckgrpRecSndref() {
} }
......
...@@ -5,28 +5,30 @@ export default { ...@@ -5,28 +5,30 @@ export default {
this.$parent.$parent.$parent.$parent.$refs.modelForm.validate(async valid => { this.$parent.$parent.$parent.$parent.$refs.modelForm.validate(async valid => {
if (!valid) if (!valid)
return; return;
let rtnmsg = await Api.post("trnrel/executeRule/searow", Utils.flatObject(this.model)) const that = this.$parent.$parent.$parent.$parent;
if (rtnmsg.respCode == "AAAAAA") { that.executeRule("searow").then(res => {
//TODO 处理数据逻辑 //TODO 处理数据逻辑
this.stmData.data = rtnmsg.data.trncorco_trnstm.rows; that.$refs.inftrnps.stmData.data = res.data.trncorco_trnstm.rows;
} })
else { // let rtnmsg = await Api.post("trnrel/executeRule/searow", Utils.flatObject(this.model))
this.$notify.error({ title: '错误', message: '服务请求失败!' }); // if (rtnmsg.respCode == "AAAAAA") {
} // //TODO 处理数据逻辑
// this.stmData.data = rtnmsg.data.trncorco_trnstm.rows;
// }
// else {
// this.$notify.error({ title: '错误', message: '服务请求失败!' });
// }
}) })
}, },
onSeajbh() { onSeajbh() {
this.$parent.$parent.$parent.$parent.$refs.modelForm.validate(async valid => { this.$parent.$parent.$parent.$parent.$refs.modelForm.validate(async valid => {
if (!valid) if (!valid)
return; return;
let rtnmsg = await Api.post("trnrel/seajbh", Utils.flatObject(this.model)) const that = this.$parent.$parent.$parent.$parent;
if (rtnmsg.respCode == "AAAAAA") { that.executeRule("seajbh").then(res => {
//TODO 处理数据逻辑 //TODO 处理数据逻辑
that.$refs.inftrnps.stmData.data = res.data.trncorco_trnstm.rows;
} })
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
}) })
}, },
onSeactr() { onSeactr() {
......
...@@ -31,6 +31,7 @@ export default { ...@@ -31,6 +31,7 @@ export default {
}, },
data(){ data(){
return { return {
trnName:"sptsel",
model:new Sptsel().data, model:new Sptsel().data,
checkRules: Check, checkRules: Check,
defaultRules: Default, defaultRules: Default,
...@@ -45,17 +46,12 @@ export default { ...@@ -45,17 +46,12 @@ export default {
methods:{...Event}, methods:{...Event},
mounted:async function(){ mounted:async function(){
console.log("进入sptsel交易"); console.log("进入sptsel交易");
let rtnmsg = await Api.post("sptsel/init",Utils.flatObject(this.model)) const that = this;
if(rtnmsg.respCode == "AAAAAA") that.init(that.model).then(res => {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
this.model = Utils.copyValueFromVO(this.model, rtnmsg.data) that.model = Utils.copyValueFromVO(that.model, res.data)
this.$refs.Menu.stmData.columns = rtnmsg.data.sptstm.rows; that.$refs.Menu.stmData.columns = res.data.sptstm.rows;
} })
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
} }
} }
</script> </script>
......
...@@ -47,6 +47,7 @@ export default { ...@@ -47,6 +47,7 @@ export default {
}, },
data(){ data(){
return { return {
trnName:"trnrel",
model: new Trnrel().data, model: new Trnrel().data,
checkRules: Check, checkRules: Check,
defaultRules: Default, defaultRules: Default,
...@@ -65,19 +66,12 @@ export default { ...@@ -65,19 +66,12 @@ export default {
}, },
mounted:async function(){ mounted:async function(){
console.log("进入trnrel交易"); console.log("进入trnrel交易");
const that = this;
that.init(that.model).then(res => {
let rtnmsg = await Api.post("trnrel/init", Utils.flatObject(this.model))
if(rtnmsg.respCode == "AAAAAA")
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
Utils.copyValueFromVO(this.model, rtnmsg.data); that.model = Utils.copyValueFromVO(that.model, res.data)
this.$refs.inftrnps.stmData.columns=rtnmsg.data.trncorco_trnstm.rows that.$refs.inftrnps.stmData.columns=res.data.trncorco_trnstm.rows
} })
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
} }
} }
</script> </script>
......
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