edit.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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" v-if="checkPermi(['business:COUNSELINGMESSAGE:confirm'])">暂存草稿</el-button>
  32. <el-button type="primary" @click="submitForm" v-if="checkPermi(['business:COUNSELINGMESSAGE:confirm'])">提交审核</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. import { checkPermi } from "@/utils/permission";
  43. export default {
  44. name: 'edit.vue',
  45. data(){
  46. return{
  47. baseUrl: process.env.VUE_APP_BASE_API,
  48. dialogVisible:false,
  49. disabled: false,
  50. fileList: [],
  51. // 表单参数
  52. form: {content:''},
  53. // 表单校验
  54. rules: {
  55. title: [{ required: true, message: '标题不能为空', trigger: 'blur' }],
  56. content: [{ required: true, message: '内容不能为空', trigger: 'blur' }],
  57. fileUrl: [{ required: true, message: '附件不能为空', trigger: 'blur' }],
  58. picture: [{ required: true, message: '图片不能为空', trigger: 'blur' }],
  59. }
  60. }
  61. },
  62. mounted() {
  63. if (this.param.id) {
  64. getCOUNSELINGMESSAGE(this.param.id).then(response => {
  65. this.form = response.data;
  66. this.form.content = response.data.content.replace(new RegExp('/profile/upload/', 'g'), this.baseUrl + '/profile/upload/');
  67. });
  68. }
  69. },
  70. props: {
  71. param: {
  72. type: Object,
  73. default: () => {
  74. return {};
  75. }
  76. },
  77. layerid: {
  78. type: String
  79. }
  80. },
  81. methods:{
  82. checkPermi,
  83. //旧的图片上传
  84. httprequest() {},
  85. /** 上传附件 */
  86. beforeupload(file) {
  87. let formData = new FormData();
  88. formData.append('file', file);
  89. upload(formData).then(res => {
  90. this.form.fileUrl = res.url;
  91. });
  92. },
  93. //放大预览
  94. handlePictureCardPreview(file) {
  95. this.form.fileUrl = file.url;
  96. this.dialogVisible = true;
  97. },
  98. handleRemove(file) {
  99. this.form.fileUrl = '';
  100. this.fileList = [];
  101. },
  102. /** 暂存按钮 */
  103. submitzc() {
  104. this.$refs['form'].validate(valid => {
  105. if (valid) {
  106. if (this.form.id == null) {
  107. this.form.status = '0';
  108. addCOUNSELINGMESSAGE(this.form).then(response => {
  109. this.$modal.msgSuccess('暂存成功');
  110. this.$layer.close(this.layerid);
  111. this.$parent.getList();
  112. });
  113. } else if ((this.form.id !== null) && this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5 ||this.form.status == 6) {
  114. this.form.status = '0';
  115. updateCOUNSELINGMESSAGE(this.form).then(response => {
  116. this.$modal.msgSuccess('修改成功');
  117. this.$layer.close(this.layerid);
  118. this.$parent.getList();
  119. });
  120. }
  121. }
  122. });
  123. },
  124. /** 提交按钮 */
  125. submitForm() {
  126. this.$refs['form'].validate(valid => {
  127. if (valid) {
  128. if (this.form.id != null) {
  129. this.form.status = '1';
  130. newCommit(this.form).then(response => {
  131. this.$modal.msgSuccess('修改成功');
  132. this.$layer.close(this.layerid);
  133. this.$parent.getList();
  134. });
  135. } else {
  136. addCOUNSELINGMESSAGE(this.form).then(response => {
  137. this.$modal.msgSuccess('新增成功');
  138. this.$layer.close(this.layerid);
  139. this.$parent.getList();
  140. });
  141. }
  142. }
  143. });
  144. },
  145. // // 取消按钮
  146. // cancel() {
  147. // this.open = false;
  148. // this.reset();
  149. // },
  150. // // 表单重置
  151. // reset() {
  152. // this.form = {
  153. // id: null,
  154. // delFlag: null,
  155. // deptId: null,
  156. // title: null,
  157. // content: null,
  158. // fileUrl: null,
  159. // picture: null,
  160. // status: '0',
  161. // auditTime: null,
  162. // reportDate: null,
  163. // releaseDate: null
  164. // };
  165. // this.resetForm('form');
  166. // this.fileList = [];
  167. // },
  168. },
  169. created() {
  170. }
  171. }
  172. </script>
  173. <style scoped>
  174. </style>