Usrp3.vue 2.22 KB
<template>
  <c-content class="eibs-tab" :height="200">

      <div class="infTopBtn">
          <c-button disabled size="small" type="primary">全空</c-button>
          <c-button disabled size="small" type="primary">全选</c-button>
      </div>

      <c-row class="infrow" style="margin-top: 50px;">
          <c-col :span="22" :offset="1">
              <c-table :border="true" :list="model.recgrp.usrucl" style="text-align:center">
                  <el-table-column prop="mannam" label="Client name" width="auto"></el-table-column>
                  <el-table-column prop="bchinr" label="Bchinr" width="auto"></el-table-column>
                  <el-table-column prop="branch" label="机构号" width="auto"></el-table-column>
                  <el-table-column prop="usracc" label="Related Client" width="auto">
                    <template slot-scope="scope">
                        <c-checkbox disabled v-model="scope.row.usracc"></c-checkbox>
                    </template>
                  </el-table-column>
                  <el-table-column prop="usrdef" label="Default Client" width="auto">
                    <template slot-scope="scope">
                        <c-checkbox disabled v-model="scope.row.usrdef"></c-checkbox>
                    </template>
                  </el-table-column>
                  <el-table-column prop="assignflg" label="是否参与任务分配" width="auto">
                    <template slot-scope="scope">
                        <c-checkbox disabled v-model="scope.row.assignflg"></c-checkbox>
                    </template>
                  </el-table-column>
                  <el-table-column prop="objlst" label="可处理业务品种" width="auto"></el-table-column>
              </c-table>
          </c-col>
      </c-row>


  </c-content>
</template>
<script>
  import Api from "~/service/Api"
  import commonProcess from "~/mixin/commonProcess";
  import CodeTable from "~/config/CodeTable"
  import Event from "~/model/Dbiusr/Event"

  export default {
      inject: ['root'],
      props: ["model", "codes"],
      mixins: [commonProcess],
      data() {
          return {

          }
      },
      methods: { ...Event },
      created: function () {

      }
  }
</script>
<style>

</style>