Commit d5182793 authored by lanbaoming's avatar lanbaoming

2024-06-12-3提交

parent f2dfdcab
......@@ -700,11 +700,17 @@
</el-form-item>
<!--lanbm 2024-06-10 添加的落款信息配置信息 -->
<el-form-item :label="$t('落款左边信息')">
<textarea v-model="lineform.lkLeft" style="width: 400px" rows="8" > </textarea>
<textarea v-model="lineform.lkLeft" style="width: 400px" rows="8">
</textarea>
</el-form-item>
<el-form-item :label="$t('落款右边信息')">
<textarea v-model="lineform.lkRight" style="width: 400px" rows="8"> </textarea>
<textarea v-model="lineform.lkRight" style="width: 400px" rows="8">
</textarea>
</el-form-item>
<el-form-item :label="$t('落款盖章名称')">
<el-input v-model="lineform.tzName" style="width: 400px"></el-input>
</el-form-item>
<!-- end lanbm 2024-06-10 添加的落款信息配置信息 -->
</template>
</el-form>
<div slot="footer" class="dialog-footer">
......@@ -1000,6 +1006,7 @@ export default {
tempTitleEn: "",
lkLeft: "",
lkRight: "", //lanbm 2024-06-10 添加的落款配置信息
tzName: "", //落款盖章 lanbm 2024-06-12 add
recipientInfo: {
companyAddress: "",
companyAddressEn: "",
......@@ -1429,6 +1436,9 @@ export default {
this.lineform.controlStatus = row.controlStatus ? row.controlStatus : 0;
this.lineform.tempTitleZh = row.tempTitleZh;
this.lineform.tempTitleEn = row.tempTitleEn;
this.lineform.lkLeft=row.lkLeft;
this.lineform.lkRight=row.lkRight; //lanbm 2024-06-10 add
this.lineform.tzName=row.tzName; //图章配置参数 lanbm 2024-06-12 add
// 先清空 发货人和收货人信息
this.lineform.senderInfo = {
companyAddress: "",
......@@ -1479,8 +1489,9 @@ export default {
recipientInfo: this.lineform.recipientInfo,
tempTitleZh: this.lineform.tempTitleZh,
tempTitleEn: this.lineform.tempTitleEn,
lkLeft:this.lineform.lkLeft,
lkRight:this.lineform.lkRight,//lanbm 2024-06-10 add
lkLeft: this.lineform.lkLeft,
lkRight: this.lineform.lkRight, //lanbm 2024-06-10 add
tzName: this.lineform.tzName, //图章配置参数 lanbm 2024-06-12 add
}).then((res) => {
this.$modal.msgSuccess(this.$t("操作成功"));
this.getRouteList();
......@@ -1837,7 +1848,6 @@ export default {
// 解决子组件没有被勾选到
this.setChildren(row.children, true);
}
//TODO 判断父节点的所有子节点是否都被选中
} else {
//TODO 取消选择判断父节点的所有子节点是否都被取消
......
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