Browse Source

citypicker expert/org

lyn7568 6 years ago
parent
commit
2e9ddedcf4

+ 18 - 42
src/components/CityPicker/index.vue

@ -27,19 +27,6 @@
27 27
          </el-option>
28 28
        </el-select>
29 29
      </el-col>
30
      <!-- <el-col :span="8">
31
        <el-select
32
          v-model="qu"
33
          @change="choseBlock"
34
          placeholder="区(县)">
35
          <el-option
36
            v-for="item in areaArr"
37
            :key="item.id"
38
            :label="item.value"
39
            :value="item.id">
40
          </el-option>
41
        </el-select>
42
      </el-col> -->
43 30
    </el-row>
44 31
  </div>
45 32
</template>
@ -53,11 +40,7 @@ export default {
53 40
      provinceArr: [],
54 41
      cityArr: [],
55 42
      sheng: '',
56
      shi: '',
57
      // qu: '',
58
      // areaArr: [],
59
      city: '',
60
      block: ''
43
      shi: ''
61 44
    }
62 45
  },
63 46
  watch: {
@ -85,15 +68,18 @@ export default {
85 68
              that.provinceArr[item.code] = { id: item.code, value: item.caption, children: {} }
86 69
            } else if (item.code.match(/00$/)) {
87 70
              var p = that.provinceArr[item.code.slice(0, 2) + '0000']
88
              p.children[item.code] = { id: item.code, value: item.caption, children: {} }
89
              if (!p.defaultChild) {
90
                p.defaultChild = p.children[item.code]
91
              }
92
            } else {
93
              var pp = that.provinceArr[item.code.slice(0, 2) + '0000'].children[item.code.slice(0, 4) + '00']
94
              pp.children[item.code] = { id: item.code, value: item.caption }
95
              if (!pp.defaultChild) {
96
                pp.defaultChild = pp.children[item.code]
71
              if (p) {
72
                p.children[item.code] = { id: item.code, value: item.caption }
73
                if (!p.defaultChild) {
74
                  p.defaultChild = p.children[item.code]
75
                }
76
              } else {
77
                that.provinceArr[item.code.slice(0, 2) + '0000'] = { id: item.code.slice(0, 2) + '0000', value: item.caption, children: {}}
78
                var pr = that.provinceArr[item.code.slice(0, 2) + '0000']
79
                pr.children[item.code] = { id: item.code, value: item.caption }
80
                if (!pr.defaultChild) {
81
                  pr.defaultChild = pr.children[item.code]
82
                }
97 83
              }
98 84
            }
99 85
          })
@ -106,8 +92,6 @@ export default {
106 92
      var p = this.provinceArr[e]
107 93
      this.cityArr = p.children
108 94
      this.shi = p.defaultChild.value
109
      // this.areaArr = p.defaultChild.children
110
      // this.qu = p.defaultChild.defaultChild.value
111 95
      this.E = p.defaultChild.id
112 96
      this.sheng = p.value
113 97
      this.$emit('paren', this.E)
@ -116,31 +100,23 @@ export default {
116 100
    choseCity: function(e) {
117 101
      var p = this.provinceArr[e.slice(0, 2) + '0000'].children[e]
118 102
      this.shi = p.value
119
      // this.areaArr = p.children
120
      // this.qu = p.defaultChild.value
121 103
      this.E = p.id
122 104
      this.$emit('paren', this.E)
123 105
      this.$emit('parenStr', this.shi)
124 106
    },
125
    // choseBlock: function(e) {
126
    //   this.qu = this.provinceArr[e.slice(0, 2) + '0000'].children[e.slice(0, 4) + '00'].children[e].value
127
    //   this.E = e
128
    //   this.$emit('paren', this.E)
129
    // },
130 107
    initpsq: function() {
131 108
      if (!this.addrCode) {
132 109
        this.sheng = ''
133 110
        this.shi = ''
134
        // this.qu = ''
135 111
        return
136 112
      }
137 113
      const s = this.addrCode.substring(0, 2) + '0000'
138 114
      const si = this.addrCode.substring(0, 4) + '00'
139
      // const x = this.addrCode
140
      var p = this.provinceArr[s]
141
      this.sheng = p.value
142
      this.shi = p.children[si].value
143
      // this.qu = p.children[si].children[x].value
115
      if (this.provinceArr) {
116
        var p = this.provinceArr[s]
117
        this.sheng = p.value
118
        this.shi = p.children[si].value
119
      }
144 120
    }
145 121
  }
146 122
}

+ 1 - 1
src/components/uploadFile/index.vue

@ -82,7 +82,7 @@
82 82
        if (!isLt2M) {
83 83
          this.$message.error('图片大小不能超过2MB,请重新上传')
84 84
        }
85
        return isJPG && isLt2M
85
        return (isJPG || isPNG) && isLt2M
86 86
      }
87 87
    }
88 88
  }

+ 3 - 1
src/pages/center/views/myBusiness/publishProduct.vue

@ -14,7 +14,7 @@
14 14
        </el-col>
15 15
        <el-col :span="24">
16 16
            <el-form-item label="关键词">
17
            <dynamicTags :dyStr="formObj.keyword" :tagInfo="tagKeyword" v-on:turnTags="turnKeywordTags"></dynamicTags>
17
            <dynamicTags :dyStr="keywordObj" :tagInfo="tagKeyword" @turnTags="turnKeywordTags"></dynamicTags>
18 18
            </el-form-item>
19 19
        </el-col>
20 20
        <el-col :span="24">
@ -75,6 +75,7 @@
75 75
          limitCount: 10,
76 76
          tagsNum: 5
77 77
        },
78
        keywordObj: [],
78 79
        formLoading: true,
79 80
        formObj: {
80 81
          name: '',
@ -178,6 +179,7 @@
178 179
                objKey.push(item.keyword)
179 180
              })
180 181
            }
182
            that.keywordObj = objKey
181 183
            that.formObj.keyword = objKey
182 184
          }
183 185
        })

+ 2 - 2
src/pages/index/views/Dashboard/index.vue

@ -14,7 +14,7 @@
14 14
          想要招聘人才?
15 15
        </h3>
16 16
        <p class="info-tip">
17
          将您的需求发布到科袖网,<br>
17
          直接发布您的需求,<br>
18 18
          我们为您对接专家和各类专业机构。
19 19
        </p>
20 20
        <el-button type="primary" @click="publishDemand" style="margin-top:30px">发布需求</el-button>
@ -64,7 +64,7 @@
64 64
      </div>
65 65
      <div class="wrapper-right content-wrapper about-us">
66 66
        <div class="content-title">
67
          <span>关于我们</span>
67
          <span>关于平台</span>
68 68
          <router-link class="content-more" to="about">更多</router-link>
69 69
        </div>
70 70
        <div class="content">{{aboutUs}}</div>

+ 78 - 6
src/pages/index/views/ViewExpertPool/expItem.vue

@ -1,6 +1,15 @@
1 1
<template>
2
  <div class="block-container" v-if="userData && userData.length">
3
    <eItem v-for="item in userData" :key="item.index" :itemSinger="item"></eItem>
2
  <div class="block-container" v-if="platSixExps && platSixExps.length">
3
    <template v-if="num">
4
      <eItem v-for="item in platSixExps" :key="item.index" :itemSinger="item"></eItem>
5
    </template>
6
    <template v-else>
7
      <template v-show="!ifDefault" v-if="pageUserData.length">
8
        <eItem v-for="item in pageUserData" :key="item.index" :itemSinger="item"></eItem>
9
        <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
10
      </template>
11
      <defaultPage v-show="ifDefault"></defaultPage>
12
    </template>
4 13
  </div>
5 14
</template>
6 15
@ -16,14 +25,38 @@
16 25
    },
17 26
    data() {
18 27
      return {
19
        userData: []
28
        userData: [],
29
        loadingModalShow: true,
30
        loadingComplete: false,
31
        isFormSearch: false,
32
        isLoading: false,
33
        ifDefault: false,
34
        pageSize: 30,
35
        pageNo: 1
20 36
      };
21 37
    },
38
    computed: {
39
      platSixExps() {
40
        var pt = this.userData
41
        var str = []
42
        if (this.num && pt.length > this.num) {
43
          for (let i = 0; i < this.num; ++i) {
44
            str[i] = pt[i]
45
          }
46
        } else {
47
          str = pt
48
        }
49
        return str
50
      },
51
      pageUserData() {
52
        return this.userData.slice(0, this.pageNo * this.pageSize)
53
      }
54
    },
22 55
    components: {
23 56
      eItem
24 57
    },
25 58
    created() {
26
       this.buttedProfessors();
59
      this.buttedProfessors();
27 60
    },
28 61
    methods: {
29 62
      buttedProfessors() {
@ -34,7 +67,7 @@
34 67
            var arr = []
35 68
            var hdata = { num: 1, data: $data }
36 69
            if ($data.length > 0) {
37
              for (let i in $data) {
70
              for (let i = 0; i < $data.length; ++i) {
38 71
                hdata.num++
39 72
                arr[i] = $data[i].id;
40 73
                hdata.num--
@ -57,18 +90,57 @@
57 90
                      }
58 91
                      setTimeout(() => {
59 92
                        that.$parent.loadingState = false
93
                        for (let j = 0; j < obj.length; ++j) {
94
                          for (let n = 0; n < $data.length; ++n) {
95
                            if (obj[j].id === $data[n].id) {
96
                              if ($data[n].level) {
97
                                obj[j].level = $data[n].level
98
                              } else {
99
                                obj[j].level = 99999
100
                              }
101
                            }
102
                          }
103
                        }
104
                        obj.sort(function(a, b) {
105
                          return a.level > b.level ? 1 : (a.level === b.level ? 0 : -1)
106
                        })
107
                        if (obj.length <= that.pageSize) {
108
                          that.loadingModalShow = false
109
                          that.loadingComplete = true
110
                          that.isFormSearch = true
111
                          that.isLoading = false
112
                          that.ifDefault = false
113
                        }
60 114
                        that.userData = obj
61
                      }, 1000);
115
                      }, 1000)
62 116
                    }
63 117
                  }
64 118
                })
65 119
              }
66 120
            } else {
121
              that.ifDefault = true
67 122
              that.$parent.loadingState = false
68 123
            }
69 124
          }
70 125
        })
126
      },
127
      searchLower() {
128
        if (this.loadingModalShow && !this.isLoading) {
129
          this.pageNo++
130
        }
131
        if (this.pageUserData.length <= this.pageNo * this.pageSize) {
132
          this.loadingModalShow = false
133
          this.loadingComplete = true
134
          this.isFormSearch = true
135
          this.isLoading = false
136
          this.ifDefault = false
137
        }
71 138
      }
72 139
    }
73 140
  };
74 141
</script>
142
<style scoped>
143
  .loadSty{
144
    width: 100%;
145
  }
146
</style>

+ 75 - 3
src/pages/index/views/ViewOrganization/orgItem.vue

@ -1,6 +1,15 @@
1 1
<template>
2
  <div class="block-container" v-if="orgData && orgData.length">
3
    <oItem v-for="item in orgData" :key="item.index" :itemSinger="item"></oItem>
2
  <div class="block-container" v-if="platThreeOrgs && platThreeOrgs.length">
3
    <template v-if="num">
4
      <oItem v-for="item in platThreeOrgs" :key="item.index" :itemSinger="item"></oItem>
5
    </template>
6
    <template v-else>
7
      <template v-show="!ifDefault" v-if="pageOrgData.length">
8
        <oItem v-for="item in pageOrgData" :key="item.index" :itemSinger="item"></oItem>
9
        <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
10
      </template>
11
      <defaultPage v-show="ifDefault"></defaultPage>
12
    </template>
4 13
  </div>
5 14
</template>
6 15
@ -16,9 +25,33 @@
16 25
    },
17 26
    data() {
18 27
      return {
19
        orgData: []
28
        orgData: [],
29
        loadingModalShow: true,
30
        loadingComplete: false,
31
        isFormSearch: false,
32
        isLoading: false,
33
        ifDefault: false,
34
        pageSize: 30,
35
        pageNo: 1
20 36
      };
21 37
    },
38
    computed: {
39
      platThreeOrgs() {
40
        var pt = this.orgData
41
        var str = []
42
        if (this.num && pt.length > this.num) {
43
          for (let i = 0; i < this.num; ++i) {
44
            str[i] = pt[i]
45
          }
46
        } else {
47
          str = pt
48
        }
49
        return str
50
      },
51
      pageOrgData() {
52
        return this.orgData.slice(0, this.pageNo * this.pageSize)
53
      }
54
    },
22 55
    components: {
23 56
      oItem
24 57
    },
@ -58,6 +91,27 @@
58 91
                      }
59 92
                      setTimeout(() => {
60 93
                        that.$parent.loadingState = false
94
                        for (let j = 0; j < obj.length; ++j) {
95
                          for (let n = 0; n < $data.length; ++n) {
96
                            if (obj[j].id === $data[n].id) {
97
                              if ($data[n].level) {
98
                                obj[j].level = $data[n].level
99
                              } else {
100
                                obj[j].level = 99999
101
                              }
102
                            }
103
                          }
104
                        }
105
                        obj.sort(function(a, b) {
106
                          return a.level > b.level ? 1 : (a.level === b.level ? 0 : -1)
107
                        })
108
                        if (obj.length <= that.pageSize) {
109
                          that.loadingModalShow = false
110
                          that.loadingComplete = true
111
                          that.isFormSearch = true
112
                          that.isLoading = false
113
                          that.ifDefault = false
114
                        }
61 115
                        that.orgData = obj
62 116
                      }, 1000);
63 117
                    }
@ -65,11 +119,29 @@
65 119
                })
66 120
              }
67 121
            } else {
122
              that.ifDefault = true
68 123
              that.$parent.loadingState = false
69 124
            }
70 125
          }
71 126
        })
127
      },
128
      searchLower() {
129
        if (this.loadingModalShow && !this.isLoading) {
130
          this.pageNo++
131
        }
132
        if (this.pageOrgData.length <= this.pageNo * this.pageSize) {
133
          this.loadingModalShow = false
134
          this.loadingComplete = true
135
          this.isFormSearch = true
136
          this.isLoading = false
137
          this.ifDefault = false
138
        }
72 139
      }
73 140
    }
74 141
  }
75 142
</script>
143
<style scoped>
144
  .loadSty{
145
    width: 100%;
146
  }
147
</style>

+ 9 - 5
src/pages/serve/show.vue

@ -139,21 +139,25 @@
139 139
            if ($info.keywords) {
140 140
              $info.keywords = strToArr($info.keywords);
141 141
            }
142
            var arr = []
142 143
            if ($info.images) {
143
              var arr = strToArr($info.images)
144
              arr = strToArr($info.images)
144 145
              for (let i = 0; i < arr.length; ++i) {
145 146
                arr[i] = ImageUrl('ware' + arr[i])
146 147
              }
147 148
              $info.img = arr
149
            } else {
150
              arr[0] = defaultSet.img.service
151
              $info.img = arr
148 152
            }
149 153
            if ($info.category) {
150 154
              this.ownerB = {
151 155
                id: $info.owner,
152 156
                type: $info.category
153
              };
157
              }
154 158
              this.getHotserves($info.category, $info.owner)
155 159
            }
156
            this.serveInfo = $info;
160
            this.serveInfo = $info
157 161
          };
158 162
        });
159 163
      },
@ -175,7 +179,7 @@
175 179
                } else {
176 180
                  $data[i].img = defaultSet.img.service
177 181
                }
178
                if (that.resourceId !== $data[i].resourceId) {
182
                if (that.serveId !== $data[i].id) {
179 183
                  hotRes.push($data[i])
180 184
                }
181 185
              }
@ -243,5 +247,5 @@
243 247
        })
244 248
      }
245 249
    }
246
  };
250
  }
247 251
</script>

+ 1 - 0
src/styles/browse.scss

@ -20,6 +20,7 @@
20 20
        .rel-detail{
21 21
          font-size:15px;
22 22
          line-height:26px;
23
          width:100%;
23 24
          .rel-item{
24 25
            margin-bottom:15px;
25 26
            &:last-child{

+ 1 - 0
src/styles/listitem.scss

@ -23,6 +23,7 @@
23 23
    .show-info{
24 24
      flex:1 0 80px;
25 25
      padding-left:15px;
26
      width: 118px;
26 27
      .info-tit{
27 28
        font-size:18px;
28 29
        line-height:28px;