edit.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <template>
  2. <div class="cmain">
  3. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  4. <el-form-item label="标题" prop="title">
  5. <el-input v-model="form.title" placeholder="请输入标题"></el-input>
  6. </el-form-item>
  7. <!-- <el-form-item label="图片上传">-->
  8. <!-- <cropper v-model="form.fileUrl" :fixed_number="[4, 2]"></cropper>-->
  9. <!-- </el-form-item>-->
  10. <el-form-item label="内容" prop="content">
  11. <editor v-model="form.content" />
  12. </el-form-item>
  13. <!-- <el-form-item label="图片上传">-->
  14. <!-- <el-upload action="#" list-type="picture-card" :limit="1" :auto-upload="true" :http-request="httprequest" :before-upload="beforeupload" :file-list="fileList">-->
  15. <!-- <i slot="default" class="el-icon-plus"></i>-->
  16. <!-- <div slot="file" slot-scope="{ file }">-->
  17. <!-- <img class="el-upload-list__item-thumbnail" :src="file.url" />-->
  18. <!-- <span class="el-upload-list__item-actions">-->
  19. <!-- <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">-->
  20. <!-- <i class="el-icon-zoom-in"></i>-->
  21. <!-- </span>-->
  22. <!-- <span v-if="!disabled" class="el-upload-list__item-delete" @click="handleRemove(file)">-->
  23. <!-- <i class="el-icon-delete"></i>-->
  24. <!-- </span>-->
  25. <!-- </span>-->
  26. <!-- </div>-->
  27. <!-- </el-upload>-->
  28. <!-- </el-form-item>-->
  29. </el-form>
  30. <div slot="footer" class="mfooter">
  31. <el-button type="info" @click="submitzc">暂 存</el-button>
  32. <el-button type="primary" @click="submitForm">确 定</el-button>
  33. <el-button @click="$layer.close(layerid)">取 消</el-button>
  34. </div>
  35. <el-dialog :visible.sync="dialogVisible" :close-on-click-modal="false" fullscreen append-to-body @close="dialogVisible = false">
  36. <img width="100%" :src="form.fileUrl" alt="" />
  37. </el-dialog>
  38. </div>
  39. </template>
  40. <script>
  41. import { listCOUNSELINGMESSAGE, getCOUNSELINGMESSAGE, delCOUNSELINGMESSAGE, addCOUNSELINGMESSAGE, updateCOUNSELINGMESSAGE, upload, newCommit } from '@/api/portal/COUNSELINGMESSAGE/COUNSELINGMESSAGE';
  42. export default {
  43. name: 'edit.vue',
  44. data(){
  45. return{
  46. baseUrl: process.env.VUE_APP_BASE_API,
  47. dialogVisible:false,
  48. disabled: false,
  49. fileList: [],
  50. // 表单参数
  51. form: {content:''},
  52. // 表单校验
  53. rules: {
  54. title: [{ required: true, message: '标题不能为空', trigger: 'blur' }],
  55. content: [{ required: true, message: '内容不能为空', trigger: 'blur' }],
  56. fileUrl: [{ required: true, message: '附件不能为空', trigger: 'blur' }],
  57. picture: [{ required: true, message: '图片不能为空', trigger: 'blur' }],
  58. }
  59. }
  60. },
  61. mounted() {
  62. if (this.param.id) {
  63. getCOUNSELINGMESSAGE(this.param.id).then(response => {
  64. this.form = response.data;
  65. this.form.content = response.data.content.replace(new RegExp('/profile/upload/', 'g'), this.baseUrl + '/profile/upload/');
  66. });
  67. }
  68. },
  69. props: {
  70. param: {
  71. type: Object,
  72. default: () => {
  73. return {};
  74. }
  75. },
  76. layerid: {
  77. type: String
  78. }
  79. },
  80. methods:{
  81. //旧的图片上传
  82. httprequest() {},
  83. /** 上传附件 */
  84. beforeupload(file) {
  85. let formData = new FormData();
  86. formData.append('file', file);
  87. upload(formData).then(res => {
  88. this.form.fileUrl = res.url;
  89. });
  90. },
  91. //放大预览
  92. handlePictureCardPreview(file) {
  93. this.form.fileUrl = file.url;
  94. this.dialogVisible = true;
  95. },
  96. handleRemove(file) {
  97. this.form.fileUrl = '';
  98. this.fileList = [];
  99. },
  100. /** 暂存按钮 */
  101. submitzc() {
  102. this.$refs['form'].validate(valid => {
  103. if (valid) {
  104. if (this.form.id == null) {
  105. this.form.status = '0';
  106. addCOUNSELINGMESSAGE(this.form).then(response => {
  107. this.$modal.msgSuccess('暂存成功');
  108. this.$layer.close(this.layerid);
  109. this.$parent.getList();
  110. });
  111. } else if (this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5 ||this.form.status == 2) {
  112. updateCOUNSELINGMESSAGE(this.form).then(response => {
  113. this.$modal.msgSuccess('修改成功');
  114. this.$layer.close(this.layerid);
  115. this.$parent.getList();
  116. });
  117. }
  118. }
  119. });
  120. },
  121. /** 提交按钮 */
  122. submitForm() {
  123. this.$refs['form'].validate(valid => {
  124. if (valid) {
  125. if (this.form.id != null) {
  126. this.form.status = '1';
  127. newCommit(this.form).then(response => {
  128. this.$modal.msgSuccess('修改成功');
  129. this.$layer.close(this.layerid);
  130. this.$parent.getList();
  131. });
  132. } else {
  133. addCOUNSELINGMESSAGE(this.form).then(response => {
  134. this.$modal.msgSuccess('新增成功');
  135. this.$layer.close(this.layerid);
  136. this.$parent.getList();
  137. });
  138. }
  139. }
  140. });
  141. },
  142. // // 取消按钮
  143. // cancel() {
  144. // this.open = false;
  145. // this.reset();
  146. // },
  147. // // 表单重置
  148. // reset() {
  149. // this.form = {
  150. // id: null,
  151. // delFlag: null,
  152. // deptId: null,
  153. // title: null,
  154. // content: null,
  155. // fileUrl: null,
  156. // picture: null,
  157. // status: '0',
  158. // auditTime: null,
  159. // reportDate: null,
  160. // releaseDate: null
  161. // };
  162. // this.resetForm('form');
  163. // this.fileList = [];
  164. // },
  165. },
  166. created() {
  167. }
  168. }
  169. </script>
  170. <style scoped>
  171. </style>