| 1 |
- {"remainingRequest":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\babel-loader\\lib\\index.js!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\src\\views\\modules\\message\\mail-template-config.vue?vue&type=script&lang=js","dependencies":[{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\src\\views\\modules\\message\\mail-template-config.vue","mtime":1581948666000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\babel.config.js","mtime":1581948662000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\babel-loader\\lib\\index.js","mtime":456789000000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["import debounce from 'lodash/debounce';\nexport default {\n data: function data() {\n return {\n visible: false,\n dataForm: {\n smtp: '',\n port: '',\n username: '',\n password: ''\n }\n };\n },\n computed: {\n dataRule: function dataRule() {\n return {\n smtp: [{\n required: true,\n message: this.$t('validate.required'),\n trigger: 'blur'\n }],\n port: [{\n required: true,\n message: this.$t('validate.required'),\n trigger: 'blur'\n }],\n username: [{\n required: true,\n message: this.$t('validate.required'),\n trigger: 'blur'\n }],\n password: [{\n required: true,\n message: this.$t('validate.required'),\n trigger: 'blur'\n }]\n };\n }\n },\n methods: {\n init: function init() {\n var _this = this;\n this.visible = true;\n this.$nextTick(function () {\n _this.$refs['dataForm'].resetFields();\n _this.getInfo();\n });\n },\n // 获取信息\n getInfo: function getInfo() {\n var _this2 = this;\n this.$http.get('/sys/mailtemplate/config').then(function (_ref) {\n var res = _ref.data;\n if (res.code !== 0) {\n return _this2.$message.error(res.msg);\n }\n _this2.dataForm = res.data;\n }).catch(function () {});\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n var _this3 = this;\n this.$refs['dataForm'].validate(function (valid) {\n if (!valid) {\n return false;\n }\n _this3.$http.post('/sys/mailtemplate/saveConfig', _this3.dataForm).then(function (_ref2) {\n var res = _ref2.data;\n if (res.code !== 0) {\n return _this3.$message.error(res.msg);\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 _this3.$emit('refreshDataList');\n }\n });\n }).catch(function () {});\n });\n }, 1000, {\n 'leading': true,\n 'trailing': false\n })\n }\n};",{"version":3,"names":["debounce","data","visible","dataForm","smtp","port","username","password","computed","dataRule","required","message","$t","trigger","methods","init","_this","$nextTick","$refs","resetFields","getInfo","_this2","$http","get","then","_ref","res","code","$message","error","msg","catch","dataFormSubmitHandle","_this3","validate","valid","post","_ref2","type","duration","onClose","$emit"],"sources":["src/views/modules/message/mail-template-config.vue"],"sourcesContent":["<template>\r\n <el-dialog :visible.sync=\"visible\" :title=\"$t('mail.config')\" :close-on-click-modal=\"false\" :close-on-press-escape=\"false\">\r\n <el-form :model=\"dataForm\" :rules=\"dataRule\" ref=\"dataForm\" @keyup.enter.native=\"dataFormSubmitHandle()\" label-width=\"120px\">\r\n <el-form-item prop=\"smtp\" :label=\"$t('mail.config')\">\r\n <el-input v-model=\"dataForm.smtp\" :placeholder=\"$t('mail.config')\"></el-input>\r\n </el-form-item>\r\n <el-form-item prop=\"port\" :label=\"$t('mail.port')\">\r\n <el-input v-model=\"dataForm.port\" :placeholder=\"$t('mail.port')\"></el-input>\r\n </el-form-item>\r\n <el-form-item prop=\"username\" :label=\"$t('mail.username')\">\r\n <el-input v-model=\"dataForm.username\" :placeholder=\"$t('mail.username')\"></el-input>\r\n </el-form-item>\r\n <el-form-item prop=\"password\" :label=\"$t('mail.password')\">\r\n <el-input v-model=\"dataForm.password\" :placeholder=\"$t('mail.password')\"></el-input>\r\n </el-form-item>\r\n </el-form>\r\n <template slot=\"footer\">\r\n <el-button @click=\"visible = false\">{{ $t('cancel') }}</el-button>\r\n <el-button type=\"primary\" @click=\"dataFormSubmitHandle()\">{{ $t('confirm') }}</el-button>\r\n </template>\r\n </el-dialog>\r\n</template>\r\n\r\n<script>\r\nimport debounce from 'lodash/debounce'\r\nexport default {\r\n data () {\r\n return {\r\n visible: false,\r\n dataForm: {\r\n smtp: '',\r\n port: '',\r\n username: '',\r\n password: ''\r\n }\r\n }\r\n },\r\n computed: {\r\n dataRule () {\r\n return {\r\n smtp: [\r\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\r\n ],\r\n port: [\r\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\r\n ],\r\n username: [\r\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\r\n ],\r\n password: [\r\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\r\n ]\r\n }\r\n }\r\n },\r\n methods: {\r\n init () {\r\n this.visible = true\r\n this.$nextTick(() => {\r\n this.$refs['dataForm'].resetFields()\r\n this.getInfo()\r\n })\r\n },\r\n // 获取信息\r\n getInfo () {\r\n this.$http.get('/sys/mailtemplate/config').then(({ data: res }) => {\r\n if (res.code !== 0) {\r\n return this.$message.error(res.msg)\r\n }\r\n this.dataForm = res.data\r\n }).catch(() => {})\r\n },\r\n // 表单提交\r\n dataFormSubmitHandle: debounce(function () {\r\n this.$refs['dataForm'].validate((valid) => {\r\n if (!valid) {\r\n return false\r\n }\r\n this.$http.post('/sys/mailtemplate/saveConfig', this.dataForm).then(({ data: res }) => {\r\n if (res.code !== 0) {\r\n return this.$message.error(res.msg)\r\n }\r\n this.$message({\r\n message: this.$t('prompt.success'),\r\n type: 'success',\r\n duration: 500,\r\n onClose: () => {\r\n this.visible = false\r\n this.$emit('refreshDataList')\r\n }\r\n })\r\n }).catch(() => {})\r\n })\r\n }, 1000, { 'leading': true, 'trailing': false })\r\n }\r\n}\r\n</script>\r\n"],"mappings":"AAwBA,OAAAA,QAAA;AACA;EACAC,IAAA,WAAAA,KAAA;IACA;MACAC,OAAA;MACAC,QAAA;QACAC,IAAA;QACAC,IAAA;QACAC,QAAA;QACAC,QAAA;MACA;IACA;EACA;EACAC,QAAA;IACAC,QAAA,WAAAA,SAAA;MACA;QACAL,IAAA,GACA;UAAAM,QAAA;UAAAC,OAAA,OAAAC,EAAA;UAAAC,OAAA;QAAA,EACA;QACAR,IAAA,GACA;UAAAK,QAAA;UAAAC,OAAA,OAAAC,EAAA;UAAAC,OAAA;QAAA,EACA;QACAP,QAAA,GACA;UAAAI,QAAA;UAAAC,OAAA,OAAAC,EAAA;UAAAC,OAAA;QAAA,EACA;QACAN,QAAA,GACA;UAAAG,QAAA;UAAAC,OAAA,OAAAC,EAAA;UAAAC,OAAA;QAAA;MAEA;IACA;EACA;EACAC,OAAA;IACAC,IAAA,WAAAA,KAAA;MAAA,IAAAC,KAAA;MACA,KAAAd,OAAA;MACA,KAAAe,SAAA;QACAD,KAAA,CAAAE,KAAA,aAAAC,WAAA;QACAH,KAAA,CAAAI,OAAA;MACA;IACA;IACA;IACAA,OAAA,WAAAA,QAAA;MAAA,IAAAC,MAAA;MACA,KAAAC,KAAA,CAAAC,GAAA,6BAAAC,IAAA,WAAAC,IAAA;QAAA,IAAAC,GAAA,GAAAD,IAAA,CAAAxB,IAAA;QACA,IAAAyB,GAAA,CAAAC,IAAA;UACA,OAAAN,MAAA,CAAAO,QAAA,CAAAC,KAAA,CAAAH,GAAA,CAAAI,GAAA;QACA;QACAT,MAAA,CAAAlB,QAAA,GAAAuB,GAAA,CAAAzB,IAAA;MACA,GAAA8B,KAAA;IACA;IACA;IACAC,oBAAA,EAAAhC,QAAA;MAAA,IAAAiC,MAAA;MACA,KAAAf,KAAA,aAAAgB,QAAA,WAAAC,KAAA;QACA,KAAAA,KAAA;UACA;QACA;QACAF,MAAA,CAAAX,KAAA,CAAAc,IAAA,iCAAAH,MAAA,CAAA9B,QAAA,EAAAqB,IAAA,WAAAa,KAAA;UAAA,IAAAX,GAAA,GAAAW,KAAA,CAAApC,IAAA;UACA,IAAAyB,GAAA,CAAAC,IAAA;YACA,OAAAM,MAAA,CAAAL,QAAA,CAAAC,KAAA,CAAAH,GAAA,CAAAI,GAAA;UACA;UACAG,MAAA,CAAAL,QAAA;YACAjB,OAAA,EAAAsB,MAAA,CAAArB,EAAA;YACA0B,IAAA;YACAC,QAAA;YACAC,OAAA,WAAAA,QAAA;cACAP,MAAA,CAAA/B,OAAA;cACA+B,MAAA,CAAAQ,KAAA;YACA;UACA;QACA,GAAAV,KAAA;MACA;IACA;MAAA;MAAA;IAAA;EACA;AACA","ignoreList":[]}]}
|