'123'
This commit is contained in:
parent
545d650d08
commit
5ce44c47af
|
@ -713,7 +713,7 @@ export default {
|
|||
const quotId = row.quotId || this.ids
|
||||
getQuot(quotId).then(response => {
|
||||
this.form = response.data;
|
||||
this.$set(this.form, "quotJsxzGroup", this.form.quotJsxzGroup==''?[]:this.form.quotJsxzGroup.split(','));
|
||||
this.$set(this.form, "quotJsxzGroup", (this.form.quotJsxzGroup==''||this.form.quotJsxzGroup==null)?[]:this.form.quotJsxzGroup.split(','));
|
||||
this.quotMaterialList = response.data.quotMaterialList;
|
||||
this.open = true;
|
||||
this.title = "修改报价";
|
||||
|
|
|
@ -889,7 +889,7 @@ export default {
|
|||
const quotJsqrId = row.quotJsqrId || this.ids
|
||||
getJsqr(quotJsqrId).then(response => {
|
||||
this.form = response.data;
|
||||
this.$set(this.form, "quotJsxzGroup", this.form.quotJsxzGroup==''?[]:this.form.quotJsxzGroup.split(','));
|
||||
this.$set(this.form, "quotJsxzGroup", (this.form.quotJsxzGroup==''||this.form.quotJsxzGroup==null)?[]:this.form.quotJsxzGroup.split(','));
|
||||
var quotJsxzGroup = this.form.quotJsxzGroup;
|
||||
if(quotJsxzGroup.indexOf("TL")!==-1){
|
||||
this.showTl = true;
|
||||
|
@ -934,6 +934,7 @@ export default {
|
|||
commitQuot(this.form).then(response => {
|
||||
this.open = false;
|
||||
})
|
||||
this.form.quotJsxzGroup = quotJsxzGroups.split(",");
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
|
|
Loading…
Reference in New Issue