basicInfo.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <!--
  2. * @Description: create
  3. * @Version: 1.0
  4. * @Autor: XuTongZhang
  5. * @Date: 2020-07-28 17:19:02
  6. * @LastEditors: XuTongZhang
  7. * @LastEditTime: 2020-07-29 19:38:47
  8. -->
  9. <template>
  10. <div class="basicInfo">
  11. <el-card class="box-card">
  12. <el-form ref="form" :model="form" label-width="140px" :rules="rules" label-position="left">
  13. <el-form-item :label="$t('title.companyName')" prop="companyName">
  14. <el-input disabled v-model.trim="form.companyName" maxlength="64" show-word-limit></el-input>
  15. </el-form-item>
  16. <el-form-item :label="$t('title.companyAddress')">
  17. <el-input v-model.trim="form.companyAddress" maxlength="32" show-word-limit></el-input>
  18. </el-form-item>
  19. <el-form-item :label="$t('title.sendingMailbox')" prop="cmpMailAccount">
  20. <el-input v-model.trim="form.cmpMailAccount" maxlength="32" show-word-limit></el-input>
  21. </el-form-item>
  22. <el-form-item :label="$t('title.emailPassword')" prop="cmpMailPassword">
  23. <el-input v-model.trim="form.cmpMailPassword" show-password maxlength="32" show-word-limit></el-input>
  24. </el-form-item>
  25. <el-form-item :label="$t('title.mailboxType')">
  26. <el-radio-group v-model="form.cmpMailType">
  27. <el-radio :label="0">阿里</el-radio>
  28. <el-radio :label="1">网易</el-radio>
  29. <el-radio :label="2">QQ</el-radio>
  30. </el-radio-group>
  31. </el-form-item>
  32. <el-form-item :label="$t('title.companyProfile')">
  33. <editor-bar class="editor" v-model.trim="form.companyIntroduce"></editor-bar>
  34. <div style="color: #666">提示: 1000字以内为佳</div>
  35. <div style="color: #666">已输入:{{getText.length}}字</div>
  36. </el-form-item>
  37. <el-form-item v-if="show" class="button-grounp">
  38. <el-button type="primary" @click="determine">{{$t('button.confirmTheChanges')}}</el-button>
  39. </el-form-item>
  40. </el-form>
  41. </el-card>
  42. </div>
  43. </template>
  44. <script>
  45. import EditorBar from '../../components/wangEnduit/wangEnduit'
  46. export default {
  47. data () {
  48. return {
  49. form: {
  50. cmpMailType: 0
  51. },
  52. info: {},
  53. show: false,
  54. email: {},
  55. rules: {
  56. companyAddress: [{
  57. required: true,
  58. message: this.$t('message.pleaseEnter') + this.$t('title.companyName'),
  59. trigger: 'blur'
  60. }],
  61. cmpMailAccount: [{
  62. required: true,
  63. message: this.$t('message.pleaseEnter') + this.$t('title.sendingMailbox'),
  64. trigger: 'blur'
  65. }],
  66. cmpMailPassword: [{
  67. required: true,
  68. message: this.$t('message.pleaseEnter') + this.$t('title.emailPassword'),
  69. trigger: 'blur'
  70. }]
  71. }
  72. }
  73. },
  74. components: {
  75. EditorBar
  76. },
  77. created () {
  78. this.getDetails()
  79. this.queryEmail()
  80. },
  81. methods: {
  82. queryEmail () {
  83. this.$api
  84. .post('/companyAccount/queryCompanyAccountList', {
  85. reqdata: {}
  86. })
  87. .then((res) => {
  88. this.email = res.list.some(item => item.useType === 1) ? res.list.find(item => item.useType === 1) : {}
  89. this.form = Object.assign({}, this.form, res.list.some(item => item.useType === 1) ? res.list.find(item => item.useType === 1) : {})
  90. })
  91. },
  92. getDetails () {
  93. let url = '/companyInfo/queryCompanyInfo'
  94. let reqdata = {}
  95. this.$api
  96. .post(url, {
  97. reqdata
  98. })
  99. .then((res) => {
  100. this.info = res.object
  101. this.form = Object.assign({}, this.form, res.object)
  102. this.form.emailId = res.object.id
  103. })
  104. },
  105. determine () {
  106. console.log(this.form.cmpMailAccount)
  107. let a
  108. this.$refs['form'].validate((valid) => {
  109. a = valid
  110. })
  111. if (!a) return
  112. let url = '/companyInfo/updateCompanyInfo'
  113. let reqdata = this.form
  114. reqdata.id = this.info.id
  115. this.$api
  116. .post(url, {
  117. reqdata
  118. })
  119. .then((res) => {
  120. let reqdata = this.form
  121. reqdata.id = this.email.id
  122. reqdata.useType = 1
  123. let url = this.email.id ? '/companyAccount/updateCompanyAccount' : '/companyAccount/saveReceiverMail'
  124. this.$api
  125. .post(url, {
  126. reqdata
  127. })
  128. .then((res) => {
  129. this.$message({
  130. message: this.$t('message.successfullyModified') + '!',
  131. type: 'success'
  132. })
  133. this.getDetails()
  134. this.queryEmail()
  135. })
  136. })
  137. }
  138. },
  139. computed: {
  140. getText () {
  141. return this.form.companyIntroduce
  142. .replace(/<[^<>]+>/g, '')
  143. .replace(/&nbsp;/gi, '')
  144. }
  145. },
  146. watch: {
  147. 'form.companyAddress' (val) {
  148. this.show = this.info.companyAddress !== val
  149. console.log(this.info.companyAddress)
  150. },
  151. 'form.cmpMailAccount' (val) {
  152. console.log(this.show)
  153. this.show = this.email.cmpMailAccount !== val
  154. },
  155. 'form.cmpMailPassword' (val) {
  156. console.log(this.show)
  157. this.show = this.email.cmpMailPassword !== val
  158. },
  159. 'form.cmpMailType' (val) {
  160. console.log(this.show)
  161. this.show = this.email.cmpMailType !== val
  162. },
  163. 'form.companyIntroduce' (val) {
  164. console.log(this.show)
  165. this.show = this.info.companyIntroduce !== val
  166. },
  167. 'email.cmpMailAccount' (val) {
  168. this.show = this.form.cmpMailAccount !== val
  169. },
  170. 'email.cmpMailPassword' (val) {
  171. this.show = this.form.cmpMailPassword !== val
  172. },
  173. 'email.cmpMailType' (val) {
  174. this.show = this.form.cmpMailType !== val
  175. },
  176. 'info.companyAddress' (val) {
  177. this.show = this.form.companyAddress !== val
  178. },
  179. 'info.companyIntroduce' (val) {
  180. this.show = this.form.companyIntroduce !== val
  181. }
  182. }
  183. }
  184. </script>
  185. <style lang="scss" scoped>
  186. .basicInfo {
  187. display: flex;
  188. justify-content: center;
  189. align-content: center;
  190. }
  191. .box-card {
  192. width: 800rpx;
  193. padding: 18px 0;
  194. }
  195. .button-grounp {
  196. display: flex;
  197. justify-content: flex-end;
  198. }
  199. </style>