|
@@ -31,14 +31,20 @@
|
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
- <el-form-item label="审核状态">
|
|
|
|
|
- <el-select v-model="productpageRequest.isAudit">
|
|
|
|
|
- <el-option v-for="(item, index) in expenseAuditlist" :key="index" :label="item.label"
|
|
|
|
|
- :value="item.value"></el-option>
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
|
|
+ <el-form-item label="审核状态">
|
|
|
|
|
+ <el-select v-model="productpageRequest.isAudit">
|
|
|
|
|
+ <el-option v-for="(item, index) in expenseAuditlist" :key="index" :label="item.label"
|
|
|
|
|
+ :value="item.value"></el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="审核人">
|
|
|
|
|
+ <el-select v-model="productpageRequest.auditPerson">
|
|
|
|
|
+ <el-option v-for="(item, index) in auditPersonlist" :key="index" :label="item.name"
|
|
|
|
|
+ :value="item.id"></el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="费用描述">
|
|
<el-form-item label="费用描述">
|
|
|
- <el-select style="width: 300px;" v-model="productpageRequest.costsDescription" multiple filterable allow-create
|
|
|
|
|
|
|
+ <el-select v-model="productpageRequest.costsDescription" multiple filterable allow-create
|
|
|
default-first-option placeholder="费用描述">
|
|
default-first-option placeholder="费用描述">
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -313,7 +319,7 @@
|
|
|
<!-- 行为区域 -->
|
|
<!-- 行为区域 -->
|
|
|
<script>
|
|
<script>
|
|
|
import KtCommonTable from "@/views/Core/KtCommonTable.vue"; //表格组件
|
|
import KtCommonTable from "@/views/Core/KtCommonTable.vue"; //表格组件
|
|
|
-import ProductCostForm from "@/components/Form/ProductCostForm.vue"; //表单组件
|
|
|
|
|
|
|
+import ProductCostForm from "@/components/Form/ProductCostForm.vue";
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
components: {
|
|
components: {
|
|
@@ -364,6 +370,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
expenseAuditlist: [],
|
|
expenseAuditlist: [],
|
|
|
|
|
+ auditPersonlist: [],
|
|
|
costAudit: {},
|
|
costAudit: {},
|
|
|
dynamicFormArray: [],
|
|
dynamicFormArray: [],
|
|
|
//操作符字典
|
|
//操作符字典
|
|
@@ -600,6 +607,9 @@ export default {
|
|
|
this.$api.dict.findPage(this.expenseAudit).then((res) => {
|
|
this.$api.dict.findPage(this.expenseAudit).then((res) => {
|
|
|
this.expenseAuditlist = res.data.content;
|
|
this.expenseAuditlist = res.data.content;
|
|
|
});
|
|
});
|
|
|
|
|
+ this.$api.dict.auditPersonlist().then((res) => {
|
|
|
|
|
+ this.auditPersonlist = res.data
|
|
|
|
|
+ })
|
|
|
//获取保险公司列表
|
|
//获取保险公司列表
|
|
|
this.$api.cost.gainTopList({ type: 1 }).then((res) => {
|
|
this.$api.cost.gainTopList({ type: 1 }).then((res) => {
|
|
|
if (res.data) {
|
|
if (res.data) {
|