exam-form.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <el-form
  3. v-loading="loading"
  4. ref="ruleForm"
  5. :model="ruleForm"
  6. status-icon
  7. :rules="rulesThis"
  8. :label-width="labelWidth || '100px'"
  9. class="demo-ruleForm"
  10. :size="size || 'medium'"
  11. >
  12. <el-row>
  13. <el-col :span="12"
  14. ><el-form-item label="审核状态" prop="state">
  15. <el-radio-group
  16. v-model="ruleForm.state"
  17. placeholder="审核状态"
  18. style="width: 100%"
  19. :disabled="disabled"
  20. @change="stateChange"
  21. >
  22. <el-radio
  23. v-for="item in stateList"
  24. :key="item.value"
  25. :label="item.value"
  26. >{{ item.label }}</el-radio
  27. >
  28. </el-radio-group>
  29. </el-form-item>
  30. </el-col>
  31. <el-col :span="12">
  32. <el-button
  33. v-if="!disabled"
  34. :size="'mini'"
  35. type="primary"
  36. class="fr"
  37. @click="submitForm"
  38. >保 存
  39. </el-button>
  40. </el-col>
  41. <el-col :span="24">
  42. <el-form-item label="审核备注" prop="remark">
  43. <el-input
  44. type="textarea"
  45. placeholder="审核备注"
  46. v-model="ruleForm.remark"
  47. :disabled="disabled"
  48. maxlength="250"
  49. :autosize="{ minRows: 2, maxRows: 2 }"
  50. show-word-limit
  51. />
  52. </el-form-item>
  53. </el-col>
  54. </el-row>
  55. </el-form>
  56. </template>
  57. <script>
  58. export default {
  59. name: "exam-form",
  60. props: ["size", "disabled", "labelWidth", "sitem"],
  61. /**
  62. * 属性集合
  63. * @param {String} size : 组件大小 非必填
  64. * @param {Array} statusList : 驳回至备选项 必填
  65. * @param {Boolean} disabled : 是否禁用 必填
  66. * @param {Boolean} isMust : 是否需要展示驳回节点 必填
  67. *
  68. *
  69. */
  70. /**
  71. * 事件集合
  72. * @searchChange : 选中值变化调用 抛出选中数据
  73. */
  74. data() {
  75. return {
  76. loading: false,
  77. stateList: [
  78. {
  79. value: "1",
  80. label: "通过",
  81. },
  82. {
  83. value: "0",
  84. label: "驳回",
  85. },
  86. ],
  87. showModelThis: this.showModel,
  88. ruleForm: {
  89. state: "1", // 通过or驳回
  90. rebut: "", //驳回至
  91. remark: "",
  92. },
  93. rulesThis: this.rules,
  94. rules: {
  95. state: [
  96. {
  97. required: true,
  98. message: "请选择审核状态",
  99. trigger: "change",
  100. },
  101. ],
  102. remark: [
  103. { required: true, message: "请输入审核备注", trigger: "blur" },
  104. ],
  105. },
  106. };
  107. },
  108. watch: {
  109. newTime: function () {
  110. this.initForm();
  111. },
  112. },
  113. mounted() {
  114. this.initForm();
  115. },
  116. methods: {
  117. async initForm() {
  118. this.loading = true;
  119. this.rulesThis = this.rules;
  120. await this.resetForm();
  121. this.stateChange();
  122. this.loading = false;
  123. },
  124. stateChange() {
  125. this.rulesThis.remark[0].required = this.ruleForm.state !== "1";
  126. },
  127. async resetForm() {
  128. // 重置
  129. await this.$nextTick(() => {
  130. if (this.$refs.ruleForm) {
  131. this.$refs.ruleForm.resetFields();
  132. this.$refs.ruleForm.clearValidate();
  133. console.log(this.sitem);
  134. const { state, remark } = this.sitem;
  135. this.ruleForm = {
  136. state: state || "1", // 通过or驳回
  137. remark: remark || "",
  138. };
  139. }
  140. });
  141. },
  142. async submitForm() {
  143. await this.$refs.ruleForm.validate(async (valid) => {
  144. if (valid) {
  145. this.$emit("searchChange", this.ruleForm);
  146. } else {
  147. console.log("error submit!!");
  148. return false;
  149. }
  150. });
  151. },
  152. },
  153. };
  154. </script>
  155. <style lang="scss" scoped>
  156. .exa {
  157. margin: 20px 0 0 30px;
  158. font-size: 14px;
  159. font-weight: bold;
  160. }
  161. </style>