<!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.customerName}}</sa-info> <sa-info name="扣除金额" br>{{m.deductMoney}}</sa-info> <sa-info name="绑定车辆" br>{{m.bindCar}}</sa-info> <sa-info name="绑定时间" br>{{m.bindTime}}</sa-info> <sa-info name="解绑时候" br>{{m.unbindTime}}</sa-info> <sa-info name="创建人" br>{{m.createBy}}</sa-info> <sa-info name="创建时间" br>{{m.createTime}}</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('/TbDeductionBind/getById?id=' + this.id, function (res) { this.m = res.data; if (res.data == null) { sa.alert('未能查找到 id=' + this.id + " 详细数据"); } }.bind(this)) } }) </script> </body> </html>