tb-department-add.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>客户管理-添加/修改</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <meta name="viewport"
  7. content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  8. <!-- 所有的 css js 资源 -->
  9. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  10. <link rel="stylesheet" href="../../static/sa.css">
  11. <script src="../../static/kj/vue.min.js"></script>
  12. <script src="../../static/kj/element-ui/index.js"></script>
  13. <script src="../../static/kj/httpVueLoader.js"></script>
  14. <script src="../../static/kj/jquery.min.js"></script>
  15. <script src="../../static/kj/layer/layer.js"></script>
  16. <script src="../../static/sa.js"></script>
  17. <style type="text/css">
  18. .c-panel .el-form .c-label {
  19. width: 7em !important;
  20. }
  21. .c-panel .el-form .el-input,
  22. .c-panel .el-form .el-textarea__inner {
  23. width: 250px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
  29. <!-- ------- 内容部分 ------- -->
  30. <div class="s-body">
  31. <div class="c-panel">
  32. <div class="c-title" v-if="id == 0">数据添加</div>
  33. <div class="c-title" v-else>数据修改</div>
  34. <el-form v-if="m">
  35. <sa-item type="text" name="部门名称" v-model="m.name" br need></sa-item>
  36. <sa-item type="text" name="负责人" v-model="m.dutyPeople" br need></sa-item>
  37. <sa-item type="text" name="联系号码" v-model="m.phone" br need></sa-item>
  38. </el-form>
  39. </div>
  40. </div>
  41. <!-- ------- 底部按钮 ------- -->
  42. <div class="s-foot">
  43. <el-button type="primary" @click="ok()">确定</el-button>
  44. <el-button @click="sa.closeCurrIframe()">取消</el-button>
  45. </div>
  46. </div>
  47. <script>
  48. var app = new Vue({
  49. components: {
  50. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
  51. },
  52. el: '.vue-box',
  53. data: {
  54. id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
  55. m: null, // 实体对象
  56. },
  57. methods: {
  58. // 创建一个 默认Model
  59. createModel: function() {
  60. return {
  61. id: '', // 主键
  62. name: '', // 名称
  63. phone: '', // 联系号码
  64. dutyPeople: '', // 负责人
  65. }
  66. },
  67. // 提交数据
  68. ok: function() {
  69. // 表单校验
  70. let m = this.m;
  71. sa.checkNull(m.name, '请输入 [名称]');
  72. let phone =m.phone;
  73. sa.checkNull(phone, '请输入 [联系号码]');
  74. if(!sa.isPhone(phone)){
  75. sa.error('请输入正确的手机号码')
  76. return;
  77. }
  78. sa.checkNull(m.dutyPeople, '请输入 [负责人]');
  79. // 开始增加或修改
  80. if (this.id <= 0) { // 添加
  81. sa.ajax('/TbDepartment/add', sa.removeNull(m), function(res) {
  82. sa.alert('增加成功', this.clean);
  83. }.bind(this));
  84. } else { // 修改
  85. sa.ajax('/TbDepartment/update', m, function(res) {
  86. sa.alert('修改成功', this.clean);
  87. }.bind(this));
  88. }
  89. },
  90. // 添加/修改 完成后的动作
  91. clean: function() {
  92. if (this.id == 0) {
  93. this.m = this.createModel();
  94. } else {
  95. parent.app.f5(); // 刷新父页面列表
  96. sa.closeCurrIframe(); // 关闭本页
  97. }
  98. }
  99. },
  100. mounted: function() {
  101. // 初始化数据
  102. if (this.id <= 0) {
  103. this.m = this.createModel();
  104. } else {
  105. sa.ajax('/TbDepartment/getById?id=' + this.id, function(res) {
  106. this.m = res.data;
  107. if (res.data == null) {
  108. sa.alert('未能查找到 id=' + this.id + " 详细数据");
  109. }
  110. }.bind(this))
  111. }
  112. }
  113. })
  114. </script>
  115. </body>
  116. </html>