Jelajahi Sumber

修改邮箱更新带参

noob 4 tahun lalu
induk
melakukan
999f06e89d

+ 4 - 2
src/views/candidateManage/mailManage.vue

@@ -4,7 +4,7 @@
  * @Autor: XuTongZhang
  * @Date: 2020-08-03 09:38:03
  * @LastEditors  : yuanrunwei
- * @LastEditTime : 2021-03-31 14:51:39
+ * @LastEditTime : 2021-04-02 14:17:50
 -->
 <template>
 <div class="mailManage">
@@ -116,7 +116,9 @@ export default {
     let queryDate = () => {
       this.$api
         .post('/companyAccount/queryCompanyAccountList', {
-          reqdata: {}
+          reqdata: {
+            useType: 0
+          }
         })
         .then((res) => {
           let list = res.list.filter(item => item.useType !== 1)

+ 4 - 2
src/views/companyManage/basicInfo.vue

@@ -4,7 +4,7 @@
  * @Autor: XuTongZhang
  * @Date: 2020-07-28 17:19:02
  * @LastEditors  : yuanrunwei
- * @LastEditTime : 2021-04-02 14:05:29
+ * @LastEditTime : 2021-04-02 14:25:04
 -->
 <template>
 <div class="basicInfo">
@@ -83,7 +83,7 @@ export default {
       this.$api
         .post('/companyAccount/queryCompanyAccountList', {
           reqdata: {
-            userType: 0
+            useType: 1
           }
         })
         .then((res) => {
@@ -94,6 +94,7 @@ export default {
     getDetails () {
       let url = '/companyInfo/queryCompanyInfo'
       let reqdata = {}
+      reqdata.useType = 1
       this.$api
         .post(url, {
           reqdata
@@ -113,6 +114,7 @@ export default {
       let url = '/companyInfo/updateCompanyInfo'
       let reqdata = this.form
       reqdata.id = this.info.id
+      reqdata.useType = 1
       this.$api
         .post(url, {
           reqdata