rev:报表优化、新增区域人员权限

This commit is contained in:
2023-07-10 08:50:19 +08:00
parent 4a0fae0317
commit 8b1c3853c8
100 changed files with 1330 additions and 5278 deletions

View File

@@ -67,7 +67,27 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="回传区域">
<el-select
v-model="form.product_area"
clearable
multiple
size="mini"
class="filter-item"
style="width: 200px;"
@change="hand"
>
<el-option
v-for="item in dict.product_area"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="业务说明">
@@ -118,11 +138,12 @@ const defaultForm = {
interface_name: null,
remark: null,
is_back: null,
business_comment: null
business_comment: null,
product_area: null
}
export default {
name: 'Interfaceback',
dicts: ['INTERFACEBACK_TYPE', 'is_upload'],
dicts: ['INTERFACEBACK_TYPE', 'is_upload', 'product_area'],
components: { pagination, crudOperation, rrOperation, udOperation },
mixins: [presenter(), header(), form(defaultForm), crud()],
cruds() {