123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <template>
- <el-dialog
- v-loading="loading"
- :title="'修改表格需求'"
- :center="true"
- align="left"
- top="25vh"
- width="600px"
- :close-on-click-modal="false"
- :visible.sync="showModelThis"
- element-loading-text="拼命加载中"
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.8)"
- @close="closeModel"
- >
- <el-card style="margin: -20px 0 0 0">
- <el-row :gutter="10">
- <el-col :span="24">
- <el-form
- ref="ruleForm"
- :model="ruleForm"
- status-icon
- :rules="rulesThis"
- label-width="90px"
- class="demo-ruleForm"
- >
- <el-form-item label="业务表" prop="id">
- <el-select
- v-model="ruleForm.id"
- style="width: 100%"
- disabled
- placeholder="请选择业务表"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="数据时间" prop="start">
- <period-date-picker
- :start="ruleForm.start"
- :end="ruleForm.end"
- :type="type"
- :width="'199px'"
- :size="searchSize"
- @timeReturned="timeReturned($event)"
- />
- </el-form-item>
- </el-form>
- </el-col>
- <el-col :span="12" style="text-align: right">
- <el-alert
- style="width: 230px"
- :closable="false"
- :title="type==='2'?'报表会在提交后开始执行!':'报表会在明天01:00开始生成'"
- type="warning"
- >
- </el-alert>
- </el-col>
- <el-col :span="12" style="text-align: right">
- <el-button v-if="!isDetail" type="primary" @click="submitForm"
- >保 存
- </el-button>
- <el-button @click="showModelThis = false">{{
- isDetail ? "关 闭" : "取 消"
- }}</el-button>
- </el-col>
- </el-row>
- </el-card>
- </el-dialog>
- </template>
- <script>
- import asyncRequest from "@/apis/service/reportQuery/financeReport/index.js";
- import resToken from "@/mixins/resToken";
- import PeriodDatePicker from "./components/PeriodDatePicker";
- export default {
- name: "financeReport",
- props: ["showModel", "sitem",'type'],
- mixins: [resToken],
- components: {
- PeriodDatePicker,
- },
- data() {
- const validateTime = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("数据开始时间不能为空!"));
- } else {
- if (this.ruleForm.end === "") {
- callback(new Error("数据结束时间不能为空!"));
- } else {
- callback();
- }
- }
- };
- return {
- options: [],
- loading: false,
- title: "添加账号",
- showModelThis: this.showModel,
- ruleForm: {
- start: "",
- end: "",
- id: "",
- },
- rulesThis: this.rules,
- rules: {
- start: [
- {
- required: true,
- validator: validateTime,
- trigger: "change",
- },
- ],
- id: [
- {
- required: true,
- message: "请选择业务表!",
- trigger: "change",
- },
- ],
- },
- };
- },
- watch: {
- showModel: function (val) {
- this.showModelThis = val;
- if (val) {
- this.initForm();
- }
- },
- showModelThis(val) {
- if (!val) {
- this.$emit("cancel");
- }
- },
- },
- methods: {
- closeModel() {
- console.log("closeModel!!");
- },
- async initForm() {
- this.loading = true;
- this.options = [];
- this.rulesThis = this.rules;
- await this.resetForm();
- this.loading = false;
- },
- async timeReturned(e) {
- if (e.startTime !== "") {
- this.ruleForm.start = e.startTime;
- } else {
- this.ruleForm.start = "";
- }
- if (e.endTime !== "") {
- this.ruleForm.end = e.endTime;
- } else {
- this.ruleForm.end = "";
- }
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- const { start, end, id, name } = this.sitem;
- // console.log(this.sitem);
- this.options = [
- {
- value: id,
- label: name,
- },
- ];
- this.ruleForm = {
- start: "",
- end: "",
- id: id || "",
- };
- console.log(this.ruleForm);
- }
- });
- },
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- this.loading = true;
- const model = JSON.parse(JSON.stringify(this.ruleForm));
- let res = await asyncRequest.add(model);
- this.loading = false;
- if (res && res.code === 0) {
- this.$notify.success({
- title: "需求创建成功!",
- message: "",
- });
- this.showModelThis = false;
- // 刷新
- this.$emit("refresh");
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .account {
- }
- </style>
|