gjy vor 2 Jahren
Ursprung
Commit
d7ae419ea7

+ 2 - 2
src/views/cargoOwnerManagement/empowerExamine.vue

@@ -96,8 +96,8 @@
               <!-- <el-button slot="reference">账单</el-button> -->
               <span slot="reference" class="btn_css">账单</span>
             </el-popover>
-            <!-- <el-button @click="seeInfo(scope.row)">信息</el-button> -->
-            <span class="btn_css">信息</span>
+            <el-button @click="seeInfo(scope.row)">信息</el-button>
+            <!-- <span class="btn_css">信息</span> -->
           </template>
         </el-table-column>
         <el-table-column prop="authenticationStatus" label="身份证">

+ 79 - 30
src/views/enterpriseManagement/enterpriseAudit.vue

@@ -46,7 +46,7 @@
         <el-table-column prop="accountNumber" label="账号" min-width="107"></el-table-column>
         <el-table-column prop="accountBalance" label="可用余额(元)" min-width="133"></el-table-column>
         <el-table-column prop="frozenAmount" label="冻结金额(元)" min-width="133"></el-table-column>
-        <el-table-column label="账户">
+        <el-table-column label="账户"  min-width="153">
           <template slot-scope="scope">
             <el-popover
               placement="right"
@@ -70,9 +70,9 @@
                   </div> -->
                 </div>
               </div>
-              <el-button slot="reference">信息</el-button>
+              <el-button slot="reference">账单</el-button>
             </el-popover>
-            <el-button >账单</el-button>
+            <el-button style='margin-left:10px;' @click='seemessage(scope.row)'>信息</el-button>
           </template>
         </el-table-column>
         <!-- 	<el-table-column prop="registeredPaidAmount" label="实缴金额(万元)" min-width="133"></el-table-column>
@@ -121,6 +121,32 @@
 				</div>
 			</div>
 		</el-dialog> -->
+    <el-dialog :close-on-click-modal="false" title="账户信息" :visible.sync="messageshow" width="500px"
+      :before-close="payClose">
+      <div class="pay">
+        <div class="pay_css">
+          <div class="title_css">对公账户:</div>
+          <div class="name_css">{{ message.corporateAccount }}</div>
+        </div>
+        <div class="pay_css">
+          <div class="title_css">账号:</div>
+          <div class="id_css">{{ message.bankCard }}</div>
+        </div>
+        <div class="pay_css">
+          <div class="title_css">开户行:</div>
+          <div class="pay_name">{{ message.bankDeposit }}</div>
+        </div>
+        <div class="pay_css">
+          <div class="title_css">开户支行:</div>
+          <div class="pay_name">{{ message.bankDepositBranch }}</div>
+        </div>
+      </div>
+      <!-- <img
+          :src="paySee.payeeAddressUrl"
+          class="user_item"
+          @click="enlarge(paySee.payeeAddressUrl)"
+        /> -->
+    </el-dialog>
     <el-drawer title="企业详情" :visible.sync="rightSee">
       <div class="right_css">
         <div class="right_title">企业名称</div>
@@ -197,6 +223,7 @@
         pageSize: 10,
         deptBudgetTotal: 0,
         deptCircularPage: {},
+        message:{},
         search: '5',
         addressUrl: [],
         disabled: false,
@@ -210,37 +237,12 @@
         infoData: {},
           //图片预览
         srcList: [],
+        messageshow:false,
         imgsVisible: false,
       };
     },
     mounted() {
-      this.getList()
-    },
-    methods: {
-       closeImgViewer() {
-        this.srcList = []
-        this.imgsVisible = false;
-      },
-      enlarge(url) {
-        this.imgsVisible = true;
-        this.srcList.push(url)
-      },
-      getBillList(id) {
-        console.log('查看账单')
-        let _obj = {
-          companyId:id,
-          pageSize:999,
-          currentPage:1
-        }
-        getBillList(_obj).then(response => {
-            this.billList = response.data.records
-          })
-          .catch(() => {
-            this.loading = false
-          })
-      },
-      getList() {
-        this.loading = true
+      this.loading = true
        let _obj = {}
         let start_obj = {}
         start_obj.currentPage = this.currentPage
@@ -283,6 +285,53 @@
           .catch(() => {
             this.loading = false
           })
+    },
+    methods: {
+       closeImgViewer() {
+        this.srcList = []
+        this.imgsVisible = false;
+      },
+      enlarge(url) {
+        this.imgsVisible = true;
+        this.srcList.push(url)
+      },
+      getBillList(id) {
+        console.log('查看账单')
+        let _obj = {
+          companyId:id,
+          pageSize:999,
+          currentPage:1
+        }
+        getBillList(_obj).then(response => {
+            this.billList = response.data.records
+          })
+          .catch(() => {
+            this.loading = false
+          })
+      },
+      seemessage(item){
+        this.message=item
+        this.messageshow=true
+      },
+      payClose() {
+        this.messageshow = false;
+      },
+      getList() {
+        this.loading = true
+       let _obj = {}
+ 
+            _obj.currentPage = this.currentPage
+            _obj.pageSize = this.pageSize
+            _obj.searchKeyWord = this.searchkeyWord
+            _obj.searchType = this.search
+            getList(_obj).then(response => {
+              this.tableData = response.data.records
+              this.deptBudgetTotal = response.data.total
+              this.listLoading = false
+            })
+              .catch(() => {
+            this.loading = false
+          })
       },
       submit(num) {
         var _allowObj = {}