Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴迪
gs1
Commits
c3ae393c
Commit
c3ae393c
authored
Dec 25, 2021
by
Jianli Ou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug处理
parent
df4760e5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
89 additions
and
54 deletions
+89
-54
companyInfo.vue
src/views/MyManage/SystemMember/companyInfo.vue
+0
-0
uploadvendor.vue
src/views/MyManage/UnVerify/uploadvendor.vue
+26
-21
vendor.vue
src/views/MyManage/UnVerify/vendor.vue
+34
-3
vendorModify.vue
src/views/MyManage/UnVerify/vendorModify.vue
+3
-0
index.vue
src/views/MyManage/index.vue
+26
-30
No files found.
src/views/MyManage/SystemMember/companyInfo.vue
View file @
c3ae393c
This diff is collapsed.
Click to expand it.
src/views/MyManage/UnVerify/uploadvendor.vue
View file @
c3ae393c
...
...
@@ -51,27 +51,32 @@ export default {
this
.
uploading
=
false
},
uploadEvent
()
{
let
inputObj
=
null
if
(
!
document
.
getElementById
(
'file'
))
{
inputObj
=
document
.
createElement
(
'input'
)
inputObj
.
setAttribute
(
'id'
,
'file'
)
inputObj
.
setAttribute
(
'type'
,
'file'
)
inputObj
.
setAttribute
(
'name'
,
'file'
)
inputObj
.
setAttribute
(
'style'
,
'visibility:hidden'
)
document
.
body
.
appendChild
(
inputObj
)
const
that
=
this
document
.
querySelector
(
'#file'
).
addEventListener
(
'change'
,
()
=>
{
const
fileObj
=
document
.
getElementById
(
'file'
).
files
[
0
]
let
form
=
new
FormData
()
// FormData 对象
form
.
append
(
'file'
,
fileObj
)
// 文件对象
form
.
append
(
'id'
,
that
.
tycpdmFirmInfo
.
status
===
1
?
that
.
tycpdmFirmInfo
.
fid
:
that
.
tycpdmFirmInfo
.
id
)
form
.
append
(
'status'
,
that
.
tycpdmFirmInfo
.
status
)
this
.
upload
(
form
)
})
}
else
{
inputObj
=
document
.
getElementById
(
'file'
)
}
inputObj
.
click
()
this
.
$confirm
(
'请核对企业信息。提交后,在管理员审核完成前,不能修改。'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
}).
then
(()
=>
{
let
inputObj
=
null
if
(
!
document
.
getElementById
(
'file'
))
{
inputObj
=
document
.
createElement
(
'input'
)
inputObj
.
setAttribute
(
'id'
,
'file'
)
inputObj
.
setAttribute
(
'type'
,
'file'
)
inputObj
.
setAttribute
(
'name'
,
'file'
)
inputObj
.
setAttribute
(
'style'
,
'visibility:hidden'
)
document
.
body
.
appendChild
(
inputObj
)
const
that
=
this
document
.
querySelector
(
'#file'
).
addEventListener
(
'change'
,
()
=>
{
const
fileObj
=
document
.
getElementById
(
'file'
).
files
[
0
]
let
form
=
new
FormData
()
// FormData 对象
form
.
append
(
'file'
,
fileObj
)
// 文件对象
form
.
append
(
'id'
,
that
.
tycpdmFirmInfo
.
status
===
1
?
that
.
tycpdmFirmInfo
.
fid
:
that
.
tycpdmFirmInfo
.
id
)
form
.
append
(
'status'
,
that
.
tycpdmFirmInfo
.
status
)
this
.
upload
(
form
)
})
}
else
{
inputObj
=
document
.
getElementById
(
'file'
)
}
inputObj
.
click
()
}).
catch
(()
=>
{});
},
async
getTycpdmFirmInfo
()
{
const
result
=
await
this
.
$api
.
myManage
.
tycpdmFirmInfo
({
userName
:
this
.
memberInfo
.
username
})
...
...
src/views/MyManage/UnVerify/vendor.vue
View file @
c3ae393c
<
template
>
<div
class=
"container2"
v-loading=
"uploading"
>
<div
class=
"header"
>
<div
v-if=
"status === 2"
class=
"header"
>
<p><i
class=
"bi bi-exclamation-triangle-fill"
></i>
注:若您只是变更了不需要审核的信息(请查看
<a
href=
"/MyManage/UnVerify/vendorModify"
>
修改企业信息
</a>
),系统会默认通过审核。
</p>
</div>
<div
v-else
class=
"header"
>
<p><i
class=
"bi bi-exclamation-triangle-fill"
></i>
厂商实名认证(办理“进口商品信息通报、GLN”等业务需先完成此认证)
</p>
</div>
<div
class=
"content"
>
...
...
@@ -34,6 +37,7 @@
prop=
'firmName1'
>
<el-input
v-model=
'form.firmName1'
autocomplete=
'off'
placeholder=
"请输入企业英文名称"
></el-input>
<span
class=
"form-item-tip"
>
对俄罗斯出口的企业,本项必填!
</span>
</el-form-item>
<el-form-item
label=
'注册地址:'
prop=
'registerAddress'
...
...
@@ -199,8 +203,17 @@
required: true,
message: '不能为空',
}]">
<el-input
v-model=
'form.firmBusinessLicenseFile'
autocomplete=
'off'
type=
"file"
style=
"display:none"
></el-input>
<el-button
@
click=
"uploadEvent"
type=
"primary"
style=
"width: 110px;height: 36px;"
>
上传
</el-button>
<el-input
v-model=
'form.firmBusinessLicenseFile'
autocomplete=
'off'
style=
"display:none"
></el-input>
<el-button
@
click=
"uploadEvent"
type=
"primary"
style=
"width: 110px;height: 36px;"
>
上传
</el-button><br/>
<span
style=
"margin-right: 15px;cursor: pointer;color: #0D6EFD;"
>
查看历史上传文件
</span>
<el-popover
placement=
"bottom"
width=
"300"
trigger=
"hover"
v-model=
"uploadTipVisible"
>
<span
slot=
"reference"
style=
"cursor:pointer;"
>
必须为清晰彩色原件扫描件或数码照,必须...
</span>
必须为清晰彩色原件扫描件或数码照,必须在有效期内且年检章齐全(当年成立的公司可无年检章),支持png,bmp,jpg格式,大小不得超过3M
</el-popover>
</el-form-item>
<p
class=
"content-from-title"
>
经办人信息填报
</p>
...
...
@@ -276,6 +289,12 @@
<t-j-dm-select
@
cancel=
"dialogVisible = false"
:initSelect=
"form.TJDm"
@
confirm=
"confirmEvent"
/>
</div>
</el-dialog>
<el-image
id=
"image"
style=
"width: 10px; height: 10px;opacity: 0;"
:src=
"imagePreview.url"
:preview-src-list=
"imagePreview.srcList"
>
</el-image>
</div>
</
template
>
...
...
@@ -291,8 +310,13 @@ export default {
return
{
dialogVisible
:
false
,
uploading
:
false
,
uploadTipVisible
:
false
,
loginInfo
:
{},
memberInfo
:
{},
imagePreview
:
{
url
:
''
,
srcList
:
[]
},
hasSent
:
false
,
timer
:
null
,
time
:
60
,
...
...
@@ -671,6 +695,13 @@ export default {
}
}
}
.form-item-tip
{
position
:
absolute
;
margin
:
10px
0
0
5px
;
width
:
200px
;
font-size
:
13px
;
color
:
#F56C6C
;
}
</
style
>
<
style
lang=
"scss"
scoped
>
@media
(
max-width
:
768px
)
{
...
...
src/views/MyManage/UnVerify/vendorModify.vue
View file @
c3ae393c
<
template
>
<div
class=
"container2"
v-loading=
"uploading"
>
<div
class=
"header"
>
<p><i
class=
"bi bi-exclamation-triangle-fill"
></i>
注:若需对以下不可编辑的信息进行修改,必须申请
<a
href=
"/MyManage/UnVerify/vendor"
>
变更厂商实名认证信息 。
</a></p>
</div>
<div
class=
"content"
>
<div
class=
"title"
>
修改企业信息
<a
href=
"/MyManage/UnVerify/vendor"
>
变更厂商实名认证信息
</a>
...
...
src/views/MyManage/index.vue
View file @
c3ae393c
...
...
@@ -131,20 +131,26 @@ export default {
},
{
id
:
uuid
(
"gs_nav"
),
name
:
"
修改登录密码
"
,
name
:
"
企业信息
"
,
index
:
1
,
link
:
'/MyManage/SystemMember/companyInfo'
},
{
id
:
uuid
(
"gs_nav"
),
name
:
"修改登录密码"
,
index
:
2
,
link
:
"/MyManage/UnVerify/changePass"
,
},
{
id
:
uuid
(
"gs_nav"
),
name
:
"修改手机号码"
,
index
:
2
,
index
:
3
,
link
:
"/MyManage/UnVerify/changePhone"
,
},
{
id
:
uuid
(
"gs_nav"
),
name
:
"变更企业信息"
,
index
:
1
,
index
:
4
,
link
:
"/MyManage/UnVerify/vendor"
,
},
],
...
...
@@ -185,34 +191,24 @@ export default {
adminBranchRouterList
:
[
{
id
:
uuid
(
"gs_nav"
),
name
:
"业务审核"
,
name
:
"
实名认证
业务审核"
,
index
:
0
,
link
:
"/MyManage/admin/check"
,
},
// {
// id: uuid("gs_nav"),
// name: "统一产品编码",
// index: 1,
// link: "/MyManage/admin/code",
// },
{
id
:
uuid
(
"gs_nav"
),
name
:
"审核状态修改"
,
index
:
2
,
link
:
"/MyManage/admin/status_change"
,
},
{
id
:
uuid
(
"gs_nav"
),
name
:
"企业信息修改"
,
index
:
3
,
link
:
"/MyManage/admin/ent_info"
,
},
{
id
:
uuid
(
"gs_nav"
),
name
:
"日志查看"
,
index
:
4
,
link
:
"/MyManage/admin/log"
,
},
link
:
""
,
children
:
[
{
id
:
uuid
(
"gs_nav"
),
name
:
"企业实名认证"
,
index
:
0
,
link
:
"/MyManage/admin/check"
,
},
{
id
:
uuid
(
"gs_nav"
),
name
:
"企业实名认证变更"
,
index
:
1
,
link
:
"/MyManage/admin/check"
,
},
],
}
],
userType
:
ADMIN
,
loginInfo
:
JSON
.
parse
(
localStorage
.
getItem
(
'loginInfo'
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment