<!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> <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" :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.id" br></sa-item> <sa-item type="text" name="" v-model="m.goodsId" br></sa-item> <sa-item type="text" name="作业类型" v-model="m.goodsName" br></sa-item> <sa-item type="text" name="" v-model="m.typeId" br></sa-item> <sa-item type="text" name="类型名称" v-model="m.typeName" br></sa-item> <sa-item type="enum" name="载重是否必填" v-model="m.needWeight" :jv="{1: '是', 0: '否'}" jtype="3" br></sa-item> <sa-item type="enum" name="规格是否必填" v-model="m.needCarSize" :jv="{1: '是', 0: '否'}" jtype="3" br></sa-item> <sa-item type="enum" name="申报单是否必填" v-model="m.needDeclare" :jv="{1: '是', 0: '否'}" jtype="3" br></sa-item> <sa-item type="enum" name="申报时间是否必填" v-model="m.needOperateTime" :jv="{1: '是', 0: '否'}" jtype="3" br></sa-item> <sa-item type="enum" name="是否必选" v-model="m.needSelect" :jv="{1: '是', 0: '否'}" jtype="3" 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: { id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改) m: null, // 实体对象 }, methods: { // 创建一个 默认Model createModel: function() { return { id: '', // goodsId: '', // goodsName: '', // 作业类型 typeId: '', // typeName: '', // 类型名称 needWeight: '', // 载重是否必填(1=是,0=否) needCarSize: '', // 规格是否必填(1=是,0=否) needDeclare: '', // 申报单是否必填(1=是,0=否) needOperateTime: '', // 申报时间是否必填(1=是,0=否) needSelect: '', // 是否必选(1=是,0=否) } }, // 提交数据 ok: function(){ // 表单校验 let m = this.m; sa.checkNull(m.id, '请输入 []'); sa.checkNull(m.goodsId, '请输入 []'); sa.checkNull(m.goodsName, '请输入 [作业类型]'); sa.checkNull(m.typeId, '请输入 []'); sa.checkNull(m.typeName, '请输入 [类型名称]'); sa.checkNull(m.needWeight, '请输入 [载重是否必填]'); sa.checkNull(m.needCarSize, '请输入 [规格是否必填]'); sa.checkNull(m.needDeclare, '请输入 [申报单是否必填]'); sa.checkNull(m.needOperateTime, '请输入 [申报时间是否必填]'); sa.checkNull(m.needSelect, '请输入 [是否必选]'); // 开始增加或修改 if(this.id <= 0) { // 添加 sa.ajax('/RelationGoodsType/add', m, function(res){ sa.alert('增加成功', this.clean); }.bind(this)); } else { // 修改 sa.ajax('/RelationGoodsType/update', 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(){ // 初始化数据 if(this.id <= 0) { this.m = this.createModel(); } else { sa.ajax('/RelationGoodsType/getById?id=' + this.id, function(res) { this.m = res.data; if(res.data == null) { sa.alert('未能查找到 id=' + this.id + " 详细数据"); } }.bind(this)) } } }) </script> </body> </html>