LIPENGTAO1313 6 years ago
parent
commit
d90568b63b

+ 1 - 1
src/components/bench-views/ArticleTemplate.vue

79
      }
79
      }
80
    },
80
    },
81
    created() {
81
    created() {
82
      this.platId = Cookies.get('platId');
82
      this.platId = Cookies.get('plf_user');
83
      this.expertParameters = {
83
      this.expertParameters = {
84
        key: this.keyValue,
84
        key: this.keyValue,
85
        pageSize: 10,
85
        pageSize: 10,

+ 1 - 1
src/components/bench-views/BusTemplate.vue

49
      }
49
      }
50
    },
50
    },
51
    created() {
51
    created() {
52
      this.platId = Cookies.get('platId');
52
      this.platId = Cookies.get('plf_user');
53
      this.expertParameters = {
53
      this.expertParameters = {
54
        pid: this.platId,
54
        pid: this.platId,
55
        pageSize: 10,
55
        pageSize: 10,

+ 1 - 1
src/components/bench-views/abutmentService/ExpertAdvisor.vue

34
      };
34
      };
35
    },
35
    },
36
    created() {
36
    created() {
37
      const platId = Cookies.get('platId');
37
      const platId = Cookies.get('plf_user');
38
      this.expertParameters = {
38
      this.expertParameters = {
39
        pid: platId,
39
        pid: platId,
40
        pageSize: 10,
40
        pageSize: 10,

+ 1 - 1
src/components/bench-views/demandSearch/DemandTemplate.vue

122
      // }
122
      // }
123
     },
123
     },
124
     created() {
124
     created() {
125
      this.platId = Cookies.get('platId');
125
      this.platId = Cookies.get('plf_user');
126
      this.expertParameters = {
126
      this.expertParameters = {
127
        source: 'xttjpt',
127
        source: 'xttjpt',
128
        key: this.searchValue,
128
        key: this.searchValue,

+ 1 - 1
src/components/form-views/AccountSettings.vue

117
        this.$refs[formName].validate((valid) => {
117
        this.$refs[formName].validate((valid) => {
118
          if (valid) {
118
          if (valid) {
119
            this.$axios.post(httpUrl.hQuery.sign.modifypw, {
119
            this.$axios.post(httpUrl.hQuery.sign.modifypw, {
120
              id: Cookies.get('platId'),
120
              id: Cookies.get('plf_user'),
121
              npw: this.ruleForm2.pass,
121
              npw: this.ruleForm2.pass,
122
              opw: this.ruleForm2.loginPass
122
              opw: this.ruleForm2.loginPass
123
            }).then((res) => {
123
            }).then((res) => {

+ 1 - 1
src/components/form-views/BindAccount.vue

52
    data() {
52
    data() {
53
      return {
53
      return {
54
        mail: Cookies.get('plf_email'),
54
        mail: Cookies.get('plf_email'),
55
        platId: Cookies.get('platId'),
55
        platId: Cookies.get('plf_user'),
56
        dialogFormVisible: false,
56
        dialogFormVisible: false,
57
        emailName: '',
57
        emailName: '',
58
        titler: '',
58
        titler: '',