瀏覽代碼

feat(开户):开户

sufan 5 天之前
父節點
當前提交
0d6e73b195

+ 1 - 1
src/api/cyAccountManage/memberInfoManage.js

@@ -56,7 +56,7 @@ export function submitData(data) {
 // 审批 - 提交
 export function approveSubmit(data) {
   return request({
-    url: '/api/bocom/register/approval',
+    url: '/bocom/register/approval',
     method: 'post',
     data
   })

+ 2 - 1
src/styles/element/ruleForm.scss

@@ -224,7 +224,8 @@ $orangeColor: #E9423A;
 
 /* disable开始 */
 .el-textarea.is-disabled .el-textarea__inner,
-.el-input.is-disabled .el-input__inner  {
+.el-input.is-disabled .el-input__inner,
+.el-range-editor.is-disabled input {
   // background-color: #fff;
   color: #333;
 }

+ 4 - 0
src/views/cyAccountManage/memberInfoManage/components/AuthorizedAgentInfo.vue

@@ -124,6 +124,10 @@ export default {
     detailsInfo: {
       type: Object,
       default: () => {}
+    },
+    pageStatus: {
+      type: String,
+      default: '' // edit编辑 add新增 finishEdit完成修改 see 查看 approve 审批 finishChange完成变更
     }
   },
   data() {

+ 1 - 1
src/views/cyAccountManage/memberInfoManage/details.vue

@@ -111,7 +111,7 @@
           <el-button type="text" @click="synchronousClick('授权代理人信息', '')">同步信息</el-button>
         </div>
       </cy-info-title>
-      <authorized-agent-info ref="authorizedAgentRef" :details-info="detailsInfo.bocomAuthorizedAgent" :disabled="disabled || processSeeDisabled" />
+      <authorized-agent-info ref="authorizedAgentRef" :details-info="detailsInfo.bocomAuthorizedAgent" :page-status="pageStatus" :disabled="disabled || processSeeDisabled" />
     </template>
 
     <template v-if="approveStatus">

+ 3 - 2
src/views/cyAccountManage/memberInfoManage/mainContent.vue

@@ -395,11 +395,11 @@ export default {
           this.loading = false
           this.tableData = rows.map(item => {
             return {
+              ...item.obj,
               ...item,
-              ...item.obj
+              id: item.obj.id
             }
           })
-          console.log(this.tableData, 111111)
           this.total = records
         })
       }
@@ -434,6 +434,7 @@ export default {
       this.fetchData(tab.name)
     },
     handlerOperate(type, row) {
+      console.log(row, 1111)
       if (type === 'timeAxis') {
         this.timeAxisClick(row)
         return