|
@@ -667,7 +667,16 @@ export default {
|
|
|
infoButton.customerWindowNo.length > 0
|
|
infoButton.customerWindowNo.length > 0
|
|
|
) {
|
|
) {
|
|
|
CustomerWindowResource.uniqueByNo(infoButton.customerWindowNo).then(
|
|
CustomerWindowResource.uniqueByNo(infoButton.customerWindowNo).then(
|
|
|
- customerWindowDto => {
|
|
|
|
|
|
|
+ successData => {
|
|
|
|
|
+
|
|
|
|
|
+ if (successData.errorCode != 0) {
|
|
|
|
|
+ Notify.error(_self.$t('lang.Notify.error'), successData.errorMessage, true);
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ const customerWindowDto = successData.data;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
var customerWindowRouteUrl = customerWindowDto.routeUrl;
|
|
var customerWindowRouteUrl = customerWindowDto.routeUrl;
|
|
|
if (
|
|
if (
|
|
|
customerWindowRouteUrl != undefined &&
|
|
customerWindowRouteUrl != undefined &&
|