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-08-04 16:51:56 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
248430eb269fe9ae0ca95f4d00613b51d4e5d6ff
248430eb
1 parent
fa4a9e82
feat: 修改字段
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
10 deletions
src/views/api-key/dialog.vue
src/views/exportListDetail/index.vue
src/views/api-key/dialog.vue
View file @
248430e
...
...
@@ -4,7 +4,7 @@
:title="title"
:visible.sync="outerVisible"
:show-close="false"
width="
3
0%"
width="
4
0%"
:close-on-click-modal="false"
v-loading="loadings.dialogLoading"
@close="close(false)"
...
...
@@ -21,7 +21,7 @@
>
<el-row :gutter="5">
<!-- 用户ID -->
<el-col :span="
24
">
<el-col :span="
12
">
<Formitem label="用户ID" prop="userId" type="edit">
<el-input
type="text"
...
...
@@ -35,7 +35,7 @@
</Formitem>
</el-col>
<!-- key -->
<
!-- <
el-col :span="12">
<el-col :span="12">
<Formitem label="KEY" prop="key" type="edit">
<el-input
type="text"
...
...
@@ -47,7 +47,7 @@
placeholder=""
></el-input>
</Formitem>
</el-col>
-->
</el-col>
<!-- 说明 -->
<el-col :span="24">
<Formitem label="说明" prop="description" type="edit">
...
...
@@ -114,7 +114,7 @@ export default {
rules: {
key: [
{
required:
tru
e,
required:
fals
e,
trigger: "blur",
message: "用户ID不能为空!",
},
...
...
@@ -140,7 +140,7 @@ export default {
if (val) {
this.loadings.dialogLoading = false;
if (this.type == "update") {
this.formData =
this.active
;
this.formData =
JSON.parse(JSON.stringify(this.active))
;
}
}
},
...
...
@@ -179,6 +179,7 @@ export default {
const params = new URLSearchParams();
params.append("description", description);
params.append("userId", userId);
params.append("key", key);
generateKey(params)
.then((res) => {
...
...
src/views/exportListDetail/index.vue
View file @
248430e
...
...
@@ -822,17 +822,28 @@ export default {
slot: true,
},
{
name: "申报数量",
value: "qty",
width: "",
align: "left",
},
{
name: "申报计量单位",
value: "unit",
width: "",
align: "left",
},
{
name: "法定数量",
value: "qty1",
width: "",
align: "left",
},
{
name: "法定单位",
value: "unit",
name: "法定
计量
单位",
value: "unit
1
",
width: "",
align: "left",
slot: true,
},
{
name: "第二数量",
...
...
@@ -841,7 +852,7 @@ export default {
align: "left",
},
{
name: "第二单位",
name: "第二
计量
单位",
value: "unit2",
width: "",
align: "left",
...
...
Please
register
or
login
to post a comment