Browse Source

配置文件添加注释

suzhou_blueVersion^2
liwei 3 years ago
parent
commit
a83ac1224a
3 changed files with 21 additions and 10 deletions
  1. +4
    -2
      .env.production
  2. +4
    -0
      src/views/equip/reportform/history.vue
  3. +13
    -8
      src/views/equip/workbench/order.vue

+ 4
- 2
.env.production View File

@ -2,5 +2,7 @@
VUE_APP_ENV = 'Prod'
NODE_ENV = 'production'
# base api
# VUE_APP_BASE_API = 'http://10.122.64.86:8095'
VUE_APP_BASE_API = 'http://192.168.3.22:8095'
# 正式版本
VUE_APP_BASE_API = 'http://10.122.64.86:8095'
# 测试版本
#VUE_APP_BASE_API = 'http://192.168.3.22:8095'

+ 4
- 0
src/views/equip/reportform/history.vue View File

@ -135,6 +135,10 @@
<span> {{ parseTime(row.credatuz) }} </span>
</template>
</vxe-table-column>
<!-- 实际开始时间 -->
<vxe-table-column field="actbegtime" width="200" :title="getColumnName('actbegtime')" />
<!-- 实际结束时间 -->
<vxe-table-column field="actendtime" width="200" :title="getColumnName('actendtime')" />
</vxe-table>
</template>
</vxe-table-column>


+ 13
- 8
src/views/equip/workbench/order.vue View File

@ -50,14 +50,15 @@
</el-form>
<!-- 列表 -->
<vxe-table ref="xTable"
v-loading="loading"
:align="allAlign"
:data="dataList"
show-overflow
resizable
border
highlight-hover-row
:cell-style="columnStyle">
v-loading="loading"
:align="allAlign"
:data="dataList"
show-overflow
resizable
border
highlight-hover-row
:cell-style="columnStyle"
>
<!-- 维护工单 -->
<vxe-table-column field="maintwoid" width="150" show-overflow :title="getColumnName('maintwoid')" />
<!-- 描述 -->
@ -90,6 +91,10 @@
</vxe-table-column>
<!-- 最近一次更改人 -->
<vxe-table-column field="lastuser" width="200" :title="getColumnName('lastuser')" />
<!-- 实际开始时间 -->
<vxe-table-column field="actbegtime" width="200" :title="getColumnName('actbegtime')" />
<!-- 实际结束时间 -->
<vxe-table-column field="actendtime" width="200" :title="getColumnName('actendtime')" />
<!-- 创建时间 -->
<vxe-table-column field="credatuz" width="200" :title="getColumnName('credatuz')">
<template slot-scope="scope">


Loading…
Cancel
Save