This commit is contained in:
g7hoo 2022-08-11 14:22:23 +08:00
parent 0ddba21e1c
commit a1056abe80
29 changed files with 161 additions and 87 deletions

View File

@ -122,6 +122,7 @@ export default {
name: '名称',
code: '编码',
remark: '备注',
description: '描述',
specifications: '规格'
// add more...
}
@ -140,6 +141,7 @@ export default {
name: '名称',
code: '编码',
remark: '备注',
description: '描述',
specifications: '规格'
// add more...
},
@ -317,6 +319,12 @@ export default {
}
})
}
}).catch(err => {
this.$message({
message: err,
type: 'error',
duration: 2000
})
})
}
})

View File

@ -55,6 +55,8 @@ http.interceptors.response.use(response => {
clearLoginInfo()
router.replace({ name: 'login' })
return Promise.reject(response.data.msg)
} else if (response.data.code === 500) {
return Promise.reject(response.data.msg)
}
return response
}, error => {

View File

@ -137,7 +137,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipment'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -153,7 +153,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentAlarmLog'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -162,7 +162,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentFile'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -157,7 +157,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentGroup'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -175,7 +175,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentGroupAlarm'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -171,7 +171,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentPlc'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -151,7 +151,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentPlcConnect'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -183,7 +183,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentPlcParam'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -165,7 +165,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentQuantity'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -159,7 +159,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentStatusLog'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -6,7 +6,7 @@
</el-form-item>
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
<el-button v-if="$hasPermission('monitoring:equipmentype:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
<el-button v-if="$hasPermission('monitoring:equipmenttype:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
</el-form-item>
</el-form>
@ -160,7 +160,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentType'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -160,7 +160,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentTypeFile'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -154,7 +154,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/equipmentAttr'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -160,7 +160,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/factory'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -6,8 +6,9 @@
</el-form-item>
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
<el-button @click="addOrEdit()">测试</el-button>
<el-button v-if="$hasPermission('monitoring:product:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
<!-- <el-button @click="addOrEdit()">测试</el-button> -->
<!-- <el-button v-if="$hasPermission('monitoring:product:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button> -->
<el-button v-if="$hasPermission('monitoring:product:save')" type="primary" @click="addOrEdit()">新增</el-button>
</el-form-item>
</el-form>
<!-- <el-table :data="dataList" border v-loading="dataListLoading" @selection-change="selectionChangeHandle" style="width: 100%;">
@ -52,17 +53,17 @@
layout="total, sizes, prev, pager, next, jumper"
></el-pagination>
<!-- 弹窗, 新增 / 修改 -->
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update> -->
<base-dialog v-if="showbasedialog" ref="basedialog" :configs="addOrUpdateConfigs" @refreshDataList="getDataList"></base-dialog>
</div>
</template>
<script>
import AddOrUpdate from './product-add-or-update'
// import AddOrUpdate from './product-add-or-update'
import BaseTable from '@/components/base-table'
import TableOperateComponent from '@/components/base-table/components/operationComponent'
import TableTextComponent from '@/components/base-table/components/detailComponent'
// import TableTextComponent from '@/components/base-table/components/detailComponent'
import BaseDialog from '@/components/base-dialog/addOrUpdate'
import moment from 'moment'
import dictListMixin from '@/mixins/dictlist-module'
@ -77,27 +78,7 @@ const tableConfigs = [
{ prop: 'code', name: '产品编码' },
{ prop: 'specifications', name: '规格' },
{ prop: 'unitDictValue', name: '单位', filter: dictFilter(UnitDictTypeId) },
// { prop: 'unitDictValue', name: 'valuelabel_value' },
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['viewAttr', 'delete'] }
// { "prop": "id", "name": "ID" },
// { "prop": "description", "name": "" },
// { "prop": "externalCode", "name": "" },
// { "prop": "area", "name": "" },
// { "prop": "processTime", "name": "" },
// {
// "prop": "typeDictValue",
// "name": "valuelabel_value"
// },
// { "prop": "enabled", "name": ":0 1" },
// { "prop": "remark", "name": "" },
// { "prop": "valid", "name": ":1 0" },
// { "prop": "creatorId", "name": "" },
// { "prop": "creatorName", "name": "" },
// { "prop": "createTime", "name": "" },
// { "prop": "updaterId", "name": "" },
// { "prop": "updaterName", "name": "" },
// { "prop": "version", "name": "" }
]
const addOrUpdateConfigs = {
@ -113,10 +94,9 @@ const addOrUpdateConfigs = {
name: 'processTime',
label: '加工时间',
placeholder: '请输入加工时间',
type: 'number', // type: number(input+number) | default(input) | textarea | select(options) | datetime
type: 'number',
required: true,
rules: [
// required
{
type: 'number',
trigger: 'blur',
@ -129,9 +109,6 @@ const addOrUpdateConfigs = {
'specifications',
{
name: 'typeDictValue',
// rules: [
// {required: true, trigger: 'blur'}
// ],
label: '产品类型', // label
type: 'select',
options: [
@ -149,7 +126,6 @@ const addOrUpdateConfigs = {
}
],
operations: [
// { name: 'reset', url: true },
{ name: 'cancel', url: true, showAlways: true },
{ name: 'save', url: '/monitoring/product', permission: '', showOnEdit: false },
{ name: 'update', url: '/monitoring/product', permission: '', showOnEdit: true }
@ -166,13 +142,6 @@ const addOrUpdateConfigs = {
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
]
}
// extraComponents: [
// {
// name: 'CompName',
// label: 'markdown',
// component: () => import('xx.vue')
// }
// ]
}
export default {
@ -195,7 +164,7 @@ export default {
}
},
components: {
AddOrUpdate,
// AddOrUpdate,
BaseTable,
BaseDialog
},
@ -204,7 +173,6 @@ export default {
this.addOrUpdateConfigs.fields.forEach(item => {
if (item.name) {
if (item.name === 'typeDictValue') {
console.log('dict : ', this.dictList)
item.options = this.dictList[ProductTypeDictTypeId]
} else if (item.name === 'unitDictValue') {
item.options = this.dictList[UnitDictTypeId]

View File

@ -36,7 +36,7 @@
</template>
</el-table-column>
</el-table> -->
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" />
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" @operate-event="handleOperations" @refreshDataList="getDataList" />
<el-pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
@ -48,15 +48,16 @@
>
</el-pagination>
<!-- 弹窗, 新增 / 修改 -->
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
<add-or-update v-if="addOrUpdateVisible" :configs="addOrUpdateConfigs" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
</div>
</template>
<script>
import AddOrUpdate from './productArrt-add-or-update'
// import AddOrUpdate from './productArrt-add-or-update'
import AddOrUpdate from '@/components/base-dialog/addOrUpdate'
import BaseTable from '@/components/base-table'
import TableOperateComponent from '@/components/base-table/components/operationComponent'
import TableTextComponent from '@/components/base-table/components/detailComponent'
// import TableTextComponent from '@/components/base-table/components/detailComponent'
const tableConfigs = [
{ prop: 'createTime', name: '添加时间' },
@ -79,9 +80,48 @@ const tableConfigs = [
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
]
const addOrUpdateConfigs = {
type: 'dialog',
infoUrl: '/monitoring/productArrt',
fields: [
{
name: 'name',
label: '属性名称',
placeholder: '请输入属性名称'
},
{
name: 'code',
label: '属性编码',
placeholder: '请输入属性编码'
},
{
name: 'productId',
label: '关联产品',
type: 'select',
options: []
},
{
name: 'value',
label: '属性值',
placeholder: '请输入属性值'
},
{
name: 'description',
label: '描述',
placeholder: '请输入描述'
}
],
operations: [
{name: 'cancel', showAlways: true},
{name: 'save', url: '/monitoring/productArrt', permission: '', showOnEdit: false},
{name: 'update', url: '/monitoring/productArrt', permission: '', showOnEdit: true},
]
}
export default {
data() {
return {
addOrUpdateConfigs,
tableConfigs,
dataForm: {
key: ''
@ -140,6 +180,14 @@ export default {
selectionChangeHandle(val) {
this.dataListSelections = val
},
handleOperations({type, data : id }) {
switch (type) {
case 'edit':
return this.addOrUpdateHandle(id)
case 'delete':
return this.deleteHandle(id)
}
},
// /
addOrUpdateHandle(id) {
this.addOrUpdateVisible = true
@ -162,7 +210,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/productArrt'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -7,7 +7,6 @@
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
<el-button v-if="$hasPermission('monitoring:productionline:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
</el-form-item>
</el-form>
<!-- <el-table :data="dataList" border v-loading="dataListLoading" @selection-change="selectionChangeHandle" style="width: 100%;">
@ -37,7 +36,7 @@
</template>
</el-table-column>
</el-table> -->
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" />
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" @operate-event="handleOperations" @refreshDataList="getDataList"/>
<el-pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
@ -49,15 +48,15 @@
>
</el-pagination>
<!-- 弹窗, 新增 / 修改 -->
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" :configs="addOrUpdateConfigs" @refreshDataList="getDataList"></add-or-update>
</div>
</template>
<script>
import AddOrUpdate from './productionLine-add-or-update'
import AddOrUpdate from '@/components/base-dialog/addOrUpdate'
import BaseTable from '@/components/base-table'
import TableOperateComponent from '@/components/base-table/components/operationComponent'
import TableTextComponent from '@/components/base-table/components/detailComponent'
// import TableTextComponent from '@/components/base-table/components/detailComponent'
const tableConfigs = [
{ prop: 'createTime', name: '添加时间' },
@ -67,28 +66,52 @@ const tableConfigs = [
{ prop: 'status', name: '产线状态' },
{ prop: 'description', name: '描述' },
{ prop: 'remark', name: '备注' },
// { "prop": "tvalue", "name": "" },
// { "prop": "externalCode", "name": "" },
// { "prop": "enabled", "name": ":0 1" },
// { "prop": "id", "name": "id" },
// { "prop": "valid", "name": ":1 0" },
// { "prop": "creatorId", "name": "" },
// { "prop": "creatorName", "name": "" },
// { "prop": "updaterId", "name": "" },
// { "prop": "updaterName", "name": "" },
// { "prop": "updateTime", "name": "" },
// { prop: 'version', name: '' },
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
]
const addOrUpdateConfigs = {
type: 'dialog',
infoUrl: '/monitoring/productionLine',
fields: [
'name',
{ name: 'code', api: '/monitoring/productionLine/getCode' },
{
name: 'factoryId',
label: '工厂',
type: 'select',
placeholder: '请选择所属工厂',
options: []
},
{
name: 'tvalue',
label: '产线TT值(每小时下片数量)',
placeholder: '请输入合理数值',
type: 'number', // TODO: number
required: true,
rules: [
{type: 'number', transform: val => Number(val), trigger: 'blur', message: '请输入数字类型'}
]
},
'description',
'remark'
],
operations: [
{ name: 'cancel', url: true, showAlways: true },
{ name: 'save', url: '/monitoring/productionLine', permission: '', showOnEdit: false },
{ name: 'update', url: '/monitoring/productionLine', permission: '', showOnEdit: true }
]
}
export default {
data() {
return {
addOrUpdateConfigs,
tableConfigs,
dataForm: {
key: ''
},
dataList: [],
factoryList: [],
pageIndex: 1,
pageSize: 10,
totalPage: 0,
@ -102,9 +125,26 @@ export default {
BaseTable
},
activated() {
this.getFactoryList()
this.getDataList()
},
methods: {
//
getFactoryList() {
this.$http.get(this.$http.adornUrl('/monitoring/factory/list')).then(({ data: res }) => {
if (res && res.code === 0) {
this.factoryList = res.data
} else {
this.factoryList.splice(0)
}
this.addOrUpdateConfigs.fields.forEach(item => {
if (item.name === 'factoryId') {
console.log('res' ,item)
item.options = this.factoryList.map(f => ({ value: f.id, label: f.name }))
}
})
})
},
//
getDataList() {
this.dataListLoading = true
@ -142,6 +182,14 @@ export default {
selectionChangeHandle(val) {
this.dataListSelections = val
},
handleOperations({type, data: id}) {
switch (type) {
case 'edit':
return this.addOrUpdateHandle(id)
case 'delete':
return this.deleteHandle(id)
}
},
// /
addOrUpdateHandle(id) {
this.addOrUpdateVisible = true
@ -164,7 +212,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/productionLine'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -143,7 +143,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/productionLineRecSch'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -153,7 +153,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/qualityInspectionDet'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -169,7 +169,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/qualityInspectionRecord'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -151,7 +151,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/qualityInspectionType'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -165,7 +165,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/reportSheet'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -157,7 +157,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/reportSheetCategory'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -152,7 +152,7 @@ export default {
}).then(() => {
this.$http({
url: this.$http.adornUrl('/monitoring/sysFile'),
method: 'delete',
data: this.$http.adornData(ids, false)
}).then(({ data }) => {
if (data && data.code === 0) {

View File

@ -150,7 +150,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/sysFileType'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -162,7 +162,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/workshopSection'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({

View File

@ -153,7 +153,7 @@ export default {
this.$http({
url: this.$http.adornUrl('/monitoring/workshopSectionEquipment'),
method: 'delete',
data: this.$http.adornData(ids, false)
data: this.$http.adornData(ids, false, 'raw')
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({