addEdit.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="'修改表格需求'"
  5. :center="true"
  6. align="left"
  7. top="25vh"
  8. width="600px"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. element-loading-text="拼命加载中"
  12. element-loading-spinner="el-icon-loading"
  13. element-loading-background="rgba(0, 0, 0, 0.8)"
  14. @close="closeModel"
  15. >
  16. <el-card style="margin: -20px 0 0 0">
  17. <el-row :gutter="10">
  18. <el-col :span="24">
  19. <el-form
  20. ref="ruleForm"
  21. :model="ruleForm"
  22. status-icon
  23. :rules="rulesThis"
  24. label-width="90px"
  25. class="demo-ruleForm"
  26. >
  27. <el-form-item label="业务表" prop="id">
  28. <el-select
  29. v-model="ruleForm.id"
  30. style="width: 100%"
  31. disabled
  32. placeholder="请选择业务表"
  33. >
  34. <el-option
  35. v-for="item in options"
  36. :key="item.value"
  37. :label="item.label"
  38. :value="item.value"
  39. >
  40. </el-option>
  41. </el-select>
  42. </el-form-item>
  43. <el-form-item label="数据时间" prop="start">
  44. <period-date-picker
  45. :start="ruleForm.start"
  46. :end="ruleForm.end"
  47. :type="type"
  48. :width="'199px'"
  49. :size="searchSize"
  50. @timeReturned="timeReturned($event)"
  51. />
  52. </el-form-item>
  53. </el-form>
  54. </el-col>
  55. <el-col :span="12" style="text-align: right">
  56. <el-alert
  57. style="width: 230px"
  58. :closable="false"
  59. :title="type==='2'?'报表会在提交后开始执行!':'报表会在明天01:00开始生成'"
  60. type="warning"
  61. >
  62. </el-alert>
  63. </el-col>
  64. <el-col :span="12" style="text-align: right">
  65. <el-button v-if="!isDetail" type="primary" @click="submitForm"
  66. >保 存
  67. </el-button>
  68. <el-button @click="showModelThis = false">{{
  69. isDetail ? "关 闭" : "取 消"
  70. }}</el-button>
  71. </el-col>
  72. </el-row>
  73. </el-card>
  74. </el-dialog>
  75. </template>
  76. <script>
  77. import asyncRequest from "@/apis/service/reportQuery/financeReport/index.js";
  78. import resToken from "@/mixins/resToken";
  79. import PeriodDatePicker from "./components/PeriodDatePicker";
  80. export default {
  81. name: "financeReport",
  82. props: ["showModel", "sitem",'type'],
  83. mixins: [resToken],
  84. components: {
  85. PeriodDatePicker,
  86. },
  87. data() {
  88. const validateTime = (rule, value, callback) => {
  89. if (value === "") {
  90. callback(new Error("数据开始时间不能为空!"));
  91. } else {
  92. if (this.ruleForm.end === "") {
  93. callback(new Error("数据结束时间不能为空!"));
  94. } else {
  95. callback();
  96. }
  97. }
  98. };
  99. return {
  100. options: [],
  101. loading: false,
  102. title: "添加账号",
  103. showModelThis: this.showModel,
  104. ruleForm: {
  105. start: "",
  106. end: "",
  107. id: "",
  108. },
  109. rulesThis: this.rules,
  110. rules: {
  111. start: [
  112. {
  113. required: true,
  114. validator: validateTime,
  115. trigger: "change",
  116. },
  117. ],
  118. id: [
  119. {
  120. required: true,
  121. message: "请选择业务表!",
  122. trigger: "change",
  123. },
  124. ],
  125. },
  126. };
  127. },
  128. watch: {
  129. showModel: function (val) {
  130. this.showModelThis = val;
  131. if (val) {
  132. this.initForm();
  133. }
  134. },
  135. showModelThis(val) {
  136. if (!val) {
  137. this.$emit("cancel");
  138. }
  139. },
  140. },
  141. methods: {
  142. closeModel() {
  143. console.log("closeModel!!");
  144. },
  145. async initForm() {
  146. this.loading = true;
  147. this.options = [];
  148. this.rulesThis = this.rules;
  149. await this.resetForm();
  150. this.loading = false;
  151. },
  152. async timeReturned(e) {
  153. if (e.startTime !== "") {
  154. this.ruleForm.start = e.startTime;
  155. } else {
  156. this.ruleForm.start = "";
  157. }
  158. if (e.endTime !== "") {
  159. this.ruleForm.end = e.endTime;
  160. } else {
  161. this.ruleForm.end = "";
  162. }
  163. },
  164. async resetForm() {
  165. // 重置
  166. await this.$nextTick(() => {
  167. if (this.$refs.ruleForm) {
  168. this.$refs.ruleForm.resetFields();
  169. this.$refs.ruleForm.clearValidate();
  170. const { start, end, id, name } = this.sitem;
  171. // console.log(this.sitem);
  172. this.options = [
  173. {
  174. value: id,
  175. label: name,
  176. },
  177. ];
  178. this.ruleForm = {
  179. start: "",
  180. end: "",
  181. id: id || "",
  182. };
  183. console.log(this.ruleForm);
  184. }
  185. });
  186. },
  187. async submitForm() {
  188. await this.$refs.ruleForm.validate(async (valid) => {
  189. if (valid) {
  190. this.loading = true;
  191. const model = JSON.parse(JSON.stringify(this.ruleForm));
  192. let res = await asyncRequest.add(model);
  193. this.loading = false;
  194. if (res && res.code === 0) {
  195. this.$notify.success({
  196. title: "需求创建成功!",
  197. message: "",
  198. });
  199. this.showModelThis = false;
  200. // 刷新
  201. this.$emit("refresh");
  202. } else if (res && res.code >= 100 && res.code <= 104) {
  203. await this.logout();
  204. } else {
  205. this.$message.warning(res.message);
  206. }
  207. } else {
  208. console.log("error submit!!");
  209. return false;
  210. }
  211. });
  212. },
  213. },
  214. };
  215. </script>
  216. <style lang="scss" scoped>
  217. .account {
  218. }
  219. </style>