Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcjg-web
Showing
2 changed files
with
5 additions
and
5 deletions
... | @@ -8,7 +8,7 @@ | ... | @@ -8,7 +8,7 @@ |
8 | <el-col :span="6"> | 8 | <el-col :span="6"> |
9 | <el-form-item label="行政区" prop="pcode"> | 9 | <el-form-item label="行政区" prop="pcode"> |
10 | <el-select v-model="form.pcode" class="width100" clearable placeholder="行政区"> | 10 | <el-select v-model="form.pcode" class="width100" clearable placeholder="行政区"> |
11 | <el-option v-for="item in xzqOptions" :key="item.value" :label="item.label" :value="item.value"> | 11 | <el-option v-for="item in dicData['A20']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE"> |
12 | </el-option> | 12 | </el-option> |
13 | </el-select> | 13 | </el-select> |
14 | </el-form-item> | 14 | </el-form-item> | ... | ... |
... | @@ -6,12 +6,12 @@ | ... | @@ -6,12 +6,12 @@ |
6 | <el-row :gutter="20"> | 6 | <el-row :gutter="20"> |
7 | <el-col :span="6"> | 7 | <el-col :span="6"> |
8 | <el-form-item label="字典类型编码"> | 8 | <el-form-item label="字典类型编码"> |
9 | <el-input v-model="ruleForm.DCODE" @clear="queryClick" clearable placeholder="字典类型编码"></el-input> | 9 | <el-input v-model="ruleForm.dcode" @clear="queryClick" clearable placeholder="字典类型编码"></el-input> |
10 | </el-form-item> | 10 | </el-form-item> |
11 | </el-col> | 11 | </el-col> |
12 | <el-col :span="6"> | 12 | <el-col :span="6"> |
13 | <el-form-item label="字典类型名称"> | 13 | <el-form-item label="字典类型名称"> |
14 | <el-input v-model="ruleForm.DNAME" @clear="queryClick" clearable placeholder="字典类型名称"></el-input> | 14 | <el-input v-model="ruleForm.dname" @clear="queryClick" clearable placeholder="字典类型名称"></el-input> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="12" class="btnColRight"> | 17 | <el-col :span="12" class="btnColRight"> |
... | @@ -57,8 +57,8 @@ export default { | ... | @@ -57,8 +57,8 @@ export default { |
57 | rowData: {} | 57 | rowData: {} |
58 | }, | 58 | }, |
59 | ruleForm: { | 59 | ruleForm: { |
60 | DCODE: '', | 60 | dcode: '', |
61 | DNAME: '' | 61 | dname: '' |
62 | }, | 62 | }, |
63 | tableData: { | 63 | tableData: { |
64 | total: 0, | 64 | total: 0, | ... | ... |
-
Please register or sign in to post a comment