forked from zhurui/management
1 line
11 KiB
JSON
1 line
11 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":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":["//\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 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
|