forked from zhurui/management
1 line
10 KiB
JSON
1 line
10 KiB
JSON
{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\applicationPart2\\projectInvoiceRecord\\projectinvoicerecord-add-or-update.vue?vue&type=script&lang=js&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\applicationPart2\\projectInvoiceRecord\\projectinvoicerecord-add-or-update.vue","mtime":1622443735834},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\nimport debounce from 'lodash/debounce'\nimport Tinymce from \"@/components/Tinymce\";\nexport default {\n props: [\"isedit\", \"currentProjectInfo\"],\n components:{Tinymce},\n data () {\n return {\n visible: false,\n isItemDisplay: false,\n\n dataForm: {\n id: '',\n projectId: '',\n projectName:'',\n reporter: '',\n studentNumber:'',\n amount: '',\n description: '',\n invoiceType: '',\n creator: '',\n createDate: ''\n }\n }\n },\n computed: {\n dataRule () {\n // return {\n // projectId: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // amount: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // description: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // invoiceType: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // creator: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // createDate: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ]\n // }\n }\n },\n methods: {\n init () {\n this.visible = true\n this.$nextTick(() => {\n this.$refs['dataForm'].resetFields()\n if (this.dataForm.id) {\n this.getInfo()\n }\n if (this.currentProjectInfo.projectAppId) {\n this.dataForm.projectId = this.currentProjectInfo.projectAppId\n this.dataForm.projectName = this.currentProjectInfo.projectAppName\n }\n })\n },\n // 获取信息\n getInfo () {\n this.$http.get(`/system/projectInvoiceRecord/projectinvoicerecord/${this.dataForm.id}`).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.dataForm = {\n ...this.dataForm,\n ...res.data\n }\n }).catch(() => {})\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n this.$refs['dataForm'].validate((valid) => {\n if (!valid) {\n return false\n }\n // console.log(this.currentProjectInfo);\n // console.log('console.log(this.currentProjectInfo);');\n\n if (this.currentProjectInfo.projectAppId) {\n this.dataForm.projectId = this.currentProjectInfo.projectAppId\n this.dataForm.projectName = this.currentProjectInfo.projectAppName\n }\n\n this.dataForm.reporter = this.$store.state.user.realName;\n this.dataForm.studentNumber = this.$store.state.user.username;\n\n this.$http[!this.dataForm.id ? 'post' : 'put']('/system/projectInvoiceRecord/projectinvoicerecord/', this.dataForm).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.$message({\n message: this.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: () => {\n this.visible = false\n this.$emit('refreshDataList')\n }\n })\n }).catch(() => {})\n })\n }, 1000, { 'leading': true, 'trailing': false })\n }\n}\n",{"version":3,"sources":["projectinvoicerecord-add-or-update.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"projectinvoicerecord-add-or-update.vue","sourceRoot":"src/views/modules/applicationPart2/projectInvoiceRecord","sourcesContent":["<template>\n <el-dialog width=\"800px\" :visible.sync=\"visible\" :title=\"isedit?(!dataForm.id ? $t('add') : $t('update')):'详情'\" :close-on-click-modal=\"false\" :close-on-press-escape=\"false\">\n <el-form :model=\"dataForm\" :disabled=\"!isedit\" :rules=\"dataRule\" ref=\"dataForm\" @keyup.enter.native=\"isedit?dataFormSubmitHandle():0\" :label-width=\"$i18n.locale === 'en-US' ? '120px' : '120px'\">\n <el-form-item label=\"项目名称\" prop=\"projectId\">\n <el-input v-model=\"dataForm.projectName\" placeholder=\"项目名称\"></el-input>\n </el-form-item>\n <el-form-item label=\"发票金额\" prop=\"amount\">\n <el-input v-model=\"dataForm.amount\" placeholder=\"发票金额\"></el-input>\n </el-form-item>\n <el-form-item label=\"使用说明\" prop=\"description\">\n<!-- <el-input v-model=\"dataForm.description\" placeholder=\"使用说明\"></el-input>-->\n <tinymce v-model=\"dataForm.description\" :height=\"200\" />\n </el-form-item>\n <el-form-item label=\"费用所属类目\" prop=\"invoiceType\">\n <el-select v-model=\"dataForm.invoiceType\" placeholder=\"费用所属类目\" style=\"display:block;\">\n <el-option label=\"吃饭\" value=\"0\"></el-option>\n <el-option label=\"打车\" value=\"1\"></el-option>\n <el-option label=\"电器\" value=\"2\"></el-option>\n <el-option label=\"其他\" value=\"3\"></el-option>\n </el-select>\n </el-form-item>\n\n </el-form>\n <template v-if=\"isedit\" slot=\"footer\">\n <el-button @click=\"visible = false\">{{ $t('cancel') }}</el-button>\n <el-button type=\"primary\" @click=\"dataFormSubmitHandle()\">{{ $t('confirm') }}</el-button>\n </template>\n </el-dialog>\n</template>\n\n<script>\nimport debounce from 'lodash/debounce'\nimport Tinymce from \"@/components/Tinymce\";\nexport default {\n props: [\"isedit\", \"currentProjectInfo\"],\n components:{Tinymce},\n data () {\n return {\n visible: false,\n isItemDisplay: false,\n\n dataForm: {\n id: '',\n projectId: '',\n projectName:'',\n reporter: '',\n studentNumber:'',\n amount: '',\n description: '',\n invoiceType: '',\n creator: '',\n createDate: ''\n }\n }\n },\n computed: {\n dataRule () {\n // return {\n // projectId: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // amount: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // description: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // invoiceType: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // creator: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ],\n // createDate: [\n // { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n // ]\n // }\n }\n },\n methods: {\n init () {\n this.visible = true\n this.$nextTick(() => {\n this.$refs['dataForm'].resetFields()\n if (this.dataForm.id) {\n this.getInfo()\n }\n if (this.currentProjectInfo.projectAppId) {\n this.dataForm.projectId = this.currentProjectInfo.projectAppId\n this.dataForm.projectName = this.currentProjectInfo.projectAppName\n }\n })\n },\n // 获取信息\n getInfo () {\n this.$http.get(`/system/projectInvoiceRecord/projectinvoicerecord/${this.dataForm.id}`).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.dataForm = {\n ...this.dataForm,\n ...res.data\n }\n }).catch(() => {})\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n this.$refs['dataForm'].validate((valid) => {\n if (!valid) {\n return false\n }\n // console.log(this.currentProjectInfo);\n // console.log('console.log(this.currentProjectInfo);');\n\n if (this.currentProjectInfo.projectAppId) {\n this.dataForm.projectId = this.currentProjectInfo.projectAppId\n this.dataForm.projectName = this.currentProjectInfo.projectAppName\n }\n\n this.dataForm.reporter = this.$store.state.user.realName;\n this.dataForm.studentNumber = this.$store.state.user.username;\n\n this.$http[!this.dataForm.id ? 'post' : 'put']('/system/projectInvoiceRecord/projectinvoicerecord/', this.dataForm).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.$message({\n message: this.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: () => {\n this.visible = false\n this.$emit('refreshDataList')\n }\n })\n }).catch(() => {})\n })\n }, 1000, { 'leading': true, 'trailing': false })\n }\n}\n</script>\n"]}]} |