46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
/// <reference path="C:\Users\Administrator\Desktop\WEI.UIPro\WEI.UIPro20160726\WEI.UIPro\WEI.UIPro\WEI.UIPro\Scripts/linq.js" />
|
|
|
|
|
|
|
|
|
|
app.controller('DaPingStreetCtrl', ['$scope', 'YPJBXXGL', '$uibModal', '$sessionStorage', '$state', '$http', '$filter', 'mainUrl', 'wyOdataNodeService', 'stConfig', '$timeout', function ($scope, YPJBXXGL, $uibModal, $sessionStorage, $state, $http, $filter, mainUrl, wyOdataNodeService, stConfig, $timeout, $uibModalInstance, item) {
|
|
|
|
$scope.openZhuViveForm = function () {
|
|
var index = layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 1,
|
|
// content: 'http://localhost:8081/daping.html#/shanghaimap',
|
|
content: pubserver + 'daping.html#/shanghaiStreetMap',
|
|
area: ['320px', '195px'],
|
|
maxmin: true
|
|
});
|
|
layer.full(index);
|
|
}
|
|
//根据区得分
|
|
$scope.openFenByQuForm = function () {
|
|
var index = layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 1,
|
|
content: pubserver + 'daping.html#/shanghaiStreetMapForDistrict',
|
|
area: ['320px', '195px'],
|
|
maxmin: true
|
|
});
|
|
layer.full(index);
|
|
}
|
|
//根据环节得分
|
|
$scope.openFenByHuJieForm = function () {
|
|
var index = layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 1,
|
|
content: pubserver + 'daping.html#/shanghaimapforstage',
|
|
area: ['320px', '195px'],
|
|
maxmin: true
|
|
});
|
|
layer.full(index);
|
|
}
|
|
}])
|
|
|