Ver código fonte

Merge remote-tracking branch 'origin/master'

yuhongqi 21 horas atrás
pai
commit
765f573788
1 arquivos alterados com 3 adições e 2 exclusões
  1. 3 2
      src/views/qw/QwWorkTaskNew/qwWorkTask.vue

+ 3 - 2
src/views/qw/QwWorkTaskNew/qwWorkTask.vue

@@ -21,8 +21,8 @@
 	      <el-option
 	        v-for="item in companyUserOptions"
 	        :key="item.value"
-	        :label="item.label"
-	        :value="item.value">
+	        :label="item.dictLabel"
+	        :value="item.dictValue">
 	      </el-option>
 	    </el-select>
 	  </el-form-item>
@@ -534,6 +534,7 @@ export default {
 	getCompanyUserListLikeName() {
 	  getCompanyUserListLikeName(this.companyUserOptionsParams).then(response => {
 	    this.companyUserOptions = [...this.companyUserOptions, ...response.data.list]
+		console.log(this.companyUserOptions);
 	    this.companyUserOptionsParams.hasNextPage = response.data.hasNextPage
 	    this.companyUserOptionsLoading = false;
 	  });