123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <!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.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 .el-form .c-label {
- width: 7em !important;
- }
- .c-panel .el-form .el-input, .c-panel .el-form .el-textarea__inner {
- width: 250px;
- }
- </style>
- </head>
- <body>
- <div class="vue-box" style="display: none;" :style="'display: block;'">
- <!-- ------- 内容部分 ------- -->
- <div class="s-body">
- <div class="c-panel" style="text-align:center;">
- <div class="c-title" >车辆解绑</div>
- <el-form v-if="m">
- <!-- <sa-item type="text" name="主键" v-model="m.id" br></sa-item>-->
- <!-- <sa-item type="text" name="客户id" v-model="m.customerId" br></sa-item>-->
- <sa-item type="text" name="客户名称" v-model="m.customerName" :disabled="true" br></sa-item>
- <sa-item id="ast" type="text" name="解绑车辆" v-model="m.bindCar" :disabled="true" br></sa-item>
- <sa-item id="ast" name="解绑时间" br>
- <el-date-picker
- v-model="m.unbindTime"
- type="datetime"
- placeholder="选择日期时间"
- align="right"
- :picker-options="pickerOptions">
- </el-date-picker>
- </sa-item>
- <sa-item name="" class="s-ok" br>
- <el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
- </sa-item>
- </el-form>
- </div>
- </div>
- <!-- ------- 底部按钮 ------- -->
- <div class="s-foot">
- <el-button type="primary" @click="ok()">确定</el-button>
- <el-button @click="sa.closeCurrIframe()">取消</el-button>
- </div>
- </div>
- <script>
- var app = new Vue({
- components: {
- "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
- },
- el: '.vue-box',
- data: {
- customerId:sa.p('customerId', 0),
- id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
- m: null, // 实体对象
- pickerOptions: {
- shortcuts: [{
- text: '今天',
- onClick(picker) {
- picker.$emit('pick', new Date());
- }
- }, {
- text: '昨天',
- onClick(picker) {
- const date = new Date();
- date.setTime(date.getTime() - 3600 * 1000 * 24);
- picker.$emit('pick', date);
- }
- }]
- }
- },
- methods: {
- // 创建一个 默认Model
- createModel: function () {
- return {
- id: '', // 主键
- customerId: '', // 客户id
- customerName: '', // 客户名称
- deductMoney: '', // 扣除金额
- bindCar: '', // 绑定车辆
- bindTime: undefined, // 绑定时间
- unbindTime: undefined, // 解绑时候
- createBy: '', // 创建人
- createTime: undefined, // 创建时间
- updateTime: undefined, // 更新时间
- updateBy: '', // 更新人
- }
- },
- // 提交数据
- ok: function () {
- // 表单校验
- let m = this.m;
- sa.checkNull(m.bindCar, '请输入 [绑定车辆]');
- sa.checkNull(m.unbindTime, '解绑时间不能为空');
- //绑定车辆
- sa.ajax('/TbDeductionBind/unbindCar', m, function (res) {
- sa.alert('解绑成功', this.clean);
- }.bind(this));
- },
- // 添加/修改 完成后的动作
- clean: function () {
- parent.app.f5(); // 刷新父页面列表
- sa.closeCurrIframe();
- },
- getTbDeductionBind(){
- if(!this.id || this.id=="null" || this.id=="undefined"){
- sa.error2("没有车辆绑定信息!")
- return false;
- }
- sa.ajax('/TbDeductionBind/getById?id=' + this.id, function (res) {
- this.m = res.data;
- this.m.unbindTime = sa.forDatetime(new Date());
- if (res.data == null) {
- sa.alert('未能查找到 id=' + this.id + " 详细数据");
- return false;
- }
- }.bind(this))
- return true;
- }
- },
- mounted: function () {
- // 初始化数据
- if(!this.getTbDeductionBind()){
- setTimeout(function(){ sa.closeCurrIframe() }, 2000)
- }
- }
- })
- </script>
- </body>
- </html>
|