diff --git a/src/api/sunVillage_info/fixedAssets.js b/src/api/sunVillage_info/fixedAssets.js index 2e2ba39b..64a7de7e 100644 --- a/src/api/sunVillage_info/fixedAssets.js +++ b/src/api/sunVillage_info/fixedAssets.js @@ -1372,6 +1372,15 @@ export function specialPublicityDetail(query) { }) } +// 查询四议两公开列表 +export function addReadCount(query) { + return request({ + url: '/subcontract/publicity/addReadCount', + method: 'get', + params: query + }) +} + // 查询四议两公开列表 export function specialPublicityEdit(data) { return request({ @@ -1406,3 +1415,45 @@ export function updateSpecialPublicityCount(query) { params: query }) } + +// 收支明细公开 +export function financialPublicDetailReport(query) { + return request({ + url: '/open/finance/financialPublicDetailReport', + method: 'get', + params: query + }) +} + + +// 收支明细公开 +export function jyxzcqkgkList(query) { + return request({ + url: '/open/asset/jyxzcqkgk/list', + method: 'get', + params: query + }) +} + +// 收支明细公开 +export function jyxzyqkgkList(query) { + return request({ + url: '/open/assetresource/jyxzyqkgk/list', + method: 'get', + params: query + }) +} + +export function jyxzcqkgkDetail(id) { + return request({ + url: '/open/asset/jyxzcqkgk/detail/' + id, + method: 'get' + }) +} + +export function jyxzyqkgkDetail(id) { + return request({ + url: '/open/assetresource/jyxzyqkgk/detail/' + id, + method: 'get' + }) +} diff --git a/src/permission.js b/src/permission.js index 2a6263fb..4952fa75 100644 --- a/src/permission.js +++ b/src/permission.js @@ -214,6 +214,16 @@ const whiteList = [ '/sunVillage_info/financeOpen', //村民主页 + '/sunVillage_info/login_code_new', //村民登录 + '/sunVillage_info/index_code_rights_new', //村民登录 + '/sunVillage_info/list_revenueAndExpenditure', //村民登录 + '/sunVillage_info/list_operatingAssets', //村民登录 + '/sunVillage_info/list_operatingAssets_detail', //村民登录 + '/sunVillage_info/list_operatingAssets_detail2', //村民登录 + '/sunVillage_info/otherOpenVisitIndexNew', //村民登录 + '/sunVillage_info/otherOpenVisitDetailNew', //村民登录 + + //承包地确权 '/contracted/login',//登录 '/contracted/index',//首页 diff --git a/src/router/index.js b/src/router/index.js index c1db91bc..5fa8ab31 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -4029,6 +4029,24 @@ export const constantRoutes = [ }, component: (resolve) => require(['@/views/sunVillage_info/otherOpen/otherOpenVisitDetail'], resolve) }, + { ////阳光村务(新)-- 综合公开 游客 + path: '/sunVillage_info/otherOpenVisitIndexNew', + name: 'otherOpenVisitIndexNew', + meta: { + title: '综合公开', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/otherOpenNew/otherOpenVisitList'], resolve) + }, + { ////阳光村务(新)-- 综合公开详情 游客 + path: '/sunVillage_info/otherOpenVisitDetailNew', + name: 'otherOpenVisitDetailNew', + meta: { + title: '综合公开详情', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/otherOpenNew/otherOpenVisitDetail'], resolve) + }, { ////阳光村务(新)-- 发包方审核 path: '/sunVillage_info/list_employer_process', @@ -6468,6 +6486,60 @@ export const constantRoutes = [ }, component: (resolve) => require(['@/views/pest/temperatureAndHumidity/temperatureAndHumidity'], resolve) }, + { // 阳光村务(一村一码)-- 村民登录 + path: '/sunVillage_info/login_code_new', + name: 'sunVillageInfoCodeLoginNew', + meta: { + title: '登录', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/login_code_new'], resolve) + }, + { // 阳光村务(一村一码)-- 村民登录 + path: '/sunVillage_info/index_code_rights_new', + name: 'sunVillageInfoCodeRightsNew', + meta: { + title: '首页', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/index_code_rights_new'], resolve) + }, + { // 阳光村务(一村一码)-- 村民登录 + path: '/sunVillage_info/list_revenueAndExpenditure', + name: 'sunVillageInfoRevenueAndExpendituresNew', + meta: { + title: '收支明细公开', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/list_revenueAndExpenditure'], resolve) + }, + { // 阳光村务(一村一码)-- 村民登录 + path: '/sunVillage_info/list_operatingAssets', + name: 'sunVillageInfoOperatingAssets', + meta: { + title: '经营性资产情况公开', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/list_operatingAssets'], resolve) + }, + { // 阳光村务(一村一码)-- 村民登录 + path: '/sunVillage_info/list_operatingAssets_detail', + name: 'sunVillageInfoOperatingAssetsDetail', + meta: { + title: '经营性资产情况公开', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/list_operatingAssets_detail'], resolve) + }, + { // 阳光村务(一村一码)-- 村民登录 + path: '/sunVillage_info/list_operatingAssets_detail2', + name: 'sunVillageInfoOperatingAssetsDetail2', + meta: { + title: '经营性资产情况公开', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/list_operatingAssets_detail2'], resolve) + }, { // 阳光村务(一村一码)-- 村民登录 path: '/sunVillage_info/login_farmer', name: 'sunVillageInfoFarmerLogin', diff --git a/src/views/sunVillage_info/index_code_rights_new.vue b/src/views/sunVillage_info/index_code_rights_new.vue new file mode 100644 index 00000000..35c442dc --- /dev/null +++ b/src/views/sunVillage_info/index_code_rights_new.vue @@ -0,0 +1,243 @@ + + + diff --git a/src/views/sunVillage_info/list_operatingAssets.vue b/src/views/sunVillage_info/list_operatingAssets.vue new file mode 100644 index 00000000..14a357f8 --- /dev/null +++ b/src/views/sunVillage_info/list_operatingAssets.vue @@ -0,0 +1,477 @@ + + + + + diff --git a/src/views/sunVillage_info/list_operatingAssets_detail.vue b/src/views/sunVillage_info/list_operatingAssets_detail.vue new file mode 100644 index 00000000..86b14c3c --- /dev/null +++ b/src/views/sunVillage_info/list_operatingAssets_detail.vue @@ -0,0 +1,193 @@ + + + + + diff --git a/src/views/sunVillage_info/list_operatingAssets_detail2.vue b/src/views/sunVillage_info/list_operatingAssets_detail2.vue new file mode 100644 index 00000000..3bbe5cdd --- /dev/null +++ b/src/views/sunVillage_info/list_operatingAssets_detail2.vue @@ -0,0 +1,199 @@ + + + + + diff --git a/src/views/sunVillage_info/list_revenueAndExpenditure.vue b/src/views/sunVillage_info/list_revenueAndExpenditure.vue new file mode 100644 index 00000000..a05e9ad9 --- /dev/null +++ b/src/views/sunVillage_info/list_revenueAndExpenditure.vue @@ -0,0 +1,470 @@ + + + + + diff --git a/src/views/sunVillage_info/list_special_add.vue b/src/views/sunVillage_info/list_special_add.vue index 0a770dd8..85a3eff5 100644 --- a/src/views/sunVillage_info/list_special_add.vue +++ b/src/views/sunVillage_info/list_special_add.vue @@ -87,6 +87,12 @@ + + + + + + diff --git a/src/views/sunVillage_info/otherOpenNew/otherOpenDetail.vue b/src/views/sunVillage_info/otherOpenNew/otherOpenDetail.vue new file mode 100644 index 00000000..20d0ad1c --- /dev/null +++ b/src/views/sunVillage_info/otherOpenNew/otherOpenDetail.vue @@ -0,0 +1,178 @@ + + + diff --git a/src/views/sunVillage_info/otherOpenNew/otherOpenEdit.vue b/src/views/sunVillage_info/otherOpenNew/otherOpenEdit.vue new file mode 100644 index 00000000..0e017ab8 --- /dev/null +++ b/src/views/sunVillage_info/otherOpenNew/otherOpenEdit.vue @@ -0,0 +1,280 @@ + + + diff --git a/src/views/sunVillage_info/otherOpenNew/otherOpenList.vue b/src/views/sunVillage_info/otherOpenNew/otherOpenList.vue new file mode 100644 index 00000000..84808d1d --- /dev/null +++ b/src/views/sunVillage_info/otherOpenNew/otherOpenList.vue @@ -0,0 +1,485 @@ + + + + + diff --git a/src/views/sunVillage_info/otherOpenNew/otherOpenVisitDetail.vue b/src/views/sunVillage_info/otherOpenNew/otherOpenVisitDetail.vue new file mode 100644 index 00000000..d1ce28e2 --- /dev/null +++ b/src/views/sunVillage_info/otherOpenNew/otherOpenVisitDetail.vue @@ -0,0 +1,187 @@ + + + diff --git a/src/views/sunVillage_info/otherOpenNew/otherOpenVisitList.vue b/src/views/sunVillage_info/otherOpenNew/otherOpenVisitList.vue new file mode 100644 index 00000000..fcd38db6 --- /dev/null +++ b/src/views/sunVillage_info/otherOpenNew/otherOpenVisitList.vue @@ -0,0 +1,441 @@ + + + + + diff --git a/static/images/sunVillage_info/code_new/1.png b/static/images/sunVillage_info/code_new/1.png new file mode 100644 index 00000000..53215089 Binary files /dev/null and b/static/images/sunVillage_info/code_new/1.png differ diff --git a/static/images/sunVillage_info/code_new/2.png b/static/images/sunVillage_info/code_new/2.png new file mode 100644 index 00000000..9e16692c Binary files /dev/null and b/static/images/sunVillage_info/code_new/2.png differ diff --git a/static/images/sunVillage_info/code_new/3.png b/static/images/sunVillage_info/code_new/3.png new file mode 100644 index 00000000..94ebec77 Binary files /dev/null and b/static/images/sunVillage_info/code_new/3.png differ diff --git a/static/images/sunVillage_info/code_new/address.png b/static/images/sunVillage_info/code_new/address.png new file mode 100644 index 00000000..28b4cc11 Binary files /dev/null and b/static/images/sunVillage_info/code_new/address.png differ diff --git a/static/images/sunVillage_info/code_new/back.png b/static/images/sunVillage_info/code_new/back.png new file mode 100644 index 00000000..56718273 Binary files /dev/null and b/static/images/sunVillage_info/code_new/back.png differ diff --git a/static/images/sunVillage_info/code_new/index_bg.png b/static/images/sunVillage_info/code_new/index_bg.png new file mode 100644 index 00000000..5e1159a5 Binary files /dev/null and b/static/images/sunVillage_info/code_new/index_bg.png differ diff --git a/static/images/sunVillage_info/code_new/list_icon.png b/static/images/sunVillage_info/code_new/list_icon.png new file mode 100644 index 00000000..b28e84d1 Binary files /dev/null and b/static/images/sunVillage_info/code_new/list_icon.png differ diff --git a/static/images/sunVillage_info/code_new/sunVillage_info_index_code_right_header.png b/static/images/sunVillage_info/code_new/sunVillage_info_index_code_right_header.png new file mode 100644 index 00000000..c3983674 Binary files /dev/null and b/static/images/sunVillage_info/code_new/sunVillage_info_index_code_right_header.png differ diff --git a/static/images/sunVillage_info/sunVillage_info_login_code_new_bg.png b/static/images/sunVillage_info/sunVillage_info_login_code_new_bg.png new file mode 100644 index 00000000..436aeeca Binary files /dev/null and b/static/images/sunVillage_info/sunVillage_info_login_code_new_bg.png differ