| 12345678910111213141516171819202122232425262728293031 |
- window.ss.cms||(window.ss.cms={});
- //查询子内容列表
- ss.display.querySubNrList = function (nrid, jlztm) {
- var result = [];
- $.ajax({
- type: 'post',
- url: "/service",
- dataType: "json",
- data: {
- ssServ: "wrCmsList", // wdService: "nrxtsy",。Lin
- nrid: "T-" + nrid,
- sfbf: 1,
- jlztm: jlztm
- },
- async: false,
- success: function (jsonData) {
- for (var i = 0; i < jsonData.length; i++) {
- result.push({
- name: jsonData[i].mc,
- value: jsonData[i].mswj,
- nrjslbm: jsonData[i].nrjslbm
- });
- }
- }
- });
- return result;
- }
|