后端

paper-add-or-update.vue 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <el-dialog
  3. :title="!dataForm.id ? '新增' : '修改'"
  4. :close-on-click-modal="false"
  5. :visible.sync="visible"
  6. >
  7. <el-form
  8. :model="dataForm"
  9. :rules="dataRule"
  10. ref="dataForm"
  11. @keyup.enter.native="dataFormSubmit()"
  12. label-width="100px"
  13. >
  14. <el-form-item label="投稿人姓名" prop="attendersId">
  15. <!-- <el-input v-model="dataForm.attendersId" placeholder="参会人员id"></el-input> -->
  16. <el-select v-model="dataForm.attendersId" filterable placeholder="请选择">
  17. <el-option v-for="item in options" :key="item.id" :label="item.name" :value="item.id"></el-option>
  18. </el-select>
  19. </el-form-item>
  20. <el-form-item label="论文题目" prop="title">
  21. <el-input v-model="dataForm.title" placeholder="论文题目"></el-input>
  22. </el-form-item>
  23. <el-form-item label="摘要" prop="summary">
  24. <el-input v-model="dataForm.summary" placeholder="摘要" type="textarea"></el-input>
  25. </el-form-item>
  26. <el-form-item label="上传投稿">
  27. <el-upload
  28. class="upload-demo"
  29. ref="upload"
  30. :action="upload_url"
  31. :on-success="successHandle"
  32. :file-list="fileList"
  33. :limit="1"
  34. :on-exceed="handleExceed"
  35. :auto-upload="false"
  36. name="upload_file"
  37. >
  38. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  39. <el-button
  40. style="margin-left: 10px;"
  41. size="small"
  42. type="success"
  43. @click="submitUpload"
  44. >上传到服务器</el-button>
  45. <div slot="tip" class="el-upload__tip" style="color:red">只能上传 pdf doc docx 文件</div>
  46. </el-upload>
  47. </el-form-item>
  48. </el-form>
  49. <span slot="footer" class="dialog-footer">
  50. <el-button @click="visible = false">取消</el-button>
  51. <el-button type="primary" @click="dataFormSubmit()">确定</el-button>
  52. </span>
  53. </el-dialog>
  54. </template>
  55. <script>
  56. export default {
  57. data() {
  58. return {
  59. visible: false,
  60. dataForm: {
  61. id: 0,
  62. meetingId: "",
  63. attendersId: "",
  64. title: "",
  65. summary: "",
  66. paperurl: ""
  67. },
  68. dataRule: {
  69. attendersId: [
  70. { required: true, message: "参会人员id不能为空", trigger: "blur" }
  71. ],
  72. summary: [{ required: true, message: "摘要不能为空", trigger: "blur" }]
  73. },
  74. options: [],
  75. upload_url: "",
  76. successNum: 0,
  77. fileList: []
  78. };
  79. },
  80. created() {
  81. this.getPerson();
  82. },
  83. methods: {
  84. init(id) {
  85. this.dataForm.id = id || 0;
  86. this.visible = true;
  87. this.$nextTick(() => {
  88. this.$refs["dataForm"].resetFields();
  89. if (this.dataForm.id) {
  90. this.$http({
  91. url: this.$http.adornUrl(`/admin/paper/info/${this.dataForm.id}`),
  92. method: "get",
  93. params: this.$http.adornParams()
  94. }).then(({ data }) => {
  95. if (data && data.code === 0) {
  96. this.dataForm.meetingId = this.$route.params.id;
  97. this.dataForm.attendersId = data.paper.attendersId;
  98. this.dataForm.title = data.paper.title;
  99. this.dataForm.summary = data.paper.summary;
  100. this.dataForm.paperurl = data.paper.paperurl;
  101. }
  102. });
  103. }
  104. });
  105. this.upload_url = this.$http.adornUrl(
  106. `/sys/filemanager/uploadfile?token=${this.$cookie.get("token")}`
  107. );
  108. },
  109. // 表单提交
  110. dataFormSubmit() {
  111. this.$refs["dataForm"].validate(valid => {
  112. if (valid) {
  113. this.$http({
  114. url: this.$http.adornUrl(
  115. `/admin/paper/${!this.dataForm.id ? "save" : "update"}`
  116. ),
  117. method: "post",
  118. data: this.$http.adornData({
  119. id: this.dataForm.id || undefined,
  120. meetingId: this.$route.params.id,
  121. attendersId: this.dataForm.attendersId,
  122. title: this.dataForm.title,
  123. summary: this.dataForm.summary,
  124. paperurl: this.dataForm.paperurl
  125. })
  126. }).then(({ data }) => {
  127. if (data && data.code === 0) {
  128. this.$message({
  129. message: "操作成功",
  130. type: "success",
  131. duration: 1500,
  132. onClose: () => {
  133. this.visible = false;
  134. this.$emit("refreshDataList");
  135. }
  136. });
  137. this.fileList = [];
  138. } else {
  139. this.$message.error(data.msg);
  140. this.fileList = [];
  141. }
  142. });
  143. }
  144. });
  145. },
  146. getPerson() {
  147. this.$http({
  148. url: this.$http.adornUrl("/admin/attenders/selectbyname"),
  149. methods: "get",
  150. params: {
  151. name: "",
  152. meetingId: this.$route.params.id
  153. }
  154. }).then(({ data }) => {
  155. if (data && data.code === 0) {
  156. this.options = data.list;
  157. }
  158. });
  159. },
  160. submitUpload() {
  161. this.$refs.upload.submit();
  162. },
  163. successHandle(response) {
  164. if (response && response.code === 0) {
  165. this.dataForm.paperurl = response.filename;
  166. this.$message({
  167. message: "上传成功",
  168. type: "success"
  169. });
  170. } else {
  171. this.$message.error(response.msg);
  172. }
  173. },
  174. handleExceed(files, fileList) {
  175. //上传限制
  176. this.$message.warning(`只能上传 1 个文件`);
  177. }
  178. }
  179. };
  180. </script>