Merge branch 'master' of ssh://192.168.0.149:29418/高精2.0

This commit is contained in:
caoxinyu
2019-05-07 15:39:06 +08:00
5 changed files with 23 additions and 18 deletions

View File

@@ -15,7 +15,7 @@
:value="item.value"/> :value="item.value"/>
</el-select> </el-select>
<span>零件号:</span> <span>零件号:</span>
<el-select v-model="partNumValue" filterable clearable placeholder="零件号" size="small" @clear="clearDetail" @change="searchParts();searchDetail()"> <el-select v-model="partNumValue" filterable clearable placeholder="零件号" size="small" @clear="clearDetail" @change="searchDetail()">
<el-option <el-option
v-for="item in partNum" v-for="item in partNum"
:key="item.value" :key="item.value"
@@ -175,6 +175,7 @@
<el-table <el-table
v-loading="loading0" v-loading="loading0"
:data="tableData" :data="tableData"
class="processTable"
border border
style="width: 100%;max-height: 550px;" style="width: 100%;max-height: 550px;"
size="mini" size="mini"
@@ -185,7 +186,6 @@
<el-input <el-input
v-model="scope.row.工艺名称" v-model="scope.row.工艺名称"
:disabled="disabled" :disabled="disabled"
size="mini"
readonly readonly
style="width:200px" style="width:200px"
@dblclick.native="tableSearch(scope.$index)"/> @dblclick.native="tableSearch(scope.$index)"/>
@@ -196,7 +196,6 @@
<el-select <el-select
v-model="scope.row.工艺难度等级" v-model="scope.row.工艺难度等级"
:disabled="disabled" :disabled="disabled"
size="mini"
@change="hardEdit(scope.row)"> @change="hardEdit(scope.row)">
<el-option v-for="item in hard" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in hard" :key="item.value" :label="item.label" :value="item.value">
<span style="color: #8492a6; font-size: 13px">{{ item.value }}</span> <span style="color: #8492a6; font-size: 13px">{{ item.value }}</span>
@@ -210,7 +209,6 @@
v-model="scope.row.工艺要求" v-model="scope.row.工艺要求"
:rows="1" :rows="1"
:disabled="disabled" :disabled="disabled"
size="mini"
type="textarea" type="textarea"
@dblclick.native="tableSearch(scope.$index)" @dblclick.native="tableSearch(scope.$index)"
@change="requestEdit(scope.row)"/> @change="requestEdit(scope.row)"/>
@@ -221,25 +219,21 @@
<div> <div>
<el-button <el-button
:disabled="disabled" :disabled="disabled"
size="mini"
icon="el-icon-arrow-up" icon="el-icon-arrow-up"
type="primary" type="primary"
@click="upOne(scope.row)"/> @click="upOne(scope.row)"/>
<el-button <el-button
:disabled="disabled" :disabled="disabled"
size="mini"
icon="el-icon-arrow-down" icon="el-icon-arrow-down"
type="primary" type="primary"
@click="downOne(scope.row)"/> @click="downOne(scope.row)"/>
<el-button <el-button
:disabled="disabled" :disabled="disabled"
size="mini"
icon="el-icon-circle-plus-outline" icon="el-icon-circle-plus-outline"
type="primary" type="primary"
@click="insertOne(scope.row)"/> @click="insertOne(scope.row)"/>
<el-button <el-button
:disabled="disabled" :disabled="disabled"
size="mini"
icon="el-icon-delete" icon="el-icon-delete"
type="danger" type="danger"
@click="deleteOne(scope.row)"/> @click="deleteOne(scope.row)"/>
@@ -1451,3 +1445,15 @@ export default {
background: oldlace; background: oldlace;
} }
</style> </style>
<style lang="scss">
.processTable{
.el-input__inner{
font-weight: bold;
font-size: 20px;
}
.el-textarea__inner{
font-weight: bold;
font-size: 20px;
}
}
</style>

View File

@@ -212,8 +212,8 @@ export default {
this.partName = '' this.partName = ''
this.batchNum = '' this.batchNum = ''
this.material = '' this.material = ''
this.personValue = ''
this.tableData = [] // 清主表 this.tableData = [] // 清主表
this.personChange()
} else { // 未编制 } else { // 未编制
this.shuliang = '' this.shuliang = ''
this.isShow = false this.isShow = false
@@ -224,7 +224,6 @@ export default {
this.partName = '' this.partName = ''
this.batchNum = '' this.batchNum = ''
this.material = '' this.material = ''
this.personValue = ''
this.tableData = [] // 清主表 this.tableData = [] // 清主表
getPartnames1().then(response => { getPartnames1().then(response => {
for (let i = 0; i < response.data.length; i++) { for (let i = 0; i < response.data.length; i++) {

View File

@@ -187,19 +187,19 @@
{{ scope.row.付款方式 }} {{ scope.row.付款方式 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="合同总金额(元)" width="150"> <el-table-column align="center" label="合同总金额(元)" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.合同总金额 }} {{ scope.row.合同总金额.toFixed(2) }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="已到账金额(元)" width="150"> <el-table-column align="center" label="已到账金额(元)" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.已支付 }} {{ scope.row.已支付.toFixed(2) }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="未到账金额(元)" width="150"> <el-table-column align="center" label="未到账金额(元)" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag size="small" style="width: 100px" type="warning">{{ scope.row.未支付金额 }}</el-tag> <el-tag size="small" style="width: 100px" type="warning">{{ scope.row.未支付金额.toFixed(2) }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="付款进度" width="150"> <el-table-column align="center" label="付款进度" width="150">

View File

@@ -683,7 +683,7 @@ export default {
<style> <style>
.el-table .warning-row { .el-table .warning-row {
background: oldlace; background: red;
} }
</style> </style>

View File

@@ -640,7 +640,7 @@ export default {
<style> <style>
.el-table .warning-row { .el-table .warning-row {
background: oldlace; background: red;
} }
.rgb196{ .rgb196{
background: palevioletred; background: palevioletred;