Commit d5182793 authored by lanbaoming's avatar lanbaoming

2024-06-12-3提交

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