addEditForm.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <el-form
  3. ref="ruleForm"
  4. :loading="loading"
  5. :model="ruleForm"
  6. status-icon
  7. :rules="rulesThis"
  8. label-width="100px"
  9. style="width: 100%"
  10. class="demo-ruleForm"
  11. >
  12. <el-row>
  13. <el-col :span="id !== 'add' ? 12 : 24">
  14. <el-form-item label="离职人" prop="resign_uid">
  15. <search-account
  16. :disabled="
  17. !(
  18. id === 'add' ||
  19. (status === '0' && powers.some((item) => item == '005'))
  20. )
  21. "
  22. :is-detail="id !== 'add'"
  23. :value="ruleForm.resign_uid"
  24. :size="searchSize"
  25. :names="resign_name"
  26. :placeholder="'离职人名称'"
  27. @searchChange="handleResignName"
  28. />
  29. </el-form-item>
  30. </el-col>
  31. <el-col :span="id !== 'add' ? 12 : 24">
  32. <el-form-item label="接受人" prop="hand_uid">
  33. <search-account
  34. :disabled="
  35. !(
  36. id === 'add' ||
  37. (status === '0' && powers.some((item) => item == '005'))
  38. )
  39. "
  40. :is-detail="id !== 'add'"
  41. :value="ruleForm.hand_uid"
  42. :size="searchSize"
  43. :names="hand_name"
  44. :placeholder="'接受人名称'"
  45. @searchChange="handleHandoverName"
  46. />
  47. </el-form-item>
  48. </el-col>
  49. <el-col :span="id !== 'add' ? 12 : 24">
  50. <el-form-item label="生效时间" prop="expire_date">
  51. <el-date-picker
  52. v-model="ruleForm.expire_date"
  53. type="datetime"
  54. style="width: 100%"
  55. value-format="yyyy-MM-dd HH:mm:ss"
  56. placeholder="生效时间"
  57. :disabled="
  58. !(
  59. id === 'add' ||
  60. (status === '0' && powers.some((item) => item == '005'))
  61. )
  62. "
  63. >
  64. </el-date-picker>
  65. </el-form-item>
  66. </el-col>
  67. <el-col :span="12">
  68. <el-form-item label="审核备注" prop="remark">
  69. <el-input
  70. type="textarea"
  71. disabled
  72. :autosize="{ minRows: 4, maxRows: 4 }"
  73. placeholder="审核备注"
  74. maxlength="250"
  75. show-word-limit
  76. v-model="ruleForm.remark"
  77. />
  78. </el-form-item>
  79. </el-col>
  80. <el-col
  81. :span="id !== 'add' ? 12 : 24"
  82. style="text-align: right; padding: 0 0 20px 0"
  83. v-if="
  84. id === 'add' ||
  85. (status === '0' && powers.some((item) => item == '005'))
  86. "
  87. >
  88. <el-button type="primary" :size="'mini'" @click="submitForm"
  89. >保 存</el-button
  90. >
  91. </el-col>
  92. </el-row>
  93. </el-form>
  94. </template>
  95. <script>
  96. import asyncRequest from "@/apis/service/interest/handover";
  97. import resToken from "@/mixins/resToken";
  98. export default {
  99. name: "handover",
  100. props: ["id", "newTime", "sitem"],
  101. mixins: [resToken],
  102. data() {
  103. return {
  104. loading: false,
  105. disabled: true,
  106. status: "", //存储详情接口返的状态
  107. resign_name: "", //离职人
  108. hand_name: "", //交接人
  109. ruleForm: {
  110. hand_uid: [],
  111. resign_uid: [],
  112. expire_date: "",
  113. remark: "",
  114. },
  115. rulesThis: this.rules,
  116. // 验证规则
  117. rules: {
  118. resign_uid: [
  119. {
  120. type: "array",
  121. required: true,
  122. message: "请选择离职人",
  123. trigger: "change",
  124. },
  125. ],
  126. hand_uid: [
  127. {
  128. type: "array",
  129. required: true,
  130. message: "请选择接受人",
  131. trigger: "change",
  132. },
  133. ],
  134. expire_date: [
  135. {
  136. required: true,
  137. message: "请选择生效时间",
  138. trigger: "blur",
  139. },
  140. ],
  141. },
  142. };
  143. },
  144. computed: {
  145. powers() {
  146. let tran =
  147. this.$store.getters.btnList.find(
  148. (item) => item.menu_route == "handoverDetail"
  149. ) || {};
  150. if (tran && tran.action && tran.action.length > 0) {
  151. return tran.action;
  152. } else {
  153. return [];
  154. }
  155. },
  156. },
  157. mounted() {
  158. this.initForm();
  159. },
  160. watch: {
  161. id: function (val) {
  162. if (val) {
  163. this.initForm();
  164. }
  165. },
  166. newTime: function (val) {
  167. if (val) {
  168. this.initForm();
  169. }
  170. },
  171. },
  172. methods: {
  173. async initForm() {
  174. this.loading = true;
  175. this.status = "";
  176. this.rulesThis = this.rules;
  177. await this.resetForm();
  178. this.loading = false;
  179. },
  180. async resetForm() {
  181. this.resign_name = "";
  182. this.hand_name = "";
  183. // 重置
  184. await this.$nextTick(() => {
  185. if (this.$refs.ruleForm) {
  186. this.$refs.ruleForm.resetFields();
  187. this.$refs.ruleForm.clearValidate();
  188. console.log(this.sitem);
  189. const {
  190. status,
  191. resign_name,
  192. hand_name,
  193. hand_uid,
  194. resign_uid,
  195. expire_date,
  196. remark,
  197. } = this.sitem;
  198. this.resign_name = resign_name || "";
  199. this.hand_name = hand_name || "";
  200. this.status = status || "";
  201. this.ruleForm = {
  202. hand_uid: hand_uid ? hand_uid.split(",") : [],
  203. resign_uid: resign_uid ? resign_uid.split(",") : [],
  204. expire_date: expire_date || "",
  205. remark: remark || "",
  206. };
  207. }
  208. });
  209. },
  210. async submitForm() {
  211. await this.$refs.ruleForm.validate(async (valid) => {
  212. if (valid) {
  213. if(!this.loading){
  214. const { resign_uid, hand_uid, expire_date } = this.ruleForm;
  215. let rUid = resign_uid.toString(),
  216. hUid = hand_uid.toString();
  217. if (rUid === hUid) {
  218. this.$message.error("离职人和接收人不能相同");
  219. return;
  220. }
  221. this.loading = true;
  222. const model = {
  223. id: this.id,
  224. resign_uid: rUid,
  225. hand_uid: hUid,
  226. expire_date: expire_date,
  227. };
  228. let res = {};
  229. if (this.id === "add") {
  230. delete model["id"];
  231. res = await asyncRequest.add(model);
  232. } else {
  233. res = await asyncRequest.update(model);
  234. }
  235. this.loading = false;
  236. if (res && res.code === 0) {
  237. const title = this.id === "add" ? "添加成功!" : "修改成功!";
  238. this.$notify.success({
  239. title,
  240. message: "",
  241. });
  242. this.$emit("refresh");
  243. } else if (res && res.code >= 100 && res.code <= 104) {
  244. await this.logout();
  245. } else {
  246. this.$message.warning(res.message);
  247. }
  248. }
  249. } else {
  250. console.log("error submit!!");
  251. return false;
  252. }
  253. });
  254. },
  255. handleResignName(e) {
  256. if (e && e.id) {
  257. this.ruleForm.resign_uid = [e.id];
  258. } else {
  259. this.ruleForm.resign_uid = [];
  260. }
  261. this.$refs.ruleForm.validateField("resign_uid");
  262. },
  263. handleHandoverName(e) {
  264. if (e && e.id) {
  265. this.ruleForm.hand_uid = [e.id];
  266. } else {
  267. this.ruleForm.hand_uid = [];
  268. }
  269. this.$refs.ruleForm.validateField("hand_uid");
  270. },
  271. },
  272. };
  273. </script>
  274. <style lang="scss" scoped>
  275. </style>