Browse Source

plm BMM

master
ruanqi 11 months ago
parent
commit
256256976c
  1. 9
      src/views/modules/demoComponents/orderProperties.vue
  2. 2
      src/views/modules/tooling/searchToolApply.vue

9
src/views/modules/demoComponents/orderProperties.vue

@ -303,7 +303,7 @@ export default {
}
refreshPropertiesModal(params).then(({data}) => {
if (data && data.code === 0) {
this.$message.success(data.msg);
this.$message.success('操作成功');
this.getProperties();
this.attributeDialog = true;
} else {
@ -353,7 +353,7 @@ export default {
this.loading = true
updatePropertiesList(this.copyAttributeList).then(({data})=>{
if (data && data.code === 0){
this.$message.success(data.msg);
this.$message.success('操作成功');
this.getProperties();
this.attributeDialog = true;
}else {
@ -389,7 +389,7 @@ export default {
}
saveSubPropertiesValueForAlone(arr).then(({data})=>{
if (data && data.code === 0){
this.$message.success(data.msg);
this.$message.success('操作成功');
this.getProperties(params)
}else {
this.$message.warning(data.msg);
@ -405,7 +405,7 @@ export default {
}
deleteSubPropertiesValueForAlone(params.dataTableList).then(({data})=>{
if (data && data.code === 0){
this.$message.success(data.msg);
this.$message.success('操作成功');
this.getProperties(params)
}else {
@ -426,6 +426,7 @@ export default {
site:this.$store.state.user.site,
functionType: this.functionType,
list :this.dataList,
codeNo: this.codeNo,
}
searchPropertiesItemList(inData).then(({data}) => {
if (data && data.code === 0){

2
src/views/modules/tooling/searchToolApply.vue

@ -92,7 +92,7 @@
</el-pagination>
<el-tabs style="font-size: 12px;min-height: 330px" class="customer-tab" v-model="activeName" type="border-card" @tab-click="tabClick">
<el-tab-pane label="基本信息" name="attribute">
<order-attribute ref="dialogAttribute" :order-no="currentRow.applyNo" :code-no="'toolApply'" :function-type="'TL'"></order-attribute>
<order-attribute ref="dialogAttribute" :order-no="currentRow.applyNo" :code-no="'toolApply'" :function-type="'TL'"></order-attribute>
</el-tab-pane>
<el-tab-pane label="工具明细" name="detail">
<el-table

Loading…
Cancel
Save