edit.vue 6.2 KB

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