Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
op-web-service
Project
Project
Details
Activity
Releases
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
bp
op-web-service
Commits
50223ae0
Commit
50223ae0
authored
Jun 07, 2021
by
mengwenhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feature:企业信息提交和修改信息组件封装完成
parent
9fc288a8
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
428 additions
and
640 deletions
+428
-640
index.vue
src/pages/Enterprise/Audit/index.vue
+13
-164
index.vue
src/pages/Enterprise/Certification/index.vue
+2
-4
index.vue
src/pages/Enterprise/Establish/index.vue
+8
-472
enterpriseForm.vue
src/pages/Enterprise/components/enterpriseForm.vue
+405
-0
No files found.
src/pages/Enterprise/Audit/index.vue
View file @
50223ae0
...
@@ -89,98 +89,10 @@
...
@@ -89,98 +89,10 @@
</el-table>
</el-table>
<!-- 修改详情页 -->
<!-- 修改详情页 -->
<!-- <el-form
<enterprise-form
:type=
"'EDIT'"
v-if=
"pageStatus === 'EDIT'"
v-if=
"pageStatus === 'EDIT'"
:rules="messageLishRules"
></enterprise-form>
label-width="240px"
ref="establish_form"
:model="messageList[0]"
>
<el-form-item
label="商户类型"
prop="merchantsType"
>
<el-select v-model="messageList[0].merchantsType">
<el-option
label="个体工商户"
:value="1"
></el-option>
<el-option
label="普通企业"
:value="2"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label="营业执照:"
ref="licenseChange"
prop="businessLicense"
>
<el-upload
action=""
multiple
show-file-list
:limit="4"
:auto-upload="false"
:file-list="messageList[0].licenseList"
:on-change="onLicenseChange"
:on-remove="onLicenseRemove"
>
<el-button
size="small"
type="primary"
>点击上传</el-button>
</el-upload>
</el-form-item>
<el-form-item
label="企业注册名称:"
prop="registeredName"
>
<el-input v-model.trim="messageList[0].registeredName"></el-input>
</el-form-item>
<el-form-item
label="统一社会信用代码(注册码):"
prop="registrationCode"
>
<el-input v-model.trim="messageList[0].registrationCode"></el-input>
</el-form-item>
<el-form-item
label="经营者(法人)身份证照片:"
ref="idcardPhotoChange"
prop="legalPhoto"
>
<el-upload
action=""
multiple
show-file-list
:auto-upload="false"
:file-list="messageList[0].idcardPhoto"
:on-change="onIdPhoneChange"
:on-remove="onIdPhoneRemove"
>
<el-button
size="small"
type="primary"
>点击上传</el-button>
</el-upload>
</el-form-item>
<el-form-item
label="经营者(法人)姓名:"
prop="legalName"
>
<el-input v-model.trim="messageList[0].legalName"></el-input>
</el-form-item>
<el-form-item
label="经营者(法人)身份证号:"
prop="idcardNumber"
>
<el-input v-model.trim="messageList[0].idcardNumber"></el-input>
</el-form-item>
</el-form> -->
</el-card>
</el-card>
<!-- 审核/查看详情/修改详情__提交信息 -->
<!-- 审核/查看详情/修改详情__提交信息 -->
...
@@ -315,21 +227,6 @@
...
@@ -315,21 +227,6 @@
></el-table-column>
></el-table-column>
</el-table>
</el-table>
</el-card>
</el-card>
<!-- 修改详情__提交表单或取消提交 -->
<div
class=
"edit_button_area"
v-if=
"pageStatus === 'EDIT'"
>
<el-button
@
click=
"handelCancel('establish_form')"
type=
"danger"
>
取消
</el-button>
<el-button
@
click=
"handelSubmit('establish_form')"
type=
"primary"
>
提交审核
</el-button>
</div>
</div>
</div>
</layout>
</layout>
</template>
</template>
...
@@ -339,9 +236,10 @@
...
@@ -339,9 +236,10 @@
<
script
>
<
script
>
import
Layout
from
"@/layouts"
;
import
Layout
from
"@/layouts"
;
import
{
getRecordInfo
,
getLog
}
from
"@/service/enterprise"
;
import
{
getRecordInfo
,
getLog
}
from
"@/service/enterprise"
;
import
EnterpriseForm
from
"../components/enterpriseForm.vue"
;
export
default
{
export
default
{
name
:
"Audit"
,
name
:
"Audit"
,
components
:
{
Layout
},
components
:
{
Layout
,
EnterpriseForm
},
beforeRouteEnter
(
to
,
from
,
next
)
{
beforeRouteEnter
(
to
,
from
,
next
)
{
to
.
params
.
pageStatus
&&
to
.
params
.
auditId
to
.
params
.
pageStatus
&&
to
.
params
.
auditId
?
next
()
?
next
()
...
@@ -351,9 +249,10 @@ export default {
...
@@ -351,9 +249,10 @@ export default {
created
()
{
created
()
{
const
{
pageStatus
,
auditId
}
=
this
.
$route
.
params
;
const
{
pageStatus
,
auditId
}
=
this
.
$route
.
params
;
this
.
auditId
=
parseInt
(
auditId
);
this
.
auditId
=
parseInt
(
auditId
);
console
.
log
(
"企业信息ID!!!!!!!!!!"
,
this
.
auditId
);
this
.
pageStatus
=
pageStatus
;
this
.
pageStatus
=
pageStatus
;
this
.
getInfo
();
this
.
getInfo
();
this
.
getHistory
()
this
.
getHistory
()
;
},
},
data
()
{
data
()
{
...
@@ -408,12 +307,12 @@ export default {
...
@@ -408,12 +307,12 @@ export default {
// 审核-提交历史
// 审核-提交历史
historyList
:
[
historyList
:
[
{
{
subDate
:
"2021-05-26"
,
subDate
:
null
,
author
:
"蒙文昊"
,
author
:
null
,
auditDate
:
"2021-05-26"
,
auditDate
:
null
,
auditer
:
"蒙文昊"
,
auditer
:
null
,
status
:
1
,
status
:
null
,
address
:
"请求通过,可以提交审核"
address
:
null
}
}
],
],
...
@@ -470,11 +369,6 @@ export default {
...
@@ -470,11 +369,6 @@ export default {
}
}
]
]
},
},
// 生活号状态
lifeStatus
:
false
,
// 生活号错误信息
lifeErrorMessage
:
""
};
};
},
},
...
@@ -526,51 +420,6 @@ export default {
...
@@ -526,51 +420,6 @@ export default {
goBack
()
{
goBack
()
{
this
.
$router
.
replace
({
name
:
"Certification"
});
this
.
$router
.
replace
({
name
:
"Certification"
});
},
},
// 生活号-创建生活号弹框显示
// onCreateLife (params) {
// console.log(params);
// this.isDialogShow = true;
// this.lifeStatus = true;
// },
// 修改详情-提交审核
handelSubmit
(
formName
)
{
this
.
$refs
[
formName
].
validate
(
valid
=>
{
console
.
log
(
valid
);
});
},
// 修改详情-取消修改表单
handelCancel
()
{
this
.
$router
.
replace
({
name
:
"Certification"
});
},
// 修改详情-执照列表更改时
onLicenseChange
(
file
,
fileList
)
{
this
.
messageList
[
0
].
licenseList
=
fileList
;
this
.
$refs
[
"licenseChange"
].
clearValidate
();
console
.
log
(
"licenseList"
,
this
.
messageList
[
0
].
licenseList
);
},
// 修改详情-身份证照片更改时
onIdPhoneChange
(
file
,
fileList
)
{
this
.
messageList
[
0
].
idcardPhoto
=
fileList
;
this
.
$refs
[
"idcardPhotoChange"
].
clearValidate
();
console
.
log
(
"idcardPhoto:"
,
this
.
messageList
[
0
].
idcardPhoto
);
},
// 修改详情-删除上传的营业执照
onLicenseRemove
(
file
,
fileList
)
{
console
.
log
(
"file"
,
file
);
console
.
log
(
"fileList"
,
fileList
);
this
.
messageList
[
0
].
licenseList
=
fileList
;
console
.
log
(
"licenseList"
,
this
.
messageList
[
0
].
licenseList
);
},
// 修改详情-删除上传的身份证照片
onIdPhoneRemove
(
file
,
fileList
)
{
this
.
messageList
[
0
].
idcardPhoto
=
fileList
;
console
.
log
(
"idCarPhoto:"
,
this
.
messageList
[
0
].
idcardPhoto
);
}
}
}
};
};
</
script
>
</
script
>
src/pages/Enterprise/Certification/index.vue
View file @
50223ae0
...
@@ -234,9 +234,7 @@ export default {
...
@@ -234,9 +234,7 @@ export default {
checkIsCode
:
""
// 用户修改操作的验证码
checkIsCode
:
""
// 用户修改操作的验证码
};
};
},
},
computed
:
{
computed
:
{},
},
created
()
{
created
()
{
this
.
getEnterpriseList
();
this
.
getEnterpriseList
();
...
@@ -318,7 +316,7 @@ export default {
...
@@ -318,7 +316,7 @@ export default {
};
};
const
res
=
await
checkCode
(
parasm
);
const
res
=
await
checkCode
(
parasm
);
console
.
log
(
res
);
console
.
log
(
res
);
if
(
res
.
code
!==
0
)
return
this
.
$message
.
error
(
res
.
reason
);
//
if (res.code !== 0) return this.$message.error(res.reason);
this
.
$message
.
success
(
"验证码校验成功!"
);
this
.
$message
.
success
(
"验证码校验成功!"
);
this
.
$router
.
push
({
this
.
$router
.
push
({
name
:
"Audit"
,
name
:
"Audit"
,
...
...
src/pages/Enterprise/Establish/index.vue
View file @
50223ae0
This diff is collapsed.
Click to expand it.
src/pages/Enterprise/components/enterpriseForm.vue
0 → 100644
View file @
50223ae0
This diff is collapsed.
Click to expand it.
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