|
|
@@ -754,7 +754,7 @@ export default class extends Vue {
|
|
|
ImagePreview([url]);
|
|
|
}
|
|
|
|
|
|
- radioClick(code,value){
|
|
|
+ radioClick(code,value,isClearCheckedProject = true){
|
|
|
let that = this;
|
|
|
that.fwsName = value;
|
|
|
that.fwsCode = code;
|
|
|
@@ -764,8 +764,10 @@ export default class extends Vue {
|
|
|
shop_name:value
|
|
|
}
|
|
|
that.GetPointsFn();
|
|
|
- that.checkedProject = null;
|
|
|
- that.checkedProjectId = null;
|
|
|
+ if (isClearCheckedProject){
|
|
|
+ that.checkedProject = null;
|
|
|
+ that.checkedProjectId = null;
|
|
|
+ }
|
|
|
window.localStorage.setItem("pageDesignfwsRadioValue", JSON.stringify(overviewRadioValue));
|
|
|
that.overlayShow = false;
|
|
|
}
|
|
|
@@ -1304,7 +1306,7 @@ export default class extends Vue {
|
|
|
GetProjectlist(formData).then(response => {
|
|
|
if (response.StatusCode == 200) {
|
|
|
that.checkedProject = response.Data[0];
|
|
|
- that.radioClick(response.Data[0].servicecode,'');
|
|
|
+ that.radioClick(response.Data[0].servicecode,'',false);
|
|
|
} else {
|
|
|
// console.log(response.Info)
|
|
|
}
|