|
@@ -0,0 +1,168 @@
|
|
|
+<!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="../../static/kj/element-ui/theme-chalk/index.css">
|
|
|
+ <link rel="stylesheet" href="../../static/sa.css">
|
|
|
+ <script src="../../static/kj/vue.min.js"></script>
|
|
|
+ <script src="../../static/kj/element-ui/index.js"></script>
|
|
|
+ <script src="../../static/kj/httpVueLoader.js"></script>
|
|
|
+ <script src="../../static/kj/jquery.min.js"></script>
|
|
|
+ <script src="../../static/kj/layer/layer.js"></script>
|
|
|
+ <script src="../../static/sa.js"></script>
|
|
|
+ <script src="../../static/kj/upload-util.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;
|
|
|
+ }
|
|
|
+
|
|
|
+ .china-car-size .el-input__inner {
|
|
|
+ width: 130px;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+<div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
|
|
|
+ <!-- ------- 内容部分 ------- -->
|
|
|
+ <div class="s-body">
|
|
|
+ <div class="c-panel">
|
|
|
+ <div class="c-title" v-if="id == 0">数据添加</div>
|
|
|
+ <div class="c-title" v-else>数据修改</div>
|
|
|
+ <el-form v-if="m">
|
|
|
+ <sa-item type="text" name="车牌号" v-model="m.carNo" br></sa-item>
|
|
|
+ <div class="c-item">
|
|
|
+ <label class="c-label"><span style="color: red;">*</span>车辆规格:</label>
|
|
|
+ <el-input-number class="china-car-size" v-model="m.carSize" controls-position="right"
|
|
|
+ :min="4.2" :max="50"></el-input-number>
|
|
|
+ </div>
|
|
|
+ <div class="c-item">
|
|
|
+ <label class="c-label">车牌颜色:</label>
|
|
|
+ <el-select v-model="m.color" placeholder="请选择">
|
|
|
+ <el-option v-for="item in colorList" :label="item.carNoColor"
|
|
|
+ :value="item.carNoColor"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <!-- <div class="c-item">-->
|
|
|
+ <!-- <label class="c-label">联系人:</label>-->
|
|
|
+ <!-- <el-input v-model="m.driverName" placeholder="联系人" readonly>-->
|
|
|
+ <!-- </el-input>-->
|
|
|
+ <!-- </div>-->
|
|
|
+ <!-- <div class="c-item">-->
|
|
|
+ <!-- <label class="c-label">联系号码:</label>-->
|
|
|
+ <!-- <el-input v-model="m.driverPhone" placeholder="联系人号码" readonly>-->
|
|
|
+ <!-- </el-input>-->
|
|
|
+ <!-- </div>-->
|
|
|
+ <div class="c-item">
|
|
|
+ <label class="c-label">入场时间:</label>
|
|
|
+ <el-date-picker type="datetime" value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ v-model="m.realInTime"></el-date-picker>
|
|
|
+ </div>
|
|
|
+ <sa-item type="img" name="入场图片" v-model="m.inImage" br></sa-item>
|
|
|
+
|
|
|
+ <div class="c-item">
|
|
|
+ <label class="c-label">离场时间:</label>
|
|
|
+ <el-date-picker type="datetime" value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ v-model="m.realOutTime"></el-date-picker>
|
|
|
+ </div>
|
|
|
+ <sa-item type="img" name="出场图片" v-model="m.outImage" br></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: {
|
|
|
+ colorList: [],
|
|
|
+ id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
|
|
|
+ m: {
|
|
|
+ id: '', //
|
|
|
+
|
|
|
+ carNo: '', //
|
|
|
+ carSize: '', //
|
|
|
+ driverName: '', //
|
|
|
+ money: '', //
|
|
|
+ driverPhone: '', //
|
|
|
+ image: '',
|
|
|
+ realInTime: '',
|
|
|
+ realOutTime: '',
|
|
|
+ pay: '',
|
|
|
+ isLock: '',
|
|
|
+ inImage: '',
|
|
|
+ outImage: '',
|
|
|
+ }, // 实体对象
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getCadNoColor() {
|
|
|
+ sa.ajax('/TbCarNoColor/getList', function (resp) {
|
|
|
+ this.colorList = resp.data;
|
|
|
+ }.bind(this))
|
|
|
+ },
|
|
|
+ // 提交数据
|
|
|
+ ok: function () {
|
|
|
+ // 表单校验
|
|
|
+ let m = this.m;
|
|
|
+ sa.checkNull(m.carNo, '请输入 [车牌号]');
|
|
|
+ // let phone = m.driverPhone;
|
|
|
+ // if (phone && !sa.isPhone(phone)) {
|
|
|
+ // sa.error('联系号码不正确')
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // 开始增加或修改
|
|
|
+ if (this.id <= 0) { // 添加
|
|
|
+ sa.ajax('/TbBusinessCar/addCarRecord', m, function (res) {
|
|
|
+ sa.alert('增加成功', this.clean);
|
|
|
+ }.bind(this));
|
|
|
+ } else { // 修改
|
|
|
+ sa.ajax('/TbBusinessCar/updateCarRecord', m, function (res) {
|
|
|
+ sa.alert('修改成功', this.clean);
|
|
|
+ }.bind(this));
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 添加/修改 完成后的动作
|
|
|
+ clean: function () {
|
|
|
+ if (this.id == 0) {
|
|
|
+ this.m = this.createModel();
|
|
|
+ } else {
|
|
|
+ parent.app.f5(); // 刷新父页面列表
|
|
|
+ sa.closeCurrIframe(); // 关闭本页
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted: function () {
|
|
|
+ this.getCadNoColor();
|
|
|
+ // 初始化数据
|
|
|
+ if (this.id > 0) {
|
|
|
+ sa.ajax('/TbBusinessCar/getById?id=' + this.id, function (res) {
|
|
|
+ this.m = res.data;
|
|
|
+ if (res.data == null) {
|
|
|
+ sa.alert('未能查找到 id=' + this.id + " 详细数据");
|
|
|
+ }
|
|
|
+ }.bind(this))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+</html>
|