1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/.cache/babel-loader/19797e44762d61d235bda066402...

1 line
15 KiB
JSON

{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!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":1622560675699},{"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":["import \"core-js/modules/es7.object.get-own-property-descriptors\";\nimport \"core-js/modules/web.dom.iterable\";\nimport \"core-js/modules/es6.object.keys\";\nimport _defineProperty from \"C:\\\\Users\\\\27446\\\\Desktop\\\\up\\\\front\\\\dkha-web-sz-main\\\\node_modules\\\\@babel\\\\runtime-corejs2/helpers/esm/defineProperty\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\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//\n//\nimport debounce from 'lodash/debounce';\nimport Tinymce from \"@/components/Tinymce\";\nexport default {\n props: [\"isedit\", \"currentProjectInfo\"],\n components: {\n Tinymce: Tinymce\n },\n data: function data() {\n return {\n visible: false,\n isItemDisplay: false,\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: function dataRule() {// 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: function init() {\n var _this = this;\n\n this.visible = true;\n this.$nextTick(function () {\n _this.$refs['dataForm'].resetFields();\n\n _this.dataForm.createDate = '';\n _this.dataForm.creator = '';\n\n if (!_this.dataForm.id) {\n _this.$refs[\"tin\"].setContent(\"\");\n }\n\n if (_this.dataForm.id) {\n _this.getInfo(); //\n\n }\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: function getInfo() {\n var _this2 = this;\n\n this.$http.get(\"/system/projectInvoiceRecord/projectinvoicerecord/\".concat(this.dataForm.id)).then(function (_ref) {\n var res = _ref.data;\n\n if (res.code !== 0) {\n return _this2.$message.error(res.msg);\n }\n\n _this2.dataForm = _objectSpread({}, _this2.dataForm, {}, res.data);\n\n _this2.$refs[\"tin\"].setContent(_this2.dataForm.description);\n }).catch(function () {});\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n var _this3 = this;\n\n this.$refs['dataForm'].validate(function (valid) {\n if (!valid) {\n return false;\n } // console.log(this.currentProjectInfo);\n // console.log('console.log(this.currentProjectInfo);');\n\n\n if (_this3.currentProjectInfo.projectAppId) {\n _this3.dataForm.projectId = _this3.currentProjectInfo.projectAppId;\n _this3.dataForm.projectName = _this3.currentProjectInfo.projectAppName;\n }\n\n _this3.dataForm.reporter = _this3.$store.state.user.realName;\n _this3.dataForm.studentNumber = _this3.$store.state.user.username;\n\n _this3.$http[!_this3.dataForm.id ? 'post' : 'put']('/system/projectInvoiceRecord/projectinvoicerecord/', _this3.dataForm).then(function (_ref2) {\n var res = _ref2.data;\n\n if (res.code !== 0) {\n return _this3.$message.error(res.msg);\n }\n\n _this3.$message({\n message: _this3.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: function onClose() {\n _this3.visible = false;\n\n _this3.$emit('refreshDataList');\n }\n });\n }).catch(function () {});\n });\n }, 1000, {\n 'leading': true,\n 'trailing': false\n })\n }\n};",{"version":3,"sources":["projectinvoicerecord-add-or-update.vue"],"names":[],"mappings":"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","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=\"项目名称\" disabled></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 ref=\"tin\" 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 this.dataForm.createDate = '';\n this.dataForm.creator = '';\n if(!this.dataForm.id){\n this.$refs[\"tin\"].setContent(\"\");\n }\n\n if (this.dataForm.id) {\n this.getInfo()\n //\n }\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 this.$refs[\"tin\"].setContent(this.dataForm.description);\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"],"sourceRoot":"src/views/modules/applicationPart2/projectInvoiceRecord"}]}