Selaa lähdekoodia

Merge branch 'projects/mesxc-test' into projects/mesxc-dy

pull/211/head
helloDy 6 kuukautta sitten
vanhempi
commit
85791cc10c
7 muutettua tiedostoa jossa 37 lisäystä ja 40 poistoa
  1. +1
    -1
      src/layout/components/NavbarRight.vue
  2. +1
    -1
      src/views/energy/base/energyQuantityRealtime/index.vue
  3. +12
    -12
      src/views/energy/base/energyType/components/energyTypeAdd.vue
  4. +5
    -8
      src/views/order/base/orderGroup/orderGroupDetailData.vue
  5. +8
    -8
      src/views/order/base/orderManage/components/addWorkOrder.vue
  6. +9
    -9
      src/views/order/base/orderManage/index.vue
  7. +1
    -1
      src/views/order/base/orderManage/orderDetailData.vue

+ 1
- 1
src/layout/components/NavbarRight.vue Näytä tiedosto

@@ -68,7 +68,7 @@ export default {
getUserMsg() {
let id = this.$store.getters.userId
getUserSimple(id).then(res => {
this.dept = res.data.deptName ? res.data.dept.deptName : '---'
this.dept = res.data.deptName ? res.data.deptName : '---'
})
},
async logout() {


+ 1
- 1
src/views/energy/base/energyQuantityRealtime/index.vue Näytä tiedosto

@@ -193,7 +193,7 @@ export default {
if (this.exportList.length > 0) {
let body = this.exportList.map((x) => [
x.objName,
x.objRemark,
x.objCode,
x.energyTypeName,
x.startValue,
x.endValue,


+ 12
- 12
src/views/energy/base/energyType/components/energyTypeAdd.vue Näytä tiedosto

@@ -152,7 +152,7 @@ export default {
id: '',
name: '',
code: '',
nuit: '',
unit: '',
pricingMethod: 2,
leaderName: '',
push: false
@@ -186,16 +186,16 @@ export default {
if (res.code === 0) {
this.form.name = res.data.name
this.form.code = res.data.code
this.form.nuit = res.data.nuit
this.form.unit = res.data.unit
this.form.pricingMethod = res.data.pricingMethod
this.form.leaderName = res.data.leaderName
this.form.push = res.data.push ? true : false
switch(this.form.pricingMethod) {
case 0:
this.tableData1 = this.form.segPriceList || []
this.tableData1 = res.data.segPriceList || []
break;
case 1:
this.tableData2 = this.form.usedPriceList || []
this.tableData2 = res.data.usedPriceList || []
break;
default:
}
@@ -233,10 +233,10 @@ export default {
// 增加
emitButtonClick1() {
let n = this.tableData1.length
// if (n >=3) {
// this.$modal.msgWarning('最多可添加3档计价')
// return false
// }
if (n >=3) {
this.$modal.msgWarning('最多可添加3档计价')
return false
}
let obj = {}
obj.startTime = n === 0 ? '' : this.tableData1[n-1].endTime
obj.endTime = ''
@@ -245,10 +245,10 @@ export default {
},
emitButtonClick2() {
let n = this.tableData2.length
if (n >=3) {
this.$modal.msgWarning('最多可添加3档计价')
return false
}
// if (n >=3) {
// this.$modal.msgWarning('最多可添加3档计价')
// return false
// }
let obj = {}
obj.startUsed = n === 0 ? 0 : this.tableData2[n-1].endUsed
obj.endUsed = 0


+ 5
- 8
src/views/order/base/orderGroup/orderGroupDetailData.vue Näytä tiedosto

@@ -44,7 +44,7 @@
</el-col>
<el-col :span='4'>
<div class="blodTip">加工平方数(平方米)</div>
<div class="lightTip">{{orderGroupMsg.actualArea}}</div>
<div class="lightTip">{{orderGroupMsg.planArea}}</div>
</el-col>
<el-col :span='4'>
<div class="blodTip">状态</div>
@@ -70,7 +70,7 @@
</el-col>
<el-col :span='4'>
<div class="blodTip">废片数量</div>
<div class="lightTip">该字段未绑定</div>
<div class="lightTip">{{orderGroupMsg.nokQuantity}}</div>
</el-col>
</el-row>
</div>
@@ -114,7 +114,7 @@
</el-col>
<el-col :span='4'>
<div class="blodTip">加工平方数(平方米)</div>
<div class="lightTip">{{item.actualArea}}</div>
<div class="lightTip">{{item.planArea}}</div>
</el-col>
<el-col :span='4'>
<div class="blodTip">预计用时(时)</div>
@@ -144,7 +144,7 @@
</el-col>
<el-col :span='4'>
<div class="blodTip">废片数量</div>
<div class="lightTip">该字段未绑定</div>
<div class="lightTip">{{item.nokQuantity}}</div>
</el-col>
</el-row>
</div>
@@ -247,7 +247,7 @@ export default {
orderGroupId: '',
tableProps,
orderMsg: [],
tableH: this.tableHeight(510) / 2,
tableH: 150,
// 查询参数
queryParams: {
pageNo: 1,
@@ -257,9 +257,6 @@ export default {
}
},
mounted() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(510) / 2
})
this.orderGroupId = location.href.split('?')[1].split('=')[1]
this.getMsg()
},


+ 8
- 8
src/views/order/base/orderManage/components/addWorkOrder.vue Näytä tiedosto

@@ -202,8 +202,8 @@ export default {
processFlowList: [],
productLineList: [],
workOrderTypeList: [
{id: 1,name:'标准工单'},
{id: 2, name:'特殊工单'}
{id: 1,name:'普通'},
{id: 2, name:'特殊'}
],
planStartTime: '',
planFinishTime: '',
@@ -291,12 +291,12 @@ export default {
_this.$modal.msgSuccess("操作成功")
let name = this.form.name
_this.$emit('addWorkOrderSubmit')
// 询问是否添加预使用主原料
_this.$modal.confirm('是否添加预使用主原料信息?').then(function() {
_this.$router.push({
path: '/core/core-work-order?workOrderName='+encodeURI(name)
})
})
// // 询问是否添加预使用主原料
// _this.$modal.confirm('是否添加预使用主原料信息?').then(function() {
// _this.$router.push({
// path: '/core/core-work-order?workOrderName='+encodeURI(name)
// })
// })
}
})
} else {


+ 9
- 9
src/views/order/base/orderManage/index.vue Näytä tiedosto

@@ -401,9 +401,9 @@ export default {
},
// 完成,终止,作废
handleEditStatus(val, tip, status) {
console.log(val)
let _this = this
if (val.workOrderNum > 0) {//有下级工单
this.$confirm('是否将"'+tip+'"操作同步至下级工单?','确认信息', {
_this.$confirm('是否将"'+tip+'"操作同步至下级工单?','确认信息', {
type: 'warning',
distinguishCancelAndClose: true,
confirmButtonText: '同步',
@@ -411,26 +411,26 @@ export default {
}).then(function() {
console.log('同步')
orderStatusSet({ id: val.id, status: status, isSync: true}).then(() => {
this.getList();
this.$modal.msgSuccess("操作成功");
_this.getList();
_this.$modal.msgSuccess("操作成功");
})
}).catch(action => {
if (action === 'cancel') {
console.log('不同步')
orderStatusSet({ id: val.id, status: status, isSync: false}).then(() => {
this.getList();
this.$modal.msgSuccess("操作成功");
_this.getList();
_this.$modal.msgSuccess("操作成功");
})
}else {
return console.log('关闭')
}
})
}else{// 无下级工单
this.$modal.confirm('是否确认"'+tip+'"厂务订单名称为"' + val.name + '"的数据项?').then(function() {
_this.$modal.confirm('是否确认"'+tip+'"厂务订单名称为"' + val.name + '"的数据项?').then(function() {
return orderStatusSet({ id: val.id, status: status})
}).then(() => {
this.getList();
this.$modal.msgSuccess("操作成功");
_this.getList();
_this.$modal.msgSuccess("操作成功");
}).catch(() => {});
}
},


+ 1
- 1
src/views/order/base/orderManage/orderDetailData.vue Näytä tiedosto

@@ -74,7 +74,7 @@
</el-col>
<el-col :span='4'>
<div class="blodTip">废片数量</div>
<div class="lightTip">该字段未绑定</div>
<div class="lightTip">{{orderMsg.nokQuantity}}</div>
</el-col>
</el-row>
</div>


Ladataan…
Peruuta
Tallenna