diff --git a/src/api/ebiz/questions/index.js b/src/api/ebiz/questions/index.js
new file mode 100644
index 000000000..6d3094d63
--- /dev/null
+++ b/src/api/ebiz/questions/index.js
@@ -0,0 +1,20 @@
+import request from '@/assets/js/utils/request'
+import getUrl from '@/assets/js/utils/get-url'
+
+// 列表
+export function getQuestionList(data = {}) {
+ return request({
+ method: 'post',
+ url: getUrl('/sale/issue/getPrtIssueList', 1),
+ data
+ })
+}
+
+// 详情
+export function getQuestionDetail(data = {}) {
+ return request({
+ method: 'post',
+ url: getUrl('/sale/issue/getPrtIssueDetail', 1),
+ data
+ })
+}
diff --git a/src/views/ebiz/questions/QuestionsDetail.vue b/src/views/ebiz/questions/QuestionsDetail.vue
index 6b2b84cf9..45445fae3 100644
--- a/src/views/ebiz/questions/QuestionsDetail.vue
+++ b/src/views/ebiz/questions/QuestionsDetail.vue
@@ -48,9 +48,9 @@
-
+
- 银行卡扫描
+ 银行卡扫描
@@ -77,10 +77,22 @@
下一步
+
+
+
+
+
+
+
@@ -183,6 +225,49 @@ export default {
background: #fff;
padding-bottom: 40px;
box-sizing: border-box;
+ .showDiscern {
+ position: fixed;
+ z-index: -1;
+ left: 0;
+ top: 0;
+ width: 100vw;
+ height: 100vh;
+ background: rgba(0, 0, 0, 0.5);
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease 0.3s;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: #fff;
+ &.show {
+ z-index: 999;
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s;
+ }
+ .icon {
+ position: absolute;
+ right: 10px;
+ top: 10px;
+ z-index: 1;
+ }
+ .backContent {
+ height: 60%;
+ background: #fff;
+ border-radius: 5px;
+ overflow: hidden;
+ }
+ }
+ .bankList {
+ height: 300px;
+ li {
+ text-align: center;
+ padding: 10px 0;
+ font-size: 14px;
+ border-bottom: 1px solid #eee;
+ }
+ }
.pdf {
width: 100%;
height: 200px;
diff --git a/src/views/ebiz/questions/QuestionsList.vue b/src/views/ebiz/questions/QuestionsList.vue
index 19c61f917..18b847268 100644
--- a/src/views/ebiz/questions/QuestionsList.vue
+++ b/src/views/ebiz/questions/QuestionsList.vue
@@ -87,6 +87,7 @@