Browse Source

plm BMM

master
ruanqi 12 months ago
parent
commit
256256976c
  1. 9
      src/views/modules/demoComponents/orderProperties.vue

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

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

Loading…
Cancel
Save