@@ -4281,7 +4281,7 @@ | |||||
"fastclick": { | "fastclick": { | ||||
"version": "1.0.6", | "version": "1.0.6", | ||||
"resolved": "https://registry.npmjs.org/fastclick/-/fastclick-1.0.6.tgz", | "resolved": "https://registry.npmjs.org/fastclick/-/fastclick-1.0.6.tgz", | ||||
"integrity": "sha1-FhYlsnsaWAZAWTa9qaLBkm0Gvmo=", | |||||
"integrity": "sha512-cXyDBT4g0uWl/Xe75QspBDAgAWQ0lkPi/zgp6YFEUHj6WV6VIZl7R6TiDZhdOVU3W4ehp/8tG61Jev1jit+ztQ==", | |||||
"dev": true | "dev": true | ||||
}, | }, | ||||
"fastparse": { | "fastparse": { | ||||
@@ -4436,7 +4436,7 @@ | |||||
"font-awesome.css": { | "font-awesome.css": { | ||||
"version": "4.7.2", | "version": "4.7.2", | ||||
"resolved": "https://registry.npmjs.org/font-awesome.css/-/font-awesome.css-4.7.2.tgz", | "resolved": "https://registry.npmjs.org/font-awesome.css/-/font-awesome.css-4.7.2.tgz", | ||||
"integrity": "sha1-B1pCARQo8gJyVO9phgx1ergWyVI=" | |||||
"integrity": "sha512-FIyRbig4PDY15NGzejM3b8OQ/lWvId8PHnE4CnuDtc8/YYs07cvnqLCyfvIJPwJl5SA/Rq+9jAe9W+Fr1pv0DA==" | |||||
}, | }, | ||||
"for-in": { | "for-in": { | ||||
"version": "1.0.2", | "version": "1.0.2", | ||||
@@ -12350,7 +12350,7 @@ | |||||
"vue-html5-editor": { | "vue-html5-editor": { | ||||
"version": "1.1.1", | "version": "1.1.1", | ||||
"resolved": "https://registry.npmjs.org/vue-html5-editor/-/vue-html5-editor-1.1.1.tgz", | "resolved": "https://registry.npmjs.org/vue-html5-editor/-/vue-html5-editor-1.1.1.tgz", | ||||
"integrity": "sha1-WRAhCoMNjI00eaHx/shHMZKqA7M=", | |||||
"integrity": "sha512-Ckmb8djta+XQMUQaxRcCUNBXEzjPF5p6c2nQ5ICcIuR8eYz4b0HAGzXlSDfL3ZxkrVHO2Hx0VrUORLu2Lwem4g==", | |||||
"dev": true | "dev": true | ||||
}, | }, | ||||
"vue-lazyload": { | "vue-lazyload": { | ||||
@@ -14,6 +14,11 @@ import SearchTree from 'vue-search-tree' | |||||
import VueHtml5Editor from 'vue-html5-editor' | import VueHtml5Editor from 'vue-html5-editor' | ||||
import "font-awesome/css/font-awesome.css" | import "font-awesome/css/font-awesome.css" | ||||
import VueCookies from 'vue-cookies' | import VueCookies from 'vue-cookies' | ||||
import "font-awesome/css/font-awesome.css" | |||||
import initRichText from './utils/initHTMLEditor'; | |||||
initRichText(); | |||||
//引用百度地图 | //引用百度地图 | ||||
import BaiduMap from 'vue-baidu-map' | import BaiduMap from 'vue-baidu-map' | ||||
Vue.use(VueCookies); | Vue.use(VueCookies); | ||||
@@ -0,0 +1,135 @@ | |||||
/** | |||||
* author: Joker | |||||
* creationDate: 2018/1/22 | |||||
* usage: | |||||
*/ | |||||
import Vue from 'vue' | |||||
import VueHtml5Editor from 'vue-html5-editor' | |||||
export default function () { | |||||
let opt = { | |||||
// 全局组件名称,使用new VueHtml5Editor(options)时该选项无效 | |||||
name: "vue-html5-editor", | |||||
// 是否显示模块名称,开启的话会在工具栏的图标后台直接显示名称 | |||||
showModuleName: true, | |||||
// 自定义各个图标的class,默认使用的是font-awesome提供的图标 | |||||
icons: { | |||||
text: "fa fa-pencil", | |||||
color: "fa fa-paint-brush", | |||||
font: "fa fa-font", | |||||
align: "fa fa-align-justify", | |||||
list: "fa fa-list", | |||||
link: "fa fa-chain", | |||||
unlink: "fa fa-chain-broken", | |||||
tabulation: "fa fa-table", | |||||
image: "fa fa-file-image-o", | |||||
hr: "fa fa-minus", | |||||
eraser: "fa fa-eraser", | |||||
undo: "fa-undo fa", | |||||
"full-screen": "fa fa-arrows-alt", | |||||
info: "fa fa-info", | |||||
}, | |||||
// 配置图片模块 | |||||
image: { | |||||
// 文件最大体积,单位字节 | |||||
sizeLimit: 512 * 1024 * 10, | |||||
// 上传参数,默认把图片转为base64而不上传 | |||||
// upload config,default null and convert image to base64 | |||||
upload: { | |||||
url: null, | |||||
headers: {}, | |||||
params: {}, | |||||
fieldName: {} | |||||
}, | |||||
// 压缩参数,默认使用localResizeIMG进行压缩,设置为null禁止压缩 | |||||
// width和height是文件的最大宽高 | |||||
compress: { | |||||
width: 600, | |||||
height: 600, | |||||
quality: 80 | |||||
}, | |||||
// 响应数据处理,最终返回图片链接 | |||||
uploadHandler(responseText){ | |||||
//default accept json data like {ok:false,msg:"unexpected"} or {ok:true,data:"image url"} | |||||
var json = JSON.parse(responseText); | |||||
console.info(json); | |||||
if (!json.ok) { | |||||
alert(json.msg) | |||||
} else { | |||||
return json.data | |||||
} | |||||
} | |||||
}, | |||||
// 语言,内建的有英文(en-us)和中文(zh-cn) | |||||
language: "zh-cn", | |||||
// 自定义语言 | |||||
i18n: { | |||||
"zh-cn": { | |||||
"align": "对齐方式", | |||||
"image": "图片", | |||||
"list": "列表", | |||||
"link": "链接", | |||||
"unlink": "去除链接", | |||||
"table": "表格", | |||||
"font": "文字", | |||||
"full screen": "全屏", | |||||
"text": "排版", | |||||
"eraser": "格式清除", | |||||
"info": "关于", | |||||
"color": "颜色", | |||||
"please enter a url": "请输入地址", | |||||
"create link": "创建链接", | |||||
"bold": "加粗", | |||||
"italic": "倾斜", | |||||
"underline": "下划线", | |||||
"strike through": "删除线", | |||||
"subscript": "上标", | |||||
"superscript": "下标", | |||||
"heading": "标题", | |||||
"font name": "字体", | |||||
"font size": "文字大小", | |||||
"left justify": "左对齐", | |||||
"center justify": "居中", | |||||
"right justify": "右对齐", | |||||
"ordered list": "有序列表", | |||||
"unordered list": "无序列表", | |||||
"fore color": "前景色", | |||||
"background color": "背景色", | |||||
"row count": "行数", | |||||
"column count": "列数", | |||||
"save": "确定", | |||||
"upload": "上传", | |||||
"progress": "进度", | |||||
"unknown": "未知", | |||||
"please wait": "请稍等", | |||||
"error": "错误", | |||||
"abort": "中断", | |||||
"reset": "重置" | |||||
} | |||||
}, | |||||
// 隐藏不想要显示出来的模块 | |||||
hiddenModules: ["info",], | |||||
// 自定义要显示的模块,并控制顺序 | |||||
visibleModules: [ | |||||
"text", | |||||
"color", | |||||
"font", | |||||
"align", | |||||
"list", | |||||
"link", | |||||
"unlink", | |||||
"tabulation", | |||||
"image", | |||||
"hr", | |||||
"eraser", | |||||
"undo", | |||||
"full-screen", | |||||
], | |||||
// 扩展模块,具体可以参考examples或查看源码 | |||||
// extended modules | |||||
modules: { | |||||
//omit,reference to source code of build-in modules | |||||
} | |||||
}; | |||||
Vue.use(VueHtml5Editor, opt); | |||||
} |
@@ -78,6 +78,7 @@ service.interceptors.response.use(res => { | |||||
return; | return; | ||||
} | } | ||||
} catch (e) { console.log(e); } | } catch (e) { console.log(e); } | ||||
if (window.location.href.indexOf('lawEnforcement') != -1) { | if (window.location.href.indexOf('lawEnforcement') != -1) { | ||||
window.location.href = '/lawEnforcement/login'; | window.location.href = '/lawEnforcement/login'; | ||||
} else if (window.location.href.indexOf('authenticRight') != -1) { | } else if (window.location.href.indexOf('authenticRight') != -1) { | ||||
@@ -85,7 +86,6 @@ service.interceptors.response.use(res => { | |||||
} else if (window.location.href.indexOf('homesteadSurvey') != -1) { | } else if (window.location.href.indexOf('homesteadSurvey') != -1) { | ||||
window.location.href = '/homesteadLogin'; | window.location.href = '/homesteadLogin'; | ||||
} else if (window.location.href.indexOf('onlineHome') != -1) { | } else if (window.location.href.indexOf('onlineHome') != -1) { | ||||
//window.location.href = '/onlineHomeLogin'; | |||||
window.location.href = '/zjdLogin'; | window.location.href = '/zjdLogin'; | ||||
} else if (window.location.href.indexOf('yinnong') != -1) { | } else if (window.location.href.indexOf('yinnong') != -1) { | ||||
window.location.href = '/yinnongLogin'; | window.location.href = '/yinnongLogin'; | ||||
@@ -95,12 +95,10 @@ service.interceptors.response.use(res => { | |||||
window.location.href = '/sunVillage/login'; | window.location.href = '/sunVillage/login'; | ||||
} else if (window.location.href.indexOf('/homestead/') != -1) { | } else if (window.location.href.indexOf('/homestead/') != -1) { | ||||
window.location.href = '/homestead/login'; | window.location.href = '/homestead/login'; | ||||
} else if (window.location.href.indexOf('yinnong') != -1){ | |||||
window.location.href = '/yinnongLogin'; | |||||
//window.location.href = '/zjdLogin'; | |||||
/*window.location.href = '/index';*/ | |||||
} else { | |||||
}else if (window.location.href.indexOf('agriculturalTrusteeship') != -1){ | |||||
window.location.href = '/agriculturalTrusteeship/login'; | window.location.href = '/agriculturalTrusteeship/login'; | ||||
} else { | |||||
window.location.href = '/login'; | |||||
} | } | ||||
}) | }) | ||||
}) | }) | ||||
@@ -1,17 +1,23 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
:title="(operationIntent == 3 ? '添加' : '') + '纠纷调解'" | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack()" | |||||
z-index="998" | |||||
> | |||||
<template #right> | |||||
<van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="openMenu" v-if="!!id"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- :title="(operationIntent == 3 ? '添加' : '') + '纠纷调解'"--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack()"--> | |||||
<!-- z-index="998"--> | |||||
<!-- >--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="openMenu" v-if="!!id"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
纠纷调解 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="openMenu"></div> | |||||
</div> | |||||
<div class="main" style="padding-bottom: 1rem;"> | <div class="main" style="padding-bottom: 1rem;"> | ||||
<van-form ref="form"> | <van-form ref="form"> | ||||
@@ -534,6 +540,38 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding-bottom: 5%; | padding-bottom: 5%; | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.examine_box{ | .examine_box{ | ||||
background-color: #1D6FE9!important; | background-color: #1D6FE9!important; | ||||
@@ -1,16 +1,22 @@ | |||||
<template> | <template> | ||||
<div> | <div> | ||||
<van-nav-bar | |||||
left-arrow | |||||
title="纠纷调解" | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back()" | |||||
> | |||||
<template #right> | |||||
<van-icon name="add" @click="addArbitration" v-if="allowCUD"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- title="纠纷调解"--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back()"--> | |||||
<!-- >--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" @click="addArbitration" v-if="allowCUD"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
纠纷调解 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="addArbitration" v-if="allowCUD"></div> | |||||
</div> | |||||
<van-pull-refresh v-model="refreshing" @refresh="getList()"> | <van-pull-refresh v-model="refreshing" @refresh="getList()"> | ||||
<van-list | <van-list | ||||
@@ -262,7 +268,42 @@ export default { | |||||
} | } | ||||
</script> | </script> | ||||
<style scoped> | |||||
<style scoped lang="scss"> | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | |||||
} | |||||
.delegate { | .delegate { | ||||
width: 96%; | width: 96%; | ||||
margin: 3% 2% 3% 2%; | margin: 3% 2% 3% 2%; | ||||
@@ -1,15 +1,21 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加开户行</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加开户行</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加开户行 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
</div> | |||||
<van-form @submit="goModify" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="goModify" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
<van-field label="省" required :rules="[{ required: true , message:'请输入省' }]" v-model="form.sheng" placeholder="请输入省" input-align="right" label-width="auto"/> | <van-field label="省" required :rules="[{ required: true , message:'请输入省' }]" v-model="form.sheng" placeholder="请输入省" input-align="right" label-width="auto"/> | ||||
@@ -115,7 +121,40 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
@click-right="goAdd()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">开户行列表</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- @click-right="goAdd()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">开户行列表</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
开户行列表 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
@@ -125,6 +131,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,15 +1,20 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加收款账户信息</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加收款账户信息</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加收款账户信息 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
</div> | |||||
<div class="main_box" style="margin-bottom: 10px;"> | <div class="main_box" style="margin-bottom: 10px;"> | ||||
<van-field v-model="value" placeholder="粘贴信息,自动拆分收款方、收款账号" @input="changeInform" /> | <van-field v-model="value" placeholder="粘贴信息,自动拆分收款方、收款账号" @input="changeInform" /> | ||||
@@ -244,7 +249,40 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
@click-right="goAdd()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">银农收款账户列表</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- @click-right="goAdd()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">银农收款账户列表</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
银农收款账户列表 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
@@ -128,6 +134,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,15 +1,21 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加付款账户信息</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加付款账户信息</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加付款账户信息 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
</div> | |||||
<van-form @submit="goModify" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="goModify" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<p class="main_title">基础信息</p> | <p class="main_title">基础信息</p> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
@@ -482,7 +488,40 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
@click-right="goAdd()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">银农付款账户列表</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- @click-right="goAdd()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">银农付款账户列表</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
银农付款账户列表 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
@@ -94,7 +100,7 @@ export default { | |||||
}, | }, | ||||
methods: { | methods: { | ||||
goAdd(){ | goAdd(){ | ||||
window.location = 'sunVillagePaymentAccountAdd'; | |||||
window.location = 'paymentAccountAdd'; | |||||
}, | }, | ||||
getList(){ | getList(){ | ||||
setTimeout(() => { | setTimeout(() => { | ||||
@@ -138,6 +144,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,18 +1,23 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加银行卡转账申请</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加银行卡转账申请</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加银行卡转账申请 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goFlow"></div> | |||||
</div> | |||||
<van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<p class="main_title">基础信息</p> | <p class="main_title">基础信息</p> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
@@ -986,7 +991,7 @@ | |||||
this.$set(this.form, "bankTypeList", this.chargeItme); | this.$set(this.form, "bankTypeList", this.chargeItme); | ||||
this.$set(this.form, "accountTypeList", this.chargeItme); | this.$set(this.form, "accountTypeList", this.chargeItme); | ||||
this.$set(this.form, "transferStatusList", this.chargeItme); | this.$set(this.form, "transferStatusList", this.chargeItme); | ||||
updateTransfer(this.form).then(response => { | updateTransfer(this.form).then(response => { | ||||
this.projectForm.outId = this.form.id | this.projectForm.outId = this.form.id | ||||
this.infoForm.transferId = this.form.id | this.infoForm.transferId = this.form.id | ||||
@@ -1239,7 +1244,39 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title_box{ | .main_title_box{ | ||||
display: flex; | display: flex; | ||||
@@ -1,18 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加备付金支出申请</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加备付金支出申请</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加备付金支出申请 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goFlow"></div> | |||||
</div> | |||||
<van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<p class="main_title">基础信息</p> | <p class="main_title">基础信息</p> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
@@ -2304,7 +2311,39 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,18 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加汇票支出申请</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加汇票支出申请</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加汇票支出申请 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goFlow"></div> | |||||
</div> | |||||
<van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<p class="main_title">基础信息</p> | <p class="main_title">基础信息</p> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
@@ -2352,7 +2359,39 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,18 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加信用卡还款申请</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加信用卡还款申请</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加信用卡还款申请 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goFlow"></div> | |||||
</div> | |||||
<van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="getChange" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<p class="main_title">基础信息</p> | <p class="main_title">基础信息</p> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
@@ -1882,7 +1889,39 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title_box{ | .main_title_box{ | ||||
display: flex; | display: flex; | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack()" | |||||
@click-right="goAdd()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">银行卡转账申请列表</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack()"--> | |||||
<!-- @click-right="goAdd()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">银行卡转账申请列表</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
银行卡转账申请列表 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd" v-show="showBtn"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
@@ -68,13 +74,17 @@ export default { | |||||
pageSize:10, | pageSize:10, | ||||
transferType:"1", | transferType:"1", | ||||
}, | }, | ||||
form:{} | |||||
form:{}, | |||||
showBtn:true, | |||||
}; | }; | ||||
}, | }, | ||||
created() { | created() { | ||||
this.getDicts("audit_status").then((response) => { | this.getDicts("audit_status").then((response) => { | ||||
this.auditStatusOptions = response.data; | this.auditStatusOptions = response.data; | ||||
}); | }); | ||||
if (this.$route.query.type == 'code'){ | |||||
this.showBtn = false; | |||||
} | |||||
}, | }, | ||||
methods: { | methods: { | ||||
//金额千分符 会在整数后添加两个0 | //金额千分符 会在整数后添加两个0 | ||||
@@ -175,6 +185,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
@click-right="goAdd()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">备付金支出申请列表</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- @click-right="goAdd()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">备付金支出申请列表</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
备付金支出申请列表 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
@@ -171,6 +177,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
@click-right="goAdd()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">汇票支出申请列表</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- @click-right="goAdd()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">汇票支出申请列表</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
汇票支出申请列表 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
@@ -170,6 +176,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack" | |||||
@click-right="goAdd()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">信用卡还款申请列表</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack"--> | |||||
<!-- @click-right="goAdd()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">信用卡还款申请列表</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
信用卡还款申请列表 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
@@ -173,6 +179,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,15 +1,21 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加收款账户信息</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加收款账户信息</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加收款账户信息 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<!-- <div class="add_btn" @click="goAdd"></div>--> | |||||
</div> | |||||
<van-form @submit="goAdd" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="goAdd" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<p class="main_title">基础信息</p> | <p class="main_title">基础信息</p> | ||||
@@ -242,7 +248,40 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,15 +1,21 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加收款账户信息</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加收款账户信息</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加收款账户信息 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<!-- <div class="add_btn" @click="goAdd"></div>--> | |||||
</div> | |||||
<van-form @submit="goAdd" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | <van-form @submit="goAdd" @failed="getError" :show-error-message="false" scroll-to-error validate-first> | ||||
<p class="main_title">基础信息</p> | <p class="main_title">基础信息</p> | ||||
@@ -242,7 +248,40 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_head.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,19 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
@click-right="goAddLite()" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">宅基地申请</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- @click-right="goAddLite()"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">宅基地申请</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
宅基地申请 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAddLite"></div> | |||||
</div> | |||||
<van-pull-refresh v-model="refreshing" @refresh="getList()"> | <van-pull-refresh v-model="refreshing" @refresh="getList()"> | ||||
<van-list | <van-list | ||||
@@ -215,6 +221,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,18 +1,25 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<div id="info" style="display: none"></div> | <div id="info" style="display: none"></div> | ||||
<van-nav-bar | |||||
:title="(proposerStatus == 3 ? '添加' : '') + '用地建房申请'" | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="goBack()" | |||||
z-index="998" | |||||
> | |||||
<template #right> | |||||
<van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- :title="(proposerStatus == 3 ? '添加' : '') + '用地建房申请'"--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="goBack()"--> | |||||
<!-- z-index="998"--> | |||||
<!-- >--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="../../../static/images/icon/icon_flow.png" size="20" @click="goFlow"/>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
{{(proposerStatus == 3 ? '添加' : '') + '用地建房申请'}} | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goFlow"></div> | |||||
</div> | |||||
<van-steps :active="active" active-color="#38f" @click-step="onStepClicked"> | <van-steps :active="active" active-color="#38f" @click-step="onStepClicked"> | ||||
<van-step>申请</van-step> | <van-step>申请</van-step> | ||||
<van-step>开工</van-step> | <van-step>开工</van-step> | ||||
@@ -5018,6 +5025,38 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding-bottom: 5%; | padding-bottom: 5%; | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 20PX; | |||||
height: 20PX; | |||||
background: url('../../../../static/images/icon/icon_flow.png') center center no-repeat; | |||||
background-size: 20PX 20PX; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.examine_box{ | .examine_box{ | ||||
background-color: #1D6FE9!important; | background-color: #1D6FE9!important; | ||||
@@ -61,7 +61,7 @@ | |||||
<div class="footer"> | <div class="footer"> | ||||
技术支持:北京农燊高科信息技术有限公司 | 技术支持:北京农燊高科信息技术有限公司 | ||||
</div> | </div> | ||||
<img src="../../assets/images/sunVillage_info/index_btn.png" class="fixed_btn" @click="goCode"> | |||||
<img src="../../assets/images/sunVillage_info/index_btn_green.png" class="fixed_btn" @click="goCode"> | |||||
</div> | </div> | ||||
</template> | </template> | ||||
<script> | <script> | ||||
@@ -155,7 +155,7 @@ | |||||
min-height: 100vh; | min-height: 100vh; | ||||
.head_main{ | .head_main{ | ||||
height: 340px; | height: 340px; | ||||
background: url('../../assets/images/sunVillage_info/index_head.png') no-repeat; | |||||
background: url('../../assets/images/sunVillage_info/index_head_red.png') no-repeat; | |||||
background-size: 100% 100%; | background-size: 100% 100%; | ||||
position: relative; | position: relative; | ||||
.location{ | .location{ | ||||
@@ -197,7 +197,7 @@ | |||||
.icon{ | .icon{ | ||||
width: 100%; | width: 100%; | ||||
height: 100%; | height: 100%; | ||||
background: url('../../assets/images/sunVillage_info/login_head_h.png') no-repeat; | |||||
background: url('../../assets/images/sunVillage_info/login_head_h_green.png') no-repeat; | |||||
background-size: 100% 100%; | background-size: 100% 100%; | ||||
} | } | ||||
} | } | ||||
@@ -123,7 +123,7 @@ | |||||
min-height: 100vh; | min-height: 100vh; | ||||
.head_main{ | .head_main{ | ||||
height: 340px; | height: 340px; | ||||
background: url('../../assets/images/sunVillage_info/index_head.png') no-repeat; | |||||
background: url('../../assets/images/sunVillage_info/index_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | background-size: 100% 100%; | ||||
position: relative; | position: relative; | ||||
.location{ | .location{ | ||||
@@ -135,10 +135,10 @@ | |||||
display: flex; | display: flex; | ||||
.address{ | .address{ | ||||
padding:0 18px; | padding:0 18px; | ||||
background:rgba(255,255,255,0.75); | |||||
background:rgba(132,131,147,0.75); | |||||
border-radius: 42px; | border-radius: 42px; | ||||
font-size: 28px; | font-size: 28px; | ||||
color: #3f3d56; | |||||
color: #ffffff; | |||||
margin-right: 12px; | margin-right: 12px; | ||||
display: flex; | display: flex; | ||||
align-items:center; | align-items:center; | ||||
@@ -146,7 +146,7 @@ | |||||
display: block; | display: block; | ||||
width: 20px; | width: 20px; | ||||
height: 26px; | height: 26px; | ||||
background: url('../../assets/images/sunVillage_info/index_icon_1.png') no-repeat; | |||||
background: url('../../assets/images/sunVillage_info/index_icon_1_green.png') no-repeat; | |||||
background-size: 100% 100%; | background-size: 100% 100%; | ||||
margin-right: 10px; | margin-right: 10px; | ||||
} | } | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_red.png')})`" | |||||
> | |||||
{{queryParams.otherType=='1'?'合同':queryParams.otherType=='2'?'党务':queryParams.otherType=='3'?'政务':''}}公开 | {{queryParams.otherType=='1'?'合同':queryParams.otherType=='2'?'党务':queryParams.otherType=='3'?'政务':''}}公开 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
<div class="add_btn" @click="goAdd" v-show="showBtn"></div> | <div class="add_btn" @click="goAdd" v-show="showBtn"></div> | ||||
@@ -171,7 +174,7 @@ | |||||
this.$router.push({path: '/sunVillage_info/list_contract_add', query: {type: this.$route.query.typeX}}) | this.$router.push({path: '/sunVillage_info/list_contract_add', query: {type: this.$route.query.typeX}}) | ||||
}, | }, | ||||
goDetail(id){ | goDetail(id){ | ||||
this.$router.push({path:'/sunVillage_info/list_contract_detail',query: {id:id,type:this.$route.query.typeX}}) | |||||
this.$router.push({path:'/sunVillage_info/list_contract_detail',query: {id:id,type:this.$route.query.typeX,showBtn:this.showBtn}}) | |||||
}, | }, | ||||
goEdit(id){ | goEdit(id){ | ||||
this.$router.push({path:'/sunVillage_info/list_contract_edit',query: {id:id,type:this.$route.query.typeX}}) | this.$router.push({path:'/sunVillage_info/list_contract_edit',query: {id:id,type:this.$route.query.typeX}}) | ||||
@@ -98,13 +98,21 @@ | |||||
<img src="../../assets/images/sunVillage_info/addFile.png" width="120" /> | <img src="../../assets/images/sunVillage_info/addFile.png" width="120" /> | ||||
</van-uploader> | </van-uploader> | ||||
</div> | </div> | ||||
<van-field readonly input-align="right" :border="false" > | |||||
<template #label> | |||||
<img src="../../assets/images/sunVillage_info/add_tit_icon_05.png" width="18"> | |||||
<p style="margin-left: 5px;">公开内容</p> | |||||
</template> | |||||
</van-field> | |||||
<vue-html5-editor :content="content" :height="400" @change="updateData" style="margin-top: 10px;"></vue-html5-editor> | |||||
<van-field v-model="form.remark" placeholder="请输入备注" input-align="right" :border="false" > | <van-field v-model="form.remark" placeholder="请输入备注" input-align="right" :border="false" > | ||||
<template #label> | <template #label> | ||||
<img src="../../assets/images/sunVillage_info/add_tit_icon_05.png" width="18"> | <img src="../../assets/images/sunVillage_info/add_tit_icon_05.png" width="18"> | ||||
<p style="margin-left: 5px;">备注</p> | <p style="margin-left: 5px;">备注</p> | ||||
</template> | </template> | ||||
</van-field> | </van-field> | ||||
</div> | </div> | ||||
<div style="margin: 16px auto;width: 50%;"> | <div style="margin: 16px auto;width: 50%;"> | ||||
@@ -124,6 +132,7 @@ | |||||
name: "certificateList", | name: "certificateList", | ||||
data() { | data() { | ||||
return { | return { | ||||
content: '请输入文章内容', | |||||
showBuildTime:false, | showBuildTime:false, | ||||
showPictureType:false, | showPictureType:false, | ||||
form:{ | form:{ | ||||
@@ -160,6 +169,10 @@ | |||||
this.form.otherType = this.$route.query.type; | this.form.otherType = this.$route.query.type; | ||||
}, | }, | ||||
methods: { | methods: { | ||||
updateData(e = ''){ | |||||
this.content = e; | |||||
console.info(e); | |||||
}, | |||||
onSubmit(){ | onSubmit(){ | ||||
var that = this; | var that = this; | ||||
that.form.openFile = that.openFile2.join(',') | that.form.openFile = that.openFile2.join(',') | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_red.png')})`" | |||||
> | |||||
查看{{otherType=='1'?'合同':otherType=='2'?'党务':otherType=='3'?'政务':''}}公开 | 查看{{otherType=='1'?'合同':otherType=='2'?'党务':otherType=='3'?'政务':''}}公开 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
<div class="add_btn"></div> | <div class="add_btn"></div> | ||||
@@ -134,7 +137,8 @@ | |||||
}, | }, | ||||
openFile2:[], | openFile2:[], | ||||
openPic2:[], | openPic2:[], | ||||
otherType:'' | |||||
otherType:'', | |||||
showBtn:true, | |||||
}; | }; | ||||
}, | }, | ||||
created() { | created() { | ||||
@@ -155,6 +159,7 @@ | |||||
this.queryParams.deptId = Cookies.get('deptId'); | this.queryParams.deptId = Cookies.get('deptId'); | ||||
this.queryParams.id = this.$route.query.id; | this.queryParams.id = this.$route.query.id; | ||||
this.otherType = this.$route.query.type; | this.otherType = this.$route.query.type; | ||||
this.showBtn = this.$route.query.showBtn=='false'?false:true; | |||||
this.getDetail(); | this.getDetail(); | ||||
}, | }, | ||||
methods: { | methods: { | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_red.png')})`" | |||||
> | |||||
财务公开榜 | 财务公开榜 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
<div class="add_btn" v-show="showBtn" @click="goAdd"></div> | <div class="add_btn" v-show="showBtn" @click="goAdd"></div> | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_red.png')})`" | |||||
> | |||||
重大事项公开榜 | 重大事项公开榜 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
<div class="add_btn" @click="goAdd" v-show="showBtn"></div> | <div class="add_btn" @click="goAdd" v-show="showBtn"></div> | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_red.png')})`" | |||||
> | |||||
一张图公开 | 一张图公开 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
<div class="add_btn" @click="goAdd" v-show="showBtn"></div> | <div class="add_btn" @click="goAdd" v-show="showBtn"></div> | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_red.png')})`" | |||||
> | |||||
零工公开榜 | 零工公开榜 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
<div class="add_btn" @click="goAdd" v-show="showBtn"></div> | <div class="add_btn" @click="goAdd" v-show="showBtn"></div> | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_green.png')})`" | |||||
> | |||||
投票 | 投票 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
<div class="add_btn" @click="goAdd" v-show="showBtn"></div> | <div class="add_btn" @click="goAdd" v-show="showBtn"></div> | ||||
@@ -17,7 +20,7 @@ | |||||
:title="item.subjectName" | :title="item.subjectName" | ||||
:label="'时间:'+item.startTime.substr(0,10)+' - '+item.endTime.substr(0,10)" | :label="'时间:'+item.startTime.substr(0,10)+' - '+item.endTime.substr(0,10)" | ||||
center | center | ||||
:to="{name: item.isVote || showBtn ? 'sunVillageInfoListVoteDetail':'sunVillageInfoListVoteForm',query:{id:item.id}}" | |||||
:to="{name: item.isVote || showBtn ? 'sunVillageInfoListVoteDetail':'sunVillageInfoListVoteForm',query:{id:item.id,type:show?'':'code'}}" | |||||
> | > | ||||
<template #right-icon> | <template #right-icon> | ||||
<p style="color: #1D6FE9">投票</p> | <p style="color: #1D6FE9">投票</p> | ||||
@@ -1,6 +1,9 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="header_main"> | |||||
<div | |||||
class="header_main" | |||||
:style="`background-image:url(${require(showBtn?'@/assets/images/sunVillage_info/list_head.png':'@/assets/images/sunVillage_info/list_head_green.png')})`" | |||||
> | |||||
投票 | 投票 | ||||
<div class="return_btn" @click="onClickLeft"></div> | <div class="return_btn" @click="onClickLeft"></div> | ||||
</div> | </div> | ||||
@@ -103,7 +106,7 @@ | |||||
projectIndex:'', | projectIndex:'', | ||||
showBtn:true, | showBtn:true, | ||||
form:{}, | form:{}, | ||||
radio:[] | |||||
radio:[], | |||||
}; | }; | ||||
}, | }, | ||||
created() { | created() { | ||||
@@ -46,6 +46,7 @@ | |||||
block | block | ||||
type="info" | type="info" | ||||
native-type="submit" | native-type="submit" | ||||
color="linear-gradient(to right, #2ec8c4, #30c271)" | |||||
:loading="loading" | :loading="loading" | ||||
>验证</van-button> | >验证</van-button> | ||||
</div> | </div> | ||||
@@ -151,7 +152,7 @@ | |||||
} | } | ||||
.focus_head{ | .focus_head{ | ||||
height: 450px; | height: 450px; | ||||
background: url('../../assets/images/sunVillage_info/login_head_code.png') no-repeat; | |||||
background: url('../../assets/images/sunVillage_info/login_head_code_green.png') no-repeat; | |||||
background-size: 100% 100%; | background-size: 100% 100%; | ||||
} | } | ||||
@@ -175,7 +176,7 @@ | |||||
.login_from{ | .login_from{ | ||||
width: 676px; | width: 676px; | ||||
height: 350px; | height: 350px; | ||||
background: url('../../assets/images/sunVillage_info/login_main.png') no-repeat; | |||||
background: url('../../assets/images/sunVillage_info/login_main_green.png') no-repeat; | |||||
background-size: 100% 100%; | background-size: 100% 100%; | ||||
margin: 50px auto 0; | margin: 50px auto 0; | ||||
padding:60px 50px 0; | padding:60px 50px 0; | ||||
@@ -256,13 +257,10 @@ | |||||
padding-top: 80px; | padding-top: 80px; | ||||
.btn{ | .btn{ | ||||
width: 315px; | width: 315px; | ||||
height: 70px; | |||||
background:url('../../assets/images/sunVillage_info/login_btn.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
height: 80px; | |||||
margin:0 auto; | margin:0 auto; | ||||
font-size: 32px; | font-size: 32px; | ||||
color: #fff; | color: #fff; | ||||
line-height: 70px; | |||||
text-align: center; | text-align: center; | ||||
border: none; | border: none; | ||||
} | } | ||||
@@ -1,15 +1,22 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">添加有偿退出</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">添加有偿退出</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
添加有偿退出 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<!-- <div class="add_btn" @click="goAdd"></div>--> | |||||
</div> | |||||
<p class="main_title">申请人基本信息</p> | <p class="main_title">申请人基本信息</p> | ||||
<van-form ref="_Form"> | <van-form ref="_Form"> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
@@ -613,7 +620,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,15 +1,22 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">有偿退出</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">有偿退出</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
有偿退出 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<!-- <div class="add_btn" @click="goAdd"></div>--> | |||||
</div> | |||||
<div class="main_box"> | <div class="main_box"> | ||||
<!-- <van-field v-model="circulation.sqrxm" label="申请人姓名" placeholder="申请人姓名" input-align="right" label-width="auto" :rules="[{ required: true }]" required/>--> | <!-- <van-field v-model="circulation.sqrxm" label="申请人姓名" placeholder="申请人姓名" input-align="right" label-width="auto" :rules="[{ required: true }]" required/>--> | ||||
<van-field readonly v-model="circulation.sqrxm" label="申请人姓名" placeholder="申请人姓名" input-align="right" label-width="auto" :rules="[{ required: true }]" required @input="remoteTransfereeMethod" /> | <van-field readonly v-model="circulation.sqrxm" label="申请人姓名" placeholder="申请人姓名" input-align="right" label-width="auto" :rules="[{ required: true }]" required @input="remoteTransfereeMethod" /> | ||||
@@ -761,7 +768,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -1,19 +1,26 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
@click-right="goAdd" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">有偿退出</p> | |||||
</template> | |||||
<template #right> | |||||
<van-icon name="add" size="18" /> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- @click-right="goAdd"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">有偿退出</p>--> | |||||
<!-- </template>--> | |||||
<!-- <template #right>--> | |||||
<!-- <van-icon name="add" size="18" />--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
有偿退出 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<div class="add_btn" @click="goAdd"></div> | |||||
</div> | |||||
<van-list | <van-list | ||||
v-model="loading" | v-model="loading" | ||||
:finished="finished" | :finished="finished" | ||||
@@ -155,6 +162,40 @@ export default { | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | |||||
/deep/.van-list{ | |||||
padding: 0.2rem 3%; | padding: 0.2rem 3%; | ||||
} | } | ||||
/deep/.van-cell__title{ | /deep/.van-cell__title{ | ||||
@@ -1,15 +1,22 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | |||||
left-arrow | |||||
fixed | |||||
placeholder | |||||
@click-left="$router.back(-1)" | |||||
> | |||||
<template #title> | |||||
<p style="font-weight: bold;">修改有偿退出</p> | |||||
</template> | |||||
</van-nav-bar> | |||||
<!-- <van-nav-bar--> | |||||
<!-- left-arrow--> | |||||
<!-- fixed--> | |||||
<!-- placeholder--> | |||||
<!-- @click-left="$router.back(-1)"--> | |||||
<!-- >--> | |||||
<!-- <template #title>--> | |||||
<!-- <p style="font-weight: bold;">修改有偿退出</p>--> | |||||
<!-- </template>--> | |||||
<!-- </van-nav-bar>--> | |||||
<div class="header_main"> | |||||
修改有偿退出 | |||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<!-- <div class="add_btn" @click="goAdd"></div>--> | |||||
</div> | |||||
<van-form ref="_Form"> | <van-form ref="_Form"> | ||||
<div class="main_box"> | <div class="main_box"> | ||||
<!-- <van-field v-model="circulation.sqrxm" label="申请人姓名" placeholder="申请人姓名" input-align="right" label-width="auto" :rules="[{ required: true }]" required/>--> | <!-- <van-field v-model="circulation.sqrxm" label="申请人姓名" placeholder="申请人姓名" input-align="right" label-width="auto" :rules="[{ required: true }]" required/>--> | ||||
@@ -542,7 +549,40 @@ | |||||
<style scoped lang="scss"> | <style scoped lang="scss"> | ||||
.app-container { | .app-container { | ||||
padding: 2% 0; | |||||
padding-bottom: 2%; | |||||
.header_main{ | |||||
height: 116px; | |||||
background: url('../../../assets/images/sunVillage_info/list_head_green.png') no-repeat; | |||||
background-size: 100% 100%; | |||||
position: fixed; | |||||
top: 0; | |||||
left: 0; | |||||
width: 100%; | |||||
font-size: 36px; | |||||
line-height: 116px; | |||||
text-align: center; | |||||
color: #fff; | |||||
position: relative; | |||||
margin-bottom: 2%; | |||||
.return_btn{ | |||||
width: 24px; | |||||
height: 43.2px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat; | |||||
background-size: 20px 36px; | |||||
position: absolute; | |||||
left: 38px; | |||||
top: 36px; | |||||
} | |||||
.add_btn{ | |||||
width: 56.4px; | |||||
height: 40.8px; | |||||
background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat; | |||||
background-size: 47px 34px; | |||||
position: absolute; | |||||
right: 38px; | |||||
top: 36px; | |||||
} | |||||
} | |||||
} | } | ||||
.main_title{ | .main_title{ | ||||
font-size: 0.4rem; | font-size: 0.4rem; | ||||
@@ -40,7 +40,7 @@ export default { | |||||
methods: { | methods: { | ||||
loginOut(){ | loginOut(){ | ||||
logout().then(response => { | logout().then(response => { | ||||
location.reload(true); | |||||
window.location.href = '/login'; | |||||
}); | }); | ||||
}, | }, | ||||
getInfo(){ | getInfo(){ | ||||