1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/.cache/vue-loader/5ebdeeaf24e63d0aca9225c0d5a...

1 line
11 KiB
JSON
Raw Normal View History

2023-12-18 13:12:25 +08:00
{"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\\projectApplication\\lxsqb-add-or-update.vue?vue&type=script&lang=js&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\projectApplication\\lxsqb-add-or-update.vue","mtime":1619428776412},{"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//\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'\nexport default {\n props: [\"isedit\"],\n data () {\n return {\n visible: false,\n isItemDisplay: false,\n\n dataForm: {\n id: '',\n xmmc: '',\n sqr: '',\n sqdw: '',\n xmkssj: '',\n xmjssj: '',\n xmlx: '',\n xmms: '',\n xmzt: '',\n createDate: '',\n creator: ''\n }\n }\n },\n computed: {\n dataRule () {\n return {\n xmmc: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n sqr: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n sqdw: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n xmkssj: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n xmjssj: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n xmlx: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n xmms: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n xmzt: [\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 creator: [\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 })\n },\n // 获取信息\n getInfo () {\n this.$http.get(`/system/projectApplication/lxsqb/${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 // if (!this.isedit){\n // this.visible = false\n // return false\n // }\n this.$refs['dataForm'].validate((valid) => {\n if (!valid) {\n return false\n }\n this.$http[!this.dataForm.id ? 'post' : 'put']('/system/projectApplication/lxsqb/', 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