| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 | <!DOCTYPE html><html><head>    <title>客户账户-详情</title>    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">    <meta name="viewport"          content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>    <!-- 所有的 css js 资源 -->    <link rel="stylesheet" href="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">    <link rel="stylesheet" href="../../static/sa.css">    <script src="https://unpkg.com/vue@2.6.10/dist/vue.min.js"></script>    <script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>    <script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>    <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>    <script src="https://www.layuicdn.com/layer-v3.1.1/layer.js"></script>    <script src="../../static/sa.js"></script>    <style type="text/css">        .c-panel .c-label {            width: 8em;        }    </style></head><body><div class="vue-box sbot" style="display: none;" :style="'display: block;'">    <!-- ------- 内容部分 ------- -->    <div class="s-body">        <div class="c-panel">            <el-form v-if="m">                <sa-info name="主键" br>{{m.id}}</sa-info>                <sa-info name="客户id" br>{{m.customerId}}</sa-info>                <sa-info name="账户" br>{{m.accountNo}}</sa-info>                <sa-info name="冻结金额" br>{{m.lockMoney}}</sa-info>                <sa-info name="可用金额" br>{{m.actMoney}}</sa-info>                <sa-info name="总金额" br>{{m.totalMoney}}</sa-info>                <sa-info name="最后充值金额" br>{{m.lastTopupMoney}}</sa-info>                <sa-info type="enum" name="状态" :value="m.status" :jv="{0: '禁用', 1: '启用'}" br></sa-info>                <sa-info name="支付密码" br>{{m.payPassword}}</sa-info>                <sa-info name="支付密码盐" br>{{m.payPasswordSalt}}</sa-info>                <sa-info name="创建时间" br>{{m.createTime}}</sa-info>                <sa-info name="创建人" br>{{m.createBy}}</sa-info>                <sa-info name="更新时间" br>{{m.updateTime}}</sa-info>                <sa-info name="更新人" br>{{m.updateBy}}</sa-info>            </el-form>        </div>    </div>    <!-- ------- 底部按钮 ------- -->    <div class="s-foot">        <el-button type="success" @click="sa.closeCurrIframe()">确定</el-button>        <el-button @click="sa.closeCurrIframe()">取消</el-button>    </div></div><script>    var app = new Vue({        components: {            "sa-info": httpVueLoader('../../sa-frame/com/sa-info.vue')        },        el: '.vue-box',        data: {            id: sa.p('id', 0),	// 获取数据ID            m: null        },        methods: {},        mounted: function () {            sa.ajax('/TbAccount/getById?id=' + this.id, function (res) {                this.m = res.data;                if (res.data == null) {                    sa.alert('未能查找到 id=' + this.id + " 详细数据");                }            }.bind(this))        }    })</script></body></html>
 |