Commit 445741f3 by zhengxiaokui

zxk

parent 9b789de7
...@@ -222,7 +222,6 @@ export default { ...@@ -222,7 +222,6 @@ export default {
msg = (ms ? ms + '\r\n' : '') + msg msg = (ms ? ms + '\r\n' : '') + msg
} }
_.set(this.model, modelUrl[k], msg); _.set(this.model, modelUrl[k], msg);
this[modelUrl[k]] = msg
} }
}, },
/** /**
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="19"> <c-blkTextarea :model="model" v-bind="blk"> </c-blkTextarea>
<!-- <c-col :span="19">
<el-form-item label="附加条件" prop="ledgrp.blk.adlcnd"> <el-form-item label="附加条件" prop="ledgrp.blk.adlcnd">
<c-input <c-input
type="textarea" type="textarea"
...@@ -22,7 +23,7 @@ ...@@ -22,7 +23,7 @@
> >
... ...
</c-button> </c-button>
</c-col> </c-col> -->
<!-- Special payment conditions for beneficiary --> <!-- Special payment conditions for beneficiary -->
<c-col :span="24" class="letopn_adcp_cheak"> <c-col :span="24" class="letopn_adcp_cheak">
...@@ -75,13 +76,24 @@ import Api from "~/service/Api"; ...@@ -75,13 +76,24 @@ import Api from "~/service/Api";
import CommonProcess from "~/mixin/CommonProcess"; import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable"; import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letopn/Event"; import Event from "~/model/Letopn/Event";
import BlkTextarea from "~/views/Public/BlkTextarea";
export default { export default {
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
components: { "c-blkTextarea": BlkTextarea },
mixins: [CommonProcess], mixins: [CommonProcess],
data() { data() {
return {}; return {
blk: {
blkMsg: {
title: "附加条件",
dataUrl: "ledgrp.blk.adlcnd", //字段所在model路劲
rows: 16,
},
rulePath: "letp.adlcnd.buttxmsel",
},
};
}, },
methods: { ...Event }, methods: { ...Event },
created: function () {}, created: function () {},
......
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