add.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <div class="cmain">
  3. <el-form ref="form" :model="form" :rules="rules" label-width="100px">
  4. <el-form-item label="会议标题" prop="conferenceTitle">
  5. <el-input
  6. v-model="form.conferenceTitle"
  7. placeholder="请输入会议标题"
  8. ></el-input>
  9. </el-form-item>
  10. <el-form-item label="会议内容" prop="conferenceContent">
  11. <el-input
  12. type="textarea"
  13. rows="4"
  14. placeholder="请输入会议会议内容"
  15. v-model="form.conferenceContent"
  16. ></el-input>
  17. </el-form-item>
  18. <el-form-item label="协作单位" prop="dept">
  19. <!-- <el-select
  20. v-model="deptId"
  21. multiple
  22. placeholder="请选择协作单位"
  23. @change="selectChange"
  24. style="width: 100%"
  25. >
  26. <el-option
  27. v-for="item in deptList"
  28. :key="item.deptId"
  29. :label="item.deptName"
  30. :value="item.deptId"
  31. >
  32. </el-option>
  33. </el-select> -->
  34. <el-cascader
  35. clearable
  36. v-model="seleValue"
  37. :options="deptListSele"
  38. :props="propOpt"
  39. @change="handleChange"
  40. >
  41. </el-cascader>
  42. </el-form-item>
  43. <el-form-item label="状态">
  44. <template>
  45. <el-radio v-model="radio" label="1">完结</el-radio>
  46. <el-radio v-model="radio" label="2">长期</el-radio>
  47. <el-radio v-model="radio" label="3">限期</el-radio>
  48. </template>
  49. </el-form-item>
  50. <el-form-item label="限期日期">
  51. <el-date-picker v-model="date" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
  52. </el-date-picker>
  53. </el-form-item>
  54. </el-form>
  55. <div class="mfooter">
  56. <el-button type="primary" @click="submitForm">确 定</el-button>
  57. <el-button @click="$layer.close(layerid)">取 消</el-button>
  58. </div>
  59. </div>
  60. </template>
  61. <script>
  62. import { getDept } from "@/api/portal/CONFERENCEREPLY/CONFERENCEREPLY.js";
  63. import { listDept } from "@/api/system/dept";
  64. import {
  65. addJOINTCONFERENCE,
  66. updateJOINTCONFERENCE,
  67. getJOINTCONFERENCE,
  68. } from "@/api/portal/JOINTCONFERENCE/JOINTCONFERENCE";
  69. export default {
  70. props: {
  71. param: {
  72. type: Object,
  73. default: () => {
  74. return {};
  75. },
  76. },
  77. layerid: {
  78. type: String,
  79. },
  80. },
  81. data() {
  82. var checkDeptId = (rule, value, callback) => {
  83. if (this.seleValue.length == 0) {
  84. return callback(new Error("协作单位不能为空"));
  85. } else {
  86. callback();
  87. }
  88. };
  89. return {
  90. // 状态选择
  91. radio:null,
  92. // 限期日期
  93. date:null,
  94. propOpt: {
  95. value: "value",
  96. label: "label",
  97. children: "children",
  98. multiple: true,
  99. checkStrictly: true,
  100. emitPath: false,
  101. },
  102. deptId: [],
  103. deptList: [],
  104. form: {},
  105. rules: {
  106. conferenceTitle: [
  107. { required: true, message: "会议标题不能为空", trigger: "blur" },
  108. ],
  109. conferenceContent: [
  110. { required: true, message: "会议内容不能为空", trigger: "blur" },
  111. ],
  112. dept: [{ validator: checkDeptId, trigger: "blur" }],
  113. },
  114. deptListSele: [],
  115. seleValue: [],
  116. };
  117. },
  118. created() {
  119. if (this.param.id) {
  120. getJOINTCONFERENCE(this.param.id).then((response) => {
  121. this.form = response.data;
  122. this.seleValue = this.form.deptIds;
  123. let arr = eval("(" + this.form.deptIds + ")");
  124. this.seleValue = arr;
  125. this.deptId = JSON.parse(this.form.deptIds);
  126. });
  127. }
  128. listDept(this.queryParams).then((response) => {
  129. this.deptListSele = this.handleTrees(response.data, "deptId");
  130. this.deptListSele.forEach((item, index) => {
  131. if (item.children) {
  132. item.children.forEach((it, i) => {
  133. it.children = null;
  134. });
  135. }
  136. });
  137. });
  138. getDept(2).then((res) => {
  139. this.deptList = res.data;
  140. });
  141. },
  142. mounted() {},
  143. methods: {
  144. handleTrees(data, id, parentId, children) {
  145. let config = {
  146. id: id || "id",
  147. parentId: parentId || "parentId",
  148. childrenList: children || "children",
  149. };
  150. var childrenListMap = {};
  151. var nodeIds = {};
  152. var tree = [];
  153. for (let d of data) {
  154. let parentId = d[config.parentId];
  155. if (childrenListMap[parentId] == null) {
  156. childrenListMap[parentId] = [];
  157. }
  158. nodeIds[d[config.id]] = d;
  159. d.label = d.deptName;
  160. d.value = d.deptId;
  161. childrenListMap[parentId].push(d);
  162. }
  163. for (let d of data) {
  164. let parentId = d[config.parentId];
  165. if (nodeIds[parentId] == null) {
  166. tree.push(d);
  167. }
  168. }
  169. for (let t of tree) {
  170. adaptToChildrenList(t);
  171. }
  172. function adaptToChildrenList(o) {
  173. if (childrenListMap[o[config.id]] !== null) {
  174. o[config.childrenList] = childrenListMap[o[config.id]];
  175. }
  176. if (o[config.childrenList]) {
  177. for (let c of o[config.childrenList]) {
  178. adaptToChildrenList(c);
  179. }
  180. }
  181. }
  182. return tree;
  183. },
  184. selectChange(val) {
  185. // console.log(val);
  186. },
  187. handleChange(val) {
  188. console.log(val);
  189. },
  190. /** 提交按钮 */
  191. submitForm() {
  192. this.$refs["form"].validate((valid) => {
  193. if (valid) {
  194. if (this.form.id != null) {
  195. this.form.cooperativeUnitId = this.seleValue;
  196. this.form.deptNum = this.form.cooperativeUnitId.length;
  197. updateJOINTCONFERENCE(this.form).then((response) => {
  198. this.$modal.msgSuccess("修改成功");
  199. this.$layer.close(this.layerid);
  200. this.$parent.getList();
  201. });
  202. } else {
  203. // this.form.deptName = [];
  204. // for (const index in this.form.deptId) {
  205. // for (const i in this.deptList) {
  206. // if (this.form.deptId[index] == this.deptList[i].deptId) {
  207. // console.log(
  208. // this.form.deptId[index],
  209. // this.deptList[i].deptName
  210. // );
  211. // this.form.deptName[index] = this.deptList[i].deptName;
  212. // }
  213. // }
  214. // }
  215. //俊豪像甲方一样,老是让我改传参
  216. //↑好家伙你还改错了,是seleValue不是deptId
  217. this.form.cooperativeUnitId = this.seleValue;
  218. this.form.deptNum = this.form.cooperativeUnitId.length;
  219. addJOINTCONFERENCE(this.form).then((response) => {
  220. this.$modal.msgSuccess("发布成功");
  221. this.$layer.close(this.layerid);
  222. this.$parent.getList();
  223. });
  224. }
  225. }
  226. });
  227. },
  228. },
  229. };
  230. </script>
  231. <style></style>