123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <!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"/>
-
- <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="等级表id" v-model="m.businessId" br></sa-item>
- <sa-item type="text" name="项目编号" v-model="m.itemCode" br></sa-item>
- <sa-item type="text" name="项目金额" v-model="m.itemPrice" br></sa-item>
- <sa-item type="text" name="项目名称" v-model="m.itemName" br></sa-item>
- <sa-item type="text" name="状态" v-model="m.status" br></sa-item>
- <sa-item type="text" name="操作时间" v-model="m.operateTime" br></sa-item>
- <sa-item type="text" name="操作人员" v-model="m.operaror" 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),
- m: null,
- },
- methods: {
-
- createModel: function () {
- return {
- id: '',
- businessId: '',
- itemCode: '',
- itemPrice: '',
- itemName: '',
- status: '',
- operateTime: '',
- operaror: '',
- }
- },
-
- ok: function () {
-
- let m = this.m;
-
- sa.checkNull(m.businessId, '请输入 [等级表id]');
- sa.checkNull(m.itemCode, '请输入 [项目编号]');
- sa.checkNull(m.itemPrice, '请输入 [项目金额]');
- sa.checkNull(m.itemName, '请输入 [项目名称]');
- sa.checkNull(m.status, '请输入 [状态]');
- sa.checkNull(m.operateTime, '请输入 [操作时间]');
- sa.checkNull(m.operaror, '请输入 [操作人员]');
-
- if (this.id <= 0) {
- sa.ajax('/TbBusinessItem/add', m, function (res) {
- sa.alert('增加成功', this.clean);
- }.bind(this));
- } else {
- sa.ajax('/TbBusinessItem/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('/TbBusinessItem/getById?id=' + this.id, function (res) {
- this.m = res.data;
- if (res.data == null) {
- sa.alert('未能查找到 id=' + this.id + " 详细数据");
- }
- }.bind(this))
- }
- }
- })
- </script>
- </body>
- </html>
|