|
|
|
@ -20,10 +20,10 @@
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in deviceStatus"
|
|
|
|
|
:key="item.key"
|
|
|
|
|
:label="item.desc"
|
|
|
|
|
:value="item.key">
|
|
|
|
|
v-for="item in deviceStatus"
|
|
|
|
|
:key="item.key"
|
|
|
|
|
:label="item.desc"
|
|
|
|
|
:value="item.key">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -34,9 +34,9 @@
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="showSearch = !showSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
@click="onReset"
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
@click="onReset"
|
|
|
|
|
>重置
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="search"
|
|
|
|
@ -59,7 +59,7 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="巡检锁定" width="120">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否'}}</el-tag>
|
|
|
|
|
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否' }}</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="数量" width="120" prop="count"/>
|
|
|
|
@ -82,11 +82,11 @@
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="query.page"
|
|
|
|
|
:limit.sync="query.limit"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="query.page"
|
|
|
|
|
:limit.sync="query.limit"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
@ -127,7 +127,7 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="巡检锁定" width="120">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否'}}</el-tag>
|
|
|
|
|
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否' }}</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="变更次数" width="100" prop="changeCount"/>
|
|
|
|
@ -161,28 +161,36 @@
|
|
|
|
|
>设备码
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-popover>
|
|
|
|
|
<el-button v-if="isChoose&&scope.row.status==deviceStatus.NORMAL.key&&scope.row.checkLock==false" type="text"
|
|
|
|
|
<el-button v-if="isChoose&&scope.row.status==deviceStatus.NORMAL.key&&scope.row.checkLock==false"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="chooseFunc(scope.row)"
|
|
|
|
|
>选择
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="printDevLabel(scope.row)"
|
|
|
|
|
>打印
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="detailTotal>0"
|
|
|
|
|
:total="detailTotal"
|
|
|
|
|
:page.sync="detailQuery.page"
|
|
|
|
|
:limit.sync="detailQuery.limit"
|
|
|
|
|
@pagination="getDetailList"
|
|
|
|
|
v-show="detailTotal>0"
|
|
|
|
|
:total="detailTotal"
|
|
|
|
|
:page.sync="detailQuery.page"
|
|
|
|
|
:limit.sync="detailQuery.limit"
|
|
|
|
|
@pagination="getDetailList"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="`设备变更日志——${productRow.productName}(${productRow.deviceCode})`"
|
|
|
|
|
:visible="true"
|
|
|
|
|
v-if="showLog"
|
|
|
|
|
@close="showLog = false"
|
|
|
|
|
:title="`设备变更日志——${productRow.productName}(${productRow.deviceCode})`"
|
|
|
|
|
:visible="true"
|
|
|
|
|
v-if="showLog"
|
|
|
|
|
@close="showLog = false"
|
|
|
|
|
>
|
|
|
|
|
<el-timeline>
|
|
|
|
|
<el-timeline-item placement="top"
|
|
|
|
|