callback.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <template>
  2. <div class="cmain">
  3. <div class="detail_item">
  4. <div class="title">标题:</div>
  5. <p>{{ form.conference.conferenceTitle }}</p>
  6. </div>
  7. <div class="detail_item content">
  8. <div class="title">内容:</div>
  9. <span v-html="form.conference.conferenceContent"></span>
  10. </div>
  11. <div class="detail_item">
  12. <div class="title">回 复:</div>
  13. <textarea
  14. v-model="queryData.reply"
  15. style="width: 60%; height: 200px"
  16. ></textarea>
  17. </div>
  18. <div class="detail_item">
  19. <div class="title">附 件:</div>
  20. <el-upload
  21. class="upload-demo"
  22. ref="upload"
  23. :headers="{
  24. Authorization: 'Bearer ' + token,
  25. }"
  26. accept=".doc,.docx,.xls,.xlsx"
  27. name="file"
  28. list-type="doc/docx/xls/xlsx"
  29. :action="ip + '/common/upload'"
  30. :on-change="handleSelect"
  31. :on-remove="handleRemove"
  32. :on-success="handleSuccess"
  33. :before-upload="beforeFileUpload"
  34. :file-list="fileList"
  35. :auto-upload="false"
  36. >
  37. <el-button slot="trigger" size="small" type="primary"
  38. >选取文件</el-button
  39. >
  40. <!-- <el-button
  41. style="margin-left: 10px"
  42. size="small"
  43. type="success"
  44. @click="submitUpload"
  45. >上传到服务器</el-button
  46. > -->
  47. <div slot="tip" class="el-upload__tip">
  48. 只能上传 doc/docx/xls/xlsx 文件
  49. </div>
  50. </el-upload>
  51. </div>
  52. <div class="mfooter">
  53. <el-button type="primary" @click="submitUpload">回 复</el-button>
  54. <el-button @click="$layer.close(layerid)">返 回</el-button>
  55. </div>
  56. </div>
  57. </template>
  58. <script>
  59. import {
  60. getAttendMeetingDetail,
  61. setMeetingReply,
  62. } from "@/api/portal/JOINTCONFERENCE/JOINTCONFERENCE";
  63. export default {
  64. data() {
  65. return {
  66. form: {
  67. conference: {},
  68. reply: [],
  69. },
  70. fileList: [],
  71. fileUplodList: [],
  72. queryData: {
  73. conferenceId: "",
  74. reply: "",
  75. attachment: "",
  76. },
  77. imgList: [],
  78. ip: null,
  79. token: null,
  80. };
  81. },
  82. props: {
  83. param: {
  84. type: Object,
  85. default: () => {
  86. return {};
  87. },
  88. },
  89. layerid: {
  90. type: String,
  91. },
  92. },
  93. created() {
  94. this.token = this.$store.state.user.token;
  95. this.ip = process.env.VUE_APP_BASE_IP;
  96. if (this.param.id) {
  97. getAttendMeetingDetail(this.param.id).then((response) => {
  98. this.form = response.data;
  99. console.log(this.form);
  100. });
  101. }
  102. },
  103. methods: {
  104. handleSelect(file, list) {
  105. this.fileList = list;
  106. },
  107. handleRemove(file, list) {},
  108. handleSuccess(response, file, fileList) {
  109. this.imgList = [];
  110. fileList.forEach((i) => {
  111. if (i.response.fileName) {
  112. this.imgList.push(i.response.fileName + "");
  113. }
  114. });
  115. this.queryData.conferenceId = this.form.conference.id;
  116. this.queryData.attachment = this.imgList.toString();
  117. setMeetingReply(this.queryData).then((res) => {
  118. if (res.code == 200) {
  119. if (res.msg == "该会议已回复") {
  120. this.$message.error(res.msg);
  121. this.$layer.close(this.layerid);
  122. return;
  123. }
  124. this.$parent.getList();
  125. this.$modal.msgSuccess(res.msg);
  126. this.$layer.close(this.layerid);
  127. }
  128. });
  129. },
  130. submitUpload() {
  131. if (this.fileList.length == 0) {
  132. this.queryData.conferenceId = this.form.conference.id;
  133. // this.queryData.attachment = this.imgList.toString();
  134. setMeetingReply(this.queryData).then((res) => {
  135. if (res.code == 200) {
  136. if (res.msg == "该会议已回复") {
  137. this.$message.error(res.msg);
  138. this.$layer.close(this.layerid);
  139. return;
  140. }
  141. this.$parent.getList();
  142. this.$modal.msgSuccess(res.msg);
  143. this.$layer.close(this.layerid);
  144. }
  145. });
  146. return;
  147. }
  148. this.$refs.upload.submit();
  149. },
  150. beforeFileUpload(file) {
  151. let type = file.name.substring(file.name.lastIndexOf(".") + 1);
  152. let is =
  153. type == "doc" || type == "docx" || type == "xls" || type == "xlsx";
  154. if (!is) {
  155. this.$message.warning("文件只支持doc/ docx/ xls/ xlsx");
  156. }
  157. return is;
  158. },
  159. },
  160. };
  161. </script>
  162. <style scoped lang="scss">
  163. .cmain .detail_item {
  164. display: flex;
  165. align-items: flex-start;
  166. justify-content: start;
  167. margin-bottom: 20px;
  168. color: #333333;
  169. font-size: 16px;
  170. }
  171. .content{
  172. align-items: center;
  173. }
  174. .detail_item .title {
  175. width: 100px;
  176. margin: 0;
  177. }
  178. .cmain .detail_item p {
  179. margin: 0;
  180. }
  181. textarea:focus{
  182. outline: none;
  183. }
  184. </style>