|
|
|
@ -81,14 +81,16 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="right-search" v-if="!showSearch">
|
|
|
|
|
<div class="left-search" v-if="!showSearch">
|
|
|
|
|
<!-- 关键字搜索 按需配置 -->
|
|
|
|
|
<el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini" label-width="100px">
|
|
|
|
|
<el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini"
|
|
|
|
|
label-width="100px">
|
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
|
<template v-for="(item, index) in queryList">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true) && item.columnName == 'keywords'"
|
|
|
|
|
class="query-form-item"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-form-item
|
|
|
|
|
v-if="item.columnType == 'input' && executeEval(row,item.expression,true) && item.columnName == 'keywords'"
|
|
|
|
|
class="query-form-item"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -129,8 +131,8 @@
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
<!--<el-tabs type="border-card" style="margin-top: 55px">-->
|
|
|
|
|
<!-- <el-tab-pane label="原始单据">-->
|
|
|
|
|
<el-tabs type="border-card" style="margin-top: 55px">
|
|
|
|
|
<el-tab-pane label="原始单据">
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%;" border highlight-current-row
|
|
|
|
|
@row-click="(row) => executeFuc(row,'0',tableObj.handleChangeFuc)" ref="multipleTable"
|
|
|
|
@ -239,123 +241,117 @@
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
@pagination="handleCurrentChange"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="异常单据">
|
|
|
|
|
<el-table v-loading="loading" :data="errList" style="width: 100%;" border highlight-current-row
|
|
|
|
|
@row-click="(row) => executeFuc(row,'0',tableObj1.handleChangeFuc)" ref="multipleTable"
|
|
|
|
|
:default-sort="defaultSort"
|
|
|
|
|
:row-style="{ height: '32px' }"
|
|
|
|
|
@sort-change="handleSortChange">
|
|
|
|
|
<template v-for="(item, index) in tableHeader1">
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'id' && executeEval(row,item.expression,true)"
|
|
|
|
|
type="index" :label="item.columnDesc"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'selection'"
|
|
|
|
|
type="selection"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:selectable="(row,number) => executeFuc(row,'3',item.clickFuc)"
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--</el-tab-pane>-->
|
|
|
|
|
|
|
|
|
|
<!--<el-tab-pane label="异常单据">-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-table v-loading="loading" :data="errList" style="width: 100%;" border highlight-current-row-->
|
|
|
|
|
<!-- @row-click="(row) => executeFuc(row,'0',tableObj1.handleChangeFuc)" ref="multipleTable"-->
|
|
|
|
|
<!-- :default-sort="defaultSort"-->
|
|
|
|
|
<!-- :row-style="{ height: '32px' }"-->
|
|
|
|
|
<!-- @sort-change="handleSortChange">-->
|
|
|
|
|
<!-- <template v-for="(item, index) in tableHeader1">-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- v-if="item.columnType == 'id' && executeEval(row,item.expression,true)"-->
|
|
|
|
|
<!-- type="index" :label="item.columnDesc"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- v-if="item.columnType == 'selection'"-->
|
|
|
|
|
<!-- type="selection"-->
|
|
|
|
|
<!-- :width="item.width"-->
|
|
|
|
|
<!-- :selectable="(row,number) => executeFuc(row,'3',item.clickFuc)"-->
|
|
|
|
|
<!-- ></el-table-column>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- v-if="item.columnType == 'radio' && executeEval(row,item.expression,true)"-->
|
|
|
|
|
<!-- :prop="item.columnName"-->
|
|
|
|
|
<!-- :label="item.columnDesc"-->
|
|
|
|
|
<!-- :sortable="item.sort"-->
|
|
|
|
|
<!-- :width="item.width"-->
|
|
|
|
|
<!-- :show-overflow-tooltip="item.tooltip"-->
|
|
|
|
|
<!-- :key="item.columnName"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-radio :label="scope.row.id" v-model="radioCheck"><span></span></el-radio>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- v-if="item.columnType == 'laber' && executeEval(row,item.expression,true)"-->
|
|
|
|
|
<!-- :prop="item.columnName"-->
|
|
|
|
|
<!-- :label="item.columnDesc"-->
|
|
|
|
|
<!-- :sortable="item.sort"-->
|
|
|
|
|
<!-- :width="item.width"-->
|
|
|
|
|
<!-- :show-overflow-tooltip="item.tooltip"-->
|
|
|
|
|
<!-- :key="item.columnName"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{-->
|
|
|
|
|
<!-- item.lableRuleObj[scope.row[item.columnName]]-->
|
|
|
|
|
<!-- }}</span>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- v-if="item.columnType == 'eltag' && executeEval(row,item.expression,true)"-->
|
|
|
|
|
<!-- :prop="item.columnName"-->
|
|
|
|
|
<!-- :label="item.columnDesc"-->
|
|
|
|
|
<!-- :sortable="item.sort"-->
|
|
|
|
|
<!-- :width="item.width"-->
|
|
|
|
|
<!-- :show-overflow-tooltip="item.tooltip"-->
|
|
|
|
|
<!-- :key="item.columnName"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-tag-->
|
|
|
|
|
<!-- :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">-->
|
|
|
|
|
<!-- <span>{{-->
|
|
|
|
|
<!-- item.lableRuleObj ? item.lableRuleObj[scope.row[item.columnName]] : scope.row[item.columnName]-->
|
|
|
|
|
<!-- }}</span>-->
|
|
|
|
|
<!-- </el-tag>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- v-if="item.columnType == 'button' && executeEval(row,item.expression,true)"-->
|
|
|
|
|
<!-- :prop="item.columnName"-->
|
|
|
|
|
<!-- :label="item.columnDesc"-->
|
|
|
|
|
<!-- :width="item.width"-->
|
|
|
|
|
<!-- :key="item.columnName"-->
|
|
|
|
|
<!-- fixed="right"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-button v-for="(buttonItem, buttonIndex) in item.buttonRulObj"-->
|
|
|
|
|
<!-- :type="buttonItem.type"-->
|
|
|
|
|
<!-- :size="buttonItem.size"-->
|
|
|
|
|
<!-- :style="buttonItem.style"-->
|
|
|
|
|
<!-- :key="buttonItem"-->
|
|
|
|
|
<!-- v-if="executeEval(scope.row,buttonItem.hasPermi,true)"-->
|
|
|
|
|
<!-- :disabled="executeEval(scope.row,buttonItem.disabledFuc,false)"-->
|
|
|
|
|
<!-- @click.native.stop="executeFuc(scope.row,'1',buttonItem.clickFuc)"-->
|
|
|
|
|
<!-- >{{ buttonItem.name }}-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- v-if="item.columnType == 'text' && executeEval(row,item.expression,true)"-->
|
|
|
|
|
<!-- :prop="item.columnName"-->
|
|
|
|
|
<!-- :label="item.columnDesc"-->
|
|
|
|
|
<!-- :sortable="item.sort"-->
|
|
|
|
|
<!-- :width="item.width"-->
|
|
|
|
|
<!-- :show-overflow-tooltip="item.tooltip"-->
|
|
|
|
|
<!-- :key="item.columnName"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{-->
|
|
|
|
|
<!-- scope.row[item.columnName]-->
|
|
|
|
|
<!-- }}</span>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table>-->
|
|
|
|
|
<!-- <pagination-->
|
|
|
|
|
<!-- v-show="errTotal>0"-->
|
|
|
|
|
<!-- :total="errTotal"-->
|
|
|
|
|
<!-- :limit.sync="errQuery.limit"-->
|
|
|
|
|
<!-- :page.sync="errQuery.page"-->
|
|
|
|
|
<!-- @pagination="handleCurrentChange"-->
|
|
|
|
|
<!-- ></pagination>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--</el-tab-pane>-->
|
|
|
|
|
<!--</el-tabs>-->
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'radio' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-radio :label="scope.row.id" v-model="radioCheck"><span></span></el-radio>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'laber' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{
|
|
|
|
|
item.lableRuleObj[scope.row[item.columnName]]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'eltag' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag
|
|
|
|
|
:type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{
|
|
|
|
|
item.lableRuleObj ? item.lableRuleObj[scope.row[item.columnName]] : scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'button' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
fixed="right"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button v-for="(buttonItem, buttonIndex) in item.buttonRulObj"
|
|
|
|
|
:type="buttonItem.type"
|
|
|
|
|
:size="buttonItem.size"
|
|
|
|
|
:style="buttonItem.style"
|
|
|
|
|
:key="buttonItem"
|
|
|
|
|
v-if="executeEval(scope.row,buttonItem.hasPermi,true)"
|
|
|
|
|
:disabled="executeEval(scope.row,buttonItem.disabledFuc,false)"
|
|
|
|
|
@click.native.stop="executeFuc(scope.row,'1',buttonItem.clickFuc)"
|
|
|
|
|
>{{ buttonItem.name }}
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'text' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{
|
|
|
|
|
scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="errTotal>0"
|
|
|
|
|
:total="errTotal"
|
|
|
|
|
:limit.sync="errQuery.limit"
|
|
|
|
|
:page.sync="errQuery.page"
|
|
|
|
|
@pagination="handleCurrentChange"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|