add.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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. :disabled="param.edit"
  7. v-model="form.conferenceTitle"
  8. placeholder="请输入会议标题"
  9. ></el-input>
  10. </el-form-item>
  11. <el-form-item label="内容" prop="conferenceContent">
  12. <el-input
  13. :disabled="param.edit"
  14. type="textarea"
  15. rows="4"
  16. placeholder="请输入会议内容"
  17. v-model="form.conferenceContent"
  18. ></el-input>
  19. </el-form-item>
  20. <p style="display: none" v-html="form.conferenceContent" ref="test"></p>
  21. <!-- <p v-for="(item, i) in deptList"> {{ item.deptId + '----' + item.deptName }} </p> -->
  22. <el-form-item label="协作单位" prop="cooperativeUnitId">
  23. <el-select
  24. clearable
  25. filterable
  26. :multiple="user.type == 1"
  27. v-model="form.cooperativeUnitId"
  28. placeholder="请选择协作单位"
  29. @change="handleChange"
  30. no-data-text="超管无法指派单位"
  31. >
  32. <!-- style="width: 100%" -->
  33. <el-option
  34. :disabled="item.type == user.type && item.deptId == user.deptId"
  35. v-for="(item, i) in deptList"
  36. :key="item.deptId"
  37. :label="item.deptName"
  38. :value="item.deptId"
  39. >
  40. </el-option>
  41. </el-select>
  42. </el-form-item>
  43. <el-form-item label="协作要求" prop="collaborativeContent">
  44. <el-input
  45. :disabled="!(user.deptId == 100 && user.type == 1)"
  46. type="textarea"
  47. rows="4"
  48. placeholder="请输入协作要求"
  49. v-model="form.collaborativeContent"
  50. ></el-input>
  51. </el-form-item>
  52. <el-form-item label="状态" prop="type">
  53. <template>
  54. <el-radio
  55. @input="radioChange"
  56. :disabled="!(user.deptId == 100 && user.type == 1)"
  57. v-model="form.type"
  58. label="1"
  59. >完结</el-radio
  60. >
  61. <el-radio
  62. @input="radioChange"
  63. :disabled="!(user.deptId == 100 && user.type == 1)"
  64. v-model="form.type"
  65. label="2"
  66. >长期</el-radio
  67. >
  68. <el-radio
  69. @input="radioChange"
  70. :disabled="!(user.deptId == 100 && user.type == 1)"
  71. v-model="form.type"
  72. label="3"
  73. >限期</el-radio
  74. >
  75. </template>
  76. </el-form-item>
  77. <el-form-item
  78. v-if="isShowDate"
  79. style="padding-bottom: 20px"
  80. label="限期日期"
  81. prop="date"
  82. >
  83. <el-date-picker
  84. :picker-options="pickerOptions"
  85. :disabled="!(user.deptId == 100 && user.type == 1)"
  86. v-model="form.date"
  87. type="date"
  88. value-format="yyyy-MM-dd"
  89. placeholder="选择日期"
  90. >
  91. </el-date-picker>
  92. </el-form-item>
  93. </el-form>
  94. <div class="mfooter">
  95. <el-button type="primary" @click="submitForm">确 定</el-button>
  96. <el-button @click="$layer.close(layerid)">取 消</el-button>
  97. </div>
  98. </div>
  99. </template>
  100. <script>
  101. import { getDept } from "@/api/portal/CONFERENCEREPLY/CONFERENCEREPLY.js";
  102. import { listDept } from "@/api/system/dept";
  103. import { getInfo } from "@/api/login";
  104. import {
  105. addJOINTCONFERENCE,
  106. updateJOINTCONFERENCE,
  107. getJOINTCONFERENCE,
  108. } from "@/api/portal/JOINTCONFERENCE/JOINTCONFERENCE";
  109. export default {
  110. props: {
  111. param: {
  112. type: Object,
  113. default: () => {
  114. return {};
  115. },
  116. },
  117. layerid: {
  118. type: String,
  119. },
  120. },
  121. data() {
  122. return {
  123. // 时间日期格式选择限制
  124. pickerOptions: {
  125. disabledDate(time) {
  126. const date = new Date();
  127. return time.getTime() < Date.now() - 8.64e7; //禁止选取当天之后的日期(不包括静止当天)
  128. },
  129. },
  130. isShowDate: false,
  131. user: {
  132. type: 1,
  133. },
  134. // 状态选择
  135. status: null,
  136. // 限期日期
  137. date: null,
  138. deptId: [],
  139. deptList: [],
  140. form: {
  141. conferenceContent: "",
  142. cooperativeUnitId: null,
  143. },
  144. rules: {
  145. conferenceTitle: [
  146. { required: true, message: "标题不能为空", trigger: "blur" },
  147. ],
  148. conferenceContent: [
  149. { required: true, message: "内容不能为空", trigger: "blur" },
  150. ],
  151. cooperativeUnitId: [
  152. { required: true, message: "协作单位不能为空", trigger: "blur" },
  153. ],
  154. // type: [{ required: true, message: "状态不能为空", trigger: "blur" }],
  155. // collaborativeContent: [
  156. // { required: true, message: "协作要求不能为空", trigger: "blur" },
  157. // ],
  158. date: [
  159. { required: true, message: "限期时间不能为空", trigger: "blur" },
  160. ],
  161. },
  162. deptListSele: [],
  163. };
  164. },
  165. created() {
  166. if (this.param.id) {
  167. getJOINTCONFERENCE(this.param.id).then((response) => {
  168. this.form = response.data;
  169. let arr = eval("(" + this.form.deptIds + ")");
  170. this.deptId = JSON.parse(this.form.deptIds);
  171. });
  172. }
  173. getInfo().then((res) => {
  174. this.user = res.user.dept;
  175. if (res.user.dept.type == 1 && res.user.userId == 14) {
  176. listDept().then((res) => {
  177. res.data.forEach(item=>{
  178. if(item.type!=3){
  179. this.deptList.push(item);
  180. }
  181. });
  182. });
  183. } else if (res.user.dept.type == 2) {
  184. this.deptList = [
  185. {
  186. searchValue: null,
  187. createBy: "admin",
  188. createTime: "2023-07-20 14:40:52",
  189. updateBy: "admin",
  190. updateTime: "2023-09-18 18:46:44",
  191. params: {},
  192. deptId: 100,
  193. parentId: 0,
  194. ancestors: "0",
  195. deptName: "广西壮族自治区北部湾办公室",
  196. type: 1,
  197. orderNum: 0,
  198. leader: "XXX",
  199. phone: "15888888888",
  200. biaoCang: "23",
  201. email: "ry@qq.com",
  202. status: "0",
  203. delFlag: "0",
  204. parentName: null,
  205. industryOrientation: null,
  206. planningArea: null,
  207. acceptanceArea: null,
  208. useArea: null,
  209. usageRate: null,
  210. warehouse: null,
  211. oilDepot: null,
  212. refrigeratory: null,
  213. workshop: null,
  214. approvalTime: null,
  215. children: [],
  216. createBy_dictText: "管理员",
  217. },
  218. ];
  219. }
  220. });
  221. },
  222. updated() {
  223. this.form.conferenceContent = this.$refs["test"].innerText;
  224. },
  225. methods: {
  226. radioChange(val) {
  227. if (val == 1 || val == 2) {
  228. this.isShowDate = false;
  229. return;
  230. }
  231. this.isShowDate = true;
  232. },
  233. handleChange(val) {
  234. console.log(typeof val);
  235. },
  236. /** 提交按钮 */
  237. submitForm() {
  238. this.$refs["form"].validate((valid) => {
  239. let cooperativeUnitId;
  240. if (valid) {
  241. if (typeof this.form.cooperativeUnitId == "object") {
  242. cooperativeUnitId = this.form.cooperativeUnitId;
  243. } else {
  244. cooperativeUnitId = [this.form.cooperativeUnitId];
  245. }
  246. if (this.user.type == 1 && this.user.deptId == 100)
  247. cooperativeUnitId.push(100);
  248. console.log(cooperativeUnitId);
  249. if (this.form.id != null) {
  250. this.form.deptNum = 1;
  251. updateJOINTCONFERENCE({ ...this.form, cooperativeUnitId }).then(
  252. (response) => {
  253. this.$modal.msgSuccess("修改成功");
  254. this.$layer.close(this.layerid);
  255. this.$parent.getList();
  256. }
  257. );
  258. } else {
  259. //俊豪像甲方一样,老是让我改传参
  260. //↑好家伙你还改错了,是seleValue不是deptId
  261. //↑啥玩意?
  262. this.form.deptNum = cooperativeUnitId.length;
  263. addJOINTCONFERENCE({ ...this.form, cooperativeUnitId }).then(
  264. (response) => {
  265. this.$modal.msgSuccess("发布成功");
  266. this.$layer.close(this.layerid);
  267. this.$parent.getList();
  268. }
  269. );
  270. }
  271. }
  272. });
  273. },
  274. },
  275. };
  276. </script>
  277. <style lang="scss" scoped>
  278. p {
  279. margin: 0;
  280. }
  281. </style>