Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-04-01 17:02:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
11c40a8e1571a9b2b239dd7c59ac7b64f22a882c
11c40a8e
1 parent
e71f99b3
feat: 添加默认参数
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
src/views/customerConfig/dialog.vue
src/views/customerConfig/dialog.vue
View file @
11c40a8
...
...
@@ -557,8 +557,13 @@
</el-col>
<!-- 加签方式 -->
<!-- <el-col :span="8" >
<Formitem label="加密方式" prop="guangzhouSignature" type="edit">
<el-col :span="8">
<Formitem
label="加密方式"
prop="guangzhouSignature"
type="edit"
v-show="false"
>
<el-select
type="text"
id="inputInner-edit-guangzhouSignature"
...
...
@@ -576,7 +581,9 @@
></el-option>
</el-select>
</Formitem>
</el-col> -->
</el-col>
</el-row>
<el-row :gutter="5">
<el-col :span="16" style="padding-right: 5px" :key="refreshKey">
<div class="uploadItem">
<div class="uploadbox">
...
...
@@ -1300,6 +1307,9 @@ export default {
handlePortConfigJson() {
this.formData.config = {};
this.choosePortCode.forEach((portCode) => {
if (portCode == "CAN") {
this.portConfig[portCode].methodOfSignature = "RSA";
}
this.formData.config[portCode] = JSON.stringify(
this.portConfig[portCode]
);
...
...
Please
register
or
login
to post a comment