|
@@ -111,6 +111,23 @@
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="增加类型" prop="addType">
|
|
|
|
|
+ <el-select
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="formDataList.addType"
|
|
|
|
|
+ filterable
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="(s, i) in addTypeList"
|
|
|
|
|
+ :key="i"
|
|
|
|
|
+ :label="s.label"
|
|
|
|
|
+ :value="s.value"
|
|
|
|
|
+ ></el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -287,6 +304,23 @@
|
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="增加类型" prop="addType">
|
|
|
|
|
+ <el-select
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="formDataAdd.addType"
|
|
|
|
|
+ filterable
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="(s, i) in addTypeList"
|
|
|
|
|
+ :key="i"
|
|
|
|
|
+ :label="s.label"
|
|
|
|
|
+ :value="s.value"
|
|
|
|
|
+ ></el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -918,12 +952,18 @@ export default {
|
|
|
isCheckBox: true,
|
|
isCheckBox: true,
|
|
|
isPaginationShow: true,
|
|
isPaginationShow: true,
|
|
|
},
|
|
},
|
|
|
|
|
+ addTypeList: [],
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
created() {
|
|
created() {
|
|
|
this.$api.dept.findDeptTree("9", "").then((res) => {
|
|
this.$api.dept.findDeptTree("9", "").then((res) => {
|
|
|
this.treedata = res.data;
|
|
this.treedata = res.data;
|
|
|
});
|
|
});
|
|
|
|
|
+ this.$api.dict.findByLableName("add_type").then((res) => {
|
|
|
|
|
+ if (res.code === 200) {
|
|
|
|
|
+ this.addTypeList = res.data;
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
this.getDicType("productsType"); //险种类型
|
|
this.getDicType("productsType"); //险种类型
|
|
|
this.getDicType("agreementType"); //险种类型
|
|
this.getDicType("agreementType"); //险种类型
|
|
|
this.areaqueryList(1, 99, "provinceId");
|
|
this.areaqueryList(1, 99, "provinceId");
|