Commit c24160aa authored by xulili's avatar xulili

Merge remote-tracking branch 'origin/master'

parents 001e5ec3 15137c00
...@@ -10,7 +10,7 @@ module.exports = { ...@@ -10,7 +10,7 @@ module.exports = {
rules: { rules: {
// 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', // 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', // 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 'no-unused-vars': 'off', 'no-unused-vars': 'off',
// "quotes": [1, "single"],//引号类型 `` "" '' // "quotes": [1, "single"],//引号类型 `` "" ''
}, },
parserOptions: { parserOptions: {
......
...@@ -5,7 +5,7 @@ import request from '@/utils/request' ...@@ -5,7 +5,7 @@ import request from '@/utils/request'
//通讯录管理---表格---获取全部人员 //通讯录管理---表格---获取全部人员
export function getAllMemberList(data) { export function getAllMemberList(data) {
return request({ return request({
url: '/admin/auth/addressbook/getUserAll', url: '/admin/auth/addressbook/clerk/getAll',
method: 'get', method: 'get',
params: data params: data
}) })
...@@ -13,7 +13,7 @@ export function getAllMemberList(data) { ...@@ -13,7 +13,7 @@ export function getAllMemberList(data) {
// 获取未分组人员 // 获取未分组人员
export function getNoGroupMember(data) { export function getNoGroupMember(data) {
return request({ return request({
url: '/admin/auth/addressbook/getUserUnselected', url: '/admin/auth/addressbook/clerk/getArrangeNot',
method: 'get', method: 'get',
params: data params: data
}) })
...@@ -21,7 +21,7 @@ export function getNoGroupMember(data) { ...@@ -21,7 +21,7 @@ export function getNoGroupMember(data) {
// 获取柜组用户 // 获取柜组用户
export function getGroupById(data) { export function getGroupById(data) {
return request({ return request({
url: '/admin/auth/addressbook/getUserByShopId', url: '/admin/auth/addressbook/orgnization/getClerkById',
method: 'get', method: 'get',
params: data params: data
}) })
...@@ -37,13 +37,13 @@ export function getMemberById(data) { ...@@ -37,13 +37,13 @@ export function getMemberById(data) {
//通讯录管理---组织架构 //通讯录管理---组织架构
export function getOrgTree() { export function getOrgTree() {
return request({ return request({
url: '/admin/auth/addressbook/addressBookPage', url: '/admin/auth/addressbook/orgnization/getAll',
method: 'get', method: 'get',
}) })
} }
export function getHistoryList(data) { export function getHistoryList(data) {
return request({ return request({
url: 'admin/auth/addressbook/synchronization', url: 'admin/auth/addressbook/clerk/synchronization',
method: 'get', method: 'get',
params:data params:data
}) })
...@@ -57,7 +57,6 @@ export function getHistoryList(data) { ...@@ -57,7 +57,6 @@ export function getHistoryList(data) {
} }
// 获取移动分组 // 获取移动分组
// /admin/auth/addressbook/synchronization
export function getGroup() { export function getGroup() {
return request({ return request({
url: '/admin/auth/addressbook/selectGroupPage', url: '/admin/auth/addressbook/selectGroupPage',
...@@ -77,7 +76,16 @@ export function getHistoryList(data) { ...@@ -77,7 +76,16 @@ export function getHistoryList(data) {
// 移动人员 // 移动人员
export function moveMember(data) { export function moveMember(data) {
return request({ return request({
url: 'admin/auth/addressbook/updateStallClerkByUserId', url: 'admin/auth/addressbook/clerk/moveTo',
method: 'put',
params:data
})
}
// 设置管理员||取消管理员
export function changeRole(data) {
return request({
url: 'admin/auth/addressbook/clerk/configManagerById',
method: 'put', method: 'put',
params:data params:data
}) })
...@@ -86,8 +94,26 @@ export function getHistoryList(data) { ...@@ -86,8 +94,26 @@ export function getHistoryList(data) {
// 模糊查询 // 模糊查询
export function search(data) { export function search(data) {
return request({ return request({
url: '/admin/auth/addressbook/getUserByKeyWords', url: '/admin/auth/addressbook/clerk/getByUserIdOrUserName',
method: 'get', method: 'get',
params:data params:data
}) })
} }
// 添加子部门
export function addGroup(data) {
return request({
url: '/admin/auth/addressbook/orgnization/save',
method: 'post',
params:data
})
}
// 删除子部门
export function deleteGroup(data) {
return request({
url: '/admin/auth/addressbook/orgnization/deleteById',
method: 'delete',
params:data
})
}
\ No newline at end of file
import request from '@/utils/request'
import qs from 'qs'
export function ApiStoreGetMainList(inData) {
return request({
url: '/admin/auth/stall/stallPage',
method: 'get',
params: inData
})
}
export function ApiStoreGetStoreDetail(inData) {
return request({
url: '/admin/auth/stall/getById',
method: 'get',
params: inData
})
}
export function ApiStoreAddStore(inData) {
return request({
url: '/admin/auth/stall/save',
method: 'post',
data: qs.stringify(inData)
})
}
export function ApiStoreDelStore(inData) {
return request({
url: `/admin/auth/stall/delete`,
method: 'post',
data: qs.stringify(inData, {arrayFormat: 'repeat'})
})
}
export function ApiStoreGetUnGroupManList(inData) {
return request({
url: '/admin/auth/addressbook/getUserUnselectedList',
method: 'get',
params: inData
})
}
export function ApiStoreEditStore(inData) {
return request({
url: '/admin/auth/stall/update',
method: 'put',
data: qs.stringify(inData)
})
}
export function ApiStoreGetBarList(inData) {
return request({
url: '/admin/auth/shop/shopList',
method: 'get',
params: inData
})
}
export function ApiStoreSearch(inData) {
return request({
url: '/admin/auth/stall/getStallByKeyWords',
method: 'get',
params: inData
})
}
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
</div> </div>
</div> </div>
<!-- 下面 主体 --> <!-- 下面 主体 -->
<div class="d2-theme-container" flex-box="1" flex flex="dir:top"> <div class="d2-theme-container" flex-box="1" flex="dir:top">
<!-- 主体 侧边栏 --> <!-- 主体 侧边栏 -->
<!-- <div <!-- <div
flex-box="0" flex-box="0"
...@@ -101,17 +101,17 @@ export default { ...@@ -101,17 +101,17 @@ export default {
name: 'd2-layout-header-aside', name: 'd2-layout-header-aside',
mixins: [mixinSearch], mixins: [mixinSearch],
components: { components: {
d2MenuSide, // d2MenuSide,
d2MenuHeader, d2MenuHeader,
d2Tabs, // d2Tabs,
d2HeaderFullscreen, d2HeaderFullscreen,
d2HeaderLocales, // d2HeaderLocales,
d2HeaderSearch, // d2HeaderSearch,
d2HeaderSize, // d2HeaderSize,
d2HeaderTheme, // d2HeaderTheme,
d2HeaderUser, d2HeaderUser,
d2HeaderLog, // d2HeaderLog,
d2HeaderColor, // d2HeaderColor,
d2HeaderAlarmNotify d2HeaderAlarmNotify
}, },
data () { data () {
......
This diff is collapsed.
<template>
<div class="ct">
<el-dialog
title="创建子部门"
:visible.sync="addDialog"
width="30%"
:show-close="false"
:close-on-click-modal="false"
>
<div class="config_item">
<label class="config_name">部门名称</label>
<el-input class="config_value" v-model="params.d_name" placeholder="请输入部门名称" />
</div>
<div class="config_item">
<span class="config_name">上级部门</span>
<div>
<div @click="showTreeData" class="config_value father_group">
<span class="father_name_text">{{ paramsForShow.father_name }}</span>
<span :class="showTree ? 'arrow_up' : 'arrow_down'"></span>
</div>
</div>
</div>
<div class="tree_data" v-if="showTree">
<el-tree
ref="tree"
class="tree"
:check-strictly="true"
:data="treeData"
node-key="id"
@node-click="handleNodeClick"
@check-change="checkChange"
>
</el-tree>
</div>
<div class="config_item">
<label class="config_name">店铺编号</label>
<el-input class="config_value" v-model="params.code" placeholder="请输入店铺编号" />
</div>
<div class="tips" v-if="checked">请将表单填写完整</div>
<span slot="footer" class="dialog-footer">
<el-button @click="handleAddCancel" size="small">取 消</el-button>
<el-button type="primary" @click="handleAddFinish" size="small"
>确 定</el-button
>
</span>
</el-dialog>
<div></div>
</div>
</template>
<script>
import { addGroup, getOrgTree } from "@/api/in/mail";
import { log } from "util";
export default {
props: {
addDialog: {
type: Boolean,
default: false
}
},
data() {
return {
treeData: [],
group_name: '',
shop_code: '',
showTree: false,
paramsForShow: {
name: '',
father_name: '',
code: ''
},
params: {
d_name: '',
d_parentId: '',
code: ''
},
checked: false
};
},
created() {
this.getList()
},
methods: {
handleAddCancel() {
this.$emit("handleAddCancel");
},
handleAddFinish() {
if(!this.params.d_name || !this.params.d_parentId || !this.params.code) {
this.checked = true
return
}
addGroup(this.params).then(res=> {
// console.log(res)
})
// console.log(addGroup)
this.$emit("handleAddFinish");
},
handleNodeClick(item, node, self) {
// console.log(item,node,self)
this.params.d_parentId = item.id;
this.paramsForShow.father_name = item.label
},
checkChange(item, node, self) {
},
showTreeData() {
this.showTree = !this.showTree
},
getList() {
getOrgTree().then(res => {
console.log(res.data.organizations)
this.treeData = [res.data.organizations];
}).catch(err => {
console.log(err)
});
}
}
};
</script>
<style scoped>
.tree >>> .is-leaf + .el-checkbox .el-checkbox__inner {
display: inline-block;
}
.tree >>> .el-checkbox .el-checkbox__inner {
display: none;
}
.choose {
padding: 16px;
font-size: 16px;
font-weight: bold;
color: rgba(56, 56, 56, 1);
box-sizing: border-box;
}
.title {
display: flex;
align-items: center;
justify-content: space-between;
/* border-bottom: 1px solid #f8f8f8; */
padding-bottom: 10px;
}
.transfer-footer {
margin-left: 20px;
padding: 6px 5px;
}
.ct >>> .el-dialog__header {
border-bottom: 1px solid #f8f8f8;
}
.ct >>> .el-dialog__body {
padding: 20px 40px;
}
.ct >>> .el-transfer-panel {
width: 250px;
}
.circle {
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 50%;
border: 1px solid rgba(208, 2, 27, 1);
position: relative;
}
.circle >>> .icon {
width: 28px;
height: 28px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.br {
border-top: 1px solid #f8f8f8;
border-bottom: 1px solid #f8f8f8;
padding: 24px 0;
}
.config_item {
display: flex;
flex-direction: row;
align-items: center;
}
.config_name:before {
content: '* ';
color: red;
}
.config_name {
width: 80px;
text-align: center;
margin-right: 10px;
}
.config_value {
width: 230px;
}
.father_group {
margin: 10px 0;
width: 228px;
height: 38px;
border-radius: 4px;
border: 1px solid #DCDFE6;
position: relative;
}
.arrow_down {
width: 0;
height: 0;
border-width: 5px;
border-style: solid;
border-color: #ccc transparent transparent transparent;
position: absolute;
right: 10px;
top: 20px;
}
.arrow_up {
width: 0;
height: 0;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #ccc transparent;
position: absolute;
right: 10px;
top: 15px;
}
.tree_data {
margin-left: 90px;
}
.father_name_text {
line-height: 38px;
padding-left: 15px;
}
.tips {
width: 100%;
text-align: center;
color: red;
margin: 5px 0;
}
</style>
<template>
<div class="ct">
<el-dialog
title="删除子部门"
:visible.sync="deleteDialog"
width="30%"
:show-close="false"
:close-on-click-modal="false"
>
<div v-if="nowNode.children.length > 0 ? true : false">删除"{{nowNode.label}}"请先删除其下所有子部门</div>
<div v-else>部门"{{nowNode.label}}"删除后,该部门下的用户会被分配至“未分组列表”,是否删除?</div>
<span slot="footer" class="dialog-footer">
<el-button @click="handleDeleteCancel" size="small">取 消</el-button>
<el-button v-if="nowNode.children.length > 0 ? false : true" type="primary" @click="handleDeleteFinish" size="small"
>确 定</el-button
>
</span>
</el-dialog>
<div></div>
</div>
</template>
<script>
import { deleteGroup } from "@/api/in/mail";
import { log } from "util";
export default {
props: {
deleteDialog: {
type: Boolean,
default: true
},
nowNode: {
type: Object,
default: {}
}
},
data() {
return {
};
},
created() {
console.log(this.nowNode)
},
methods: {
handleDeleteCancel() {
this.$emit('handleDeleteCancel')
},
handleDeleteFinish() {
deleteGroup({id: this.nowNode.id}).then(res => {
console.log(res)
})
this.$emit('handleDeleteFinish')
}
}
};
</script>
<style scoped>
.tree >>> .is-leaf + .el-checkbox .el-checkbox__inner {
display: inline-block;
}
.tree >>> .el-checkbox .el-checkbox__inner {
display: none;
}
.choose {
padding: 16px;
font-size: 16px;
font-weight: bold;
color: rgba(56, 56, 56, 1);
box-sizing: border-box;
}
.title {
display: flex;
align-items: center;
justify-content: space-between;
/* border-bottom: 1px solid #f8f8f8; */
padding-bottom: 10px;
}
.transfer-footer {
margin-left: 20px;
padding: 6px 5px;
}
.ct >>> .el-dialog__header {
border-bottom: 1px solid #f8f8f8;
}
.ct >>> .el-dialog__body {
padding: 20px 40px;
}
.ct >>> .el-transfer-panel {
width: 250px;
}
.circle {
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 50%;
border: 1px solid rgba(208, 2, 27, 1);
position: relative;
}
.circle >>> .icon {
width: 28px;
height: 28px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.br {
border-top: 1px solid #f8f8f8;
border-bottom: 1px solid #f8f8f8;
padding: 24px 0;
}
</style>
...@@ -102,7 +102,7 @@ export default { ...@@ -102,7 +102,7 @@ export default {
page: { page: {
currentPage: 1, currentPage: 1,
size: 20, size: 20,
total: 100 total: 0
}, },
}; };
}, },
...@@ -115,9 +115,9 @@ export default { ...@@ -115,9 +115,9 @@ export default {
pageNum: 1 pageNum: 1
} }
getHistoryList(params).then(res => { getHistoryList(params).then(res => {
console.log(res,"res"); // console.log(res,"res");
this.main = res.data.list this.main = res.data.pageInfo.list
this.page.total = Number(res.data.total) this.page.total = Number(res.data.pageInfo.total)
}) })
}, },
setListsHeadStyle({ row, column, rowIndex, columnIndex }) { setListsHeadStyle({ row, column, rowIndex, columnIndex }) {
......
...@@ -59,7 +59,6 @@ ...@@ -59,7 +59,6 @@
show-checkbox show-checkbox
:check-strictly="true" :check-strictly="true"
:data="treeData" :data="treeData"
:props="orgData"
node-key="id" node-key="id"
@node-click="handleNodeClick" @node-click="handleNodeClick"
@check-change="checkChange" @check-change="checkChange"
...@@ -78,7 +77,7 @@ ...@@ -78,7 +77,7 @@
</template> </template>
<script> <script>
import { getGroup, moveMember } from "@/api/in/mail"; import { getOrgTree, moveMember } from "@/api/in/mail";
import { log } from "util"; import { log } from "util";
export default { export default {
...@@ -94,11 +93,6 @@ export default { ...@@ -94,11 +93,6 @@ export default {
}, },
data() { data() {
return { return {
orgData: {
label: "name",
children: "adminStallList",
id: "id"
},
treeData: [] treeData: []
}; };
}, },
...@@ -110,10 +104,11 @@ export default { ...@@ -110,10 +104,11 @@ export default {
this.$emit("handleCancel"); this.$emit("handleCancel");
}, },
handleFinish() { handleFinish() {
console.log(this.idList)
let groupId = this.$refs.tree.getCheckedKeys()[0] let groupId = this.$refs.tree.getCheckedKeys()[0]
let data = { let data = {
stallIds: groupId, departmentId: groupId,
userIds: this.idList+',' id: this.idList[0]
} }
moveMember(data).then(res=> { moveMember(data).then(res=> {
this.$emit("handleFinish", false); this.$emit("handleFinish", false);
...@@ -162,14 +157,9 @@ export default { ...@@ -162,14 +157,9 @@ export default {
}, },
getList() { getList() {
getGroup().then(res => { getOrgTree().then(res => {
console.log(res, "移动的数据获取"); console.log(res.data.organizations)
let obj = { this.treeData = [res.data.organizations];
name: "未分组",
id: 0
};
res.data = [obj, ...res.data];
this.treeData = res.data;
}); });
} }
} }
......
...@@ -12,14 +12,21 @@ ...@@ -12,14 +12,21 @@
<span class="circle"><d2-icon-svg name="mail"/></span> <span class="circle"><d2-icon-svg name="mail"/></span>
<span slot="title">通讯录管理</span> <span slot="title">通讯录管理</span>
</el-menu-item> </el-menu-item>
<el-menu-item index="2" @click="handleMenuChange('2')"> <el-menu-item index="2" @click="handleMenuChange('2')">
<span class="circle"><d2-icon-svg name="counters"/></span> <span class="circle"><d2-icon-svg name="counters"/></span>
<span slot="title">柜组管理</span> <span slot="title">柜组管理</span>
</el-menu-item> </el-menu-item>
<el-menu-item index="3" @click="handleMenuChange('3')"> <el-menu-item index="3" @click="handleMenuChange('3')">
<span class="circle"><d2-icon-svg name="store"/></span> <span class="circle"><d2-icon-svg name="store"/></span>
<span slot="title">品牌管理</span> <span slot="title">品牌管理</span>
</el-menu-item> </el-menu-item>
<el-menu-item index="4" @click="handleMenuChange('4')">
<span class="circle"><d2-icon-svg name="store"/></span>
<span slot="title">组织架构管理</span>
</el-menu-item>
</el-menu> </el-menu>
<!-- </div> --> <!-- </div> -->
</div> </div>
...@@ -27,6 +34,8 @@ ...@@ -27,6 +34,8 @@
<mail v-if="index == '1' && isHistoryShow == false" @isShow="contorlHistoryShow"></mail> <mail v-if="index == '1' && isHistoryShow == false" @isShow="contorlHistoryShow"></mail>
<counter v-if="index == '2'"></counter> <counter v-if="index == '2'"></counter>
<store v-if="index == '3'"></store> <store v-if="index == '3'"></store>
<org v-if="index == '4'"></org>
<history v-if="isHistoryShow == true" @isShow="contorlHistoryShow"></history> <history v-if="isHistoryShow == true" @isShow="contorlHistoryShow"></history>
</div> </div>
</d2-container> </d2-container>
...@@ -35,12 +44,14 @@ ...@@ -35,12 +44,14 @@
<script> <script>
import Mail from "./mail"; import Mail from "./mail";
import Store from "./store"; import Store from "./store";
import Org from "./org";
import Counter from "./counter"; import Counter from "./counter";
import History from "./components/history"; import History from "./components/history";
export default { export default {
components: { components: {
Mail, Mail,
Store, Store,
Org,
Counter, Counter,
History History
}, },
......
This diff is collapsed.
This diff is collapsed.
<template> <template>
<div class="main"> <div class="main">
<div class="title">全部品牌( 共5个 )</div> <div class="title">全部品牌( 共{{zcache.page.allItem}}个 )</div>
<!-- 搜索区 --> <!-- 搜索区 -->
<div class="searchs"> <div class="searchs">
<div class="buttons"> <div class="buttons">
...@@ -397,6 +397,7 @@ export default { ...@@ -397,6 +397,7 @@ export default {
}, },
data() { data() {
return { return {
zcache: { zcache: {
status: { status: {
newDialog: false, newDialog: false,
......
...@@ -10,7 +10,8 @@ module.exports = { ...@@ -10,7 +10,8 @@ module.exports = {
rules: { rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-unused-vars': 'off' 'no-unused-vars': 'off',
'no-undef': 'off'
}, },
parserOptions: { parserOptions: {
parser: 'babel-eslint' parser: 'babel-eslint'
......
NdQI4DAtoC9jyfXm
\ No newline at end of file
File added
NdQI4DAtoC9jyfXm
\ No newline at end of file
.main[data-v-f3bda6d2]{background-color:#fff;width:100%;height:100%;display:flex;flex-direction:column;justify-content:start}.lists[data-v-f3bda6d2]{height:auto;min-height:100%;padding:.125rem .375rem;display:flex;flex-direction:column;justify-content:flex-start}.list[data-v-f3bda6d2]{height:4.375rem;box-shadow:0 .0625rem .125rem 0 #bbb;margin:.1875rem 0;padding:0 .375rem;border-radius:.1875rem;display:flex;flex-direction:row;justify-content:flex-start;align-items:center}.list-logo[data-v-f3bda6d2]{width:3.125rem;height:3.125rem;border-radius:.1875rem}.list-infos[data-v-f3bda6d2]{width:100;height:3.125rem;padding-left:.375rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.list-info-title[data-v-f3bda6d2]{width:100%;height:.5625rem;font-size:.5rem;font-weight:700;line-height:.5625rem}.list-info-dsc[data-v-f3bda6d2]{margin-top:.1875rem;width:100%;height:.5rem;font-size:.375rem;font-weight:400;line-height:.5625rem}.menus[data-v-f3bda6d2]{border-top:1px solid #c2c2c2;position:fixed;bottom:0;left:0;width:100%;height:1.5625rem;background-color:#fff;display:flex;flex-direction:row;justify-content:start;align-items:center}.menu[data-v-f3bda6d2]{height:1.5625rem;width:50%;line-height:1.5625rem;text-align:center;font-size:.4375rem;color:#000}.activeMenu[data-v-f3bda6d2]{color:#f08080}.testButton[data-v-f3bda6d2]{border:1px solid grey;width:4.375rem;font-size:.4375rem}*{margin:0;padding:0;-webkit-overflow-scrolling:touch;overflow-scrolling:touch;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased}*,input,select,textarea{font-family:PingFangSC-Regular,Microsoft YaHei,lucida grande,lucida sans unicode,lucida,helvetica,Hiragino Sans GB,WenQuanYi Micro Hei,sans-serif}body,html{width:100%;height:100%}li,ul{list-style:none}a{text-decoration:none}::-webkit-input-placeholder{color:#fff;font-family:PingFangSC-Regular,Microsoft YaHei,lucida grande,lucida sans unicode,lucida,helvetica,Hiragino Sans GB,WenQuanYi Micro Hei,sans-serif;font-weight:400}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#bbb}.searchText::-webkit-input-placeholder{font-family:iconfont}h1,h2,h3,h4,h5,h6{line-height:1.2}p{margin:0;padding:0}.fr{float:right}.fl{float:left}.alignc{text-align:center}.alignr{text-align:right}input:focus{outline:none}#app{width:100%;height:100%}
\ No newline at end of file
.main[data-v-57545a56]{background-color:#fff;width:100%;height:100%;justify-content:start}.lists[data-v-57545a56],.main[data-v-57545a56]{display:flex;flex-direction:column;overflow:scroll}.lists[data-v-57545a56]{height:auto;padding:.125rem .375rem;padding-bottom:1.25rem;justify-content:flex-start;align-items:flex-start}.list[data-v-57545a56]{height:4.375rem;box-shadow:0 .0625rem .125rem 0 #bbb;margin:.1875rem 0;padding:0 .375rem;border-radius:.1875rem;display:flex;flex-direction:row;justify-content:flex-start;align-items:center}.list-logo[data-v-57545a56]{width:3.125rem;height:3.125rem;border-radius:.1875rem}.list-infos[data-v-57545a56]{width:100;height:3.125rem;padding-left:.375rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.list-info-title[data-v-57545a56]{width:100%;height:.5625rem;font-size:.5rem;font-weight:700;line-height:.5625rem}.list-info-dsc[data-v-57545a56]{margin-top:.1875rem;width:100%;height:.5rem;font-size:.375rem;font-weight:400;line-height:.5625rem}.menus[data-v-57545a56]{border-top:1px solid #c2c2c2;position:fixed;bottom:0;left:0;width:100%;height:1.5625rem;background-color:#fff;display:flex;flex-direction:row;justify-content:start;align-items:center}.menu[data-v-57545a56]{height:1.5625rem;width:50%;line-height:1.5625rem;text-align:center;font-size:.4375rem;color:#000}.activeMenu[data-v-57545a56]{color:#f08080}.testButton[data-v-57545a56]{border:1px solid red;width:auto;font-size:.4375rem;margin-top:.125rem;padding-bottom:.125rem}.fkwindow[data-v-57545a56]{border:1px solid #32cd32;padding:.125rem;height:3.125rem;width:100%;overflow:auto;font-size:.4375rem;word-wrap:break-word}*{margin:0;padding:0;-webkit-overflow-scrolling:touch;overflow-scrolling:touch;box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased}*,input,select,textarea{font-family:PingFangSC-Regular,Microsoft YaHei,lucida grande,lucida sans unicode,lucida,helvetica,Hiragino Sans GB,WenQuanYi Micro Hei,sans-serif}body,html{width:100%;height:100%}li,ul{list-style:none}a{text-decoration:none}::-webkit-input-placeholder{color:#fff;font-family:PingFangSC-Regular,Microsoft YaHei,lucida grande,lucida sans unicode,lucida,helvetica,Hiragino Sans GB,WenQuanYi Micro Hei,sans-serif;font-weight:400}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#bbb}.searchText::-webkit-input-placeholder{font-family:iconfont}h1,h2,h3,h4,h5,h6{line-height:1.2}p{margin:0;padding:0}.fr{float:right}.fl{float:left}.alignc{text-align:center}.alignr{text-align:right}input:focus{outline:none}#app{width:100%;height:100%}
\ No newline at end of file
.container[data-v-75a0f99a]{height:auto;background-color:#f8f8f8;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.title[data-v-75a0f99a]{background:#f8f8f8;display:flex;justify-content:space-between;align-items:center}.fg[data-v-75a0f99a],.title[data-v-75a0f99a]{height:1.375rem;padding:0 .5rem;font-size:.375rem;color:#2d476a}.fg[data-v-75a0f99a]{line-height:1.375rem}.icon[data-v-75a0f99a]{font-weight:800}.active[data-v-75a0f99a]{background-color:#fff;padding:.375rem .375rem 0 .375rem;box-shadow:0 .0625rem .125rem 0 #ddd}.list[data-v-75a0f99a]{height:2.9375rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:.4375rem}.list3[data-v-75a0f99a]{border-bottom:none;margin-bottom:0}.left[data-v-75a0f99a],.right[data-v-75a0f99a]{height:2.5rem}.left[data-v-75a0f99a]{width:2.5rem;background:#f8f8f8}.right[data-v-75a0f99a]{width:76%;padding-left:.3125rem;background-color:#fff}h3[data-v-75a0f99a]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-75a0f99a]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}
\ No newline at end of file
.lists[data-v-b0986c0e]{padding:.125rem .5rem .625rem .5rem}.list[data-v-b0986c0e]{padding:.375rem 0;display:flex;flex-direction:row;justify-content:start;align-items:center;border-bottom:1px solid #eee}.list-logos[data-v-b0986c0e]{width:2.5rem;height:2.5rem;background-color:#f8f8f8;display:flex;flex-direction:row;justify-content:center;align-items:center}.list-logo[data-v-b0986c0e]{width:1.75rem;height:1.75rem}.list-infos[data-v-b0986c0e]{width:7.84375rem;height:2.5rem;display:flex;flex-direction:column;justify-content:center;align-items:start;margin-left:.375rem}.list-title[data-v-b0986c0e]{font-size:.4375rem;height:.5rem;line-height:.5rem;font-weight:700;color:#2d476a;width:100%;text-align:left;margin-bottom:.25rem}.list-dsc[data-v-b0986c0e]{font-size:.375rem;height:.4375rem;line-height:.4375rem;font-weight:400;color:#2d476a;width:100%;text-align:left;overflow:auto} .lists[data-v-695dca3a]{padding:.125rem .5rem .625rem .5rem}.list[data-v-695dca3a]{padding:.375rem 0;display:flex;flex-direction:row;justify-content:start;align-items:center;border-bottom:1px solid #eee}.list-logos[data-v-695dca3a]{width:2.5rem;height:2.5rem;background-color:#f8f8f8;display:flex;flex-direction:row;justify-content:center;align-items:center}.list-logo[data-v-695dca3a]{width:1.75rem;height:1.75rem}.list-infos[data-v-695dca3a]{width:7.84375rem;height:2.5rem;display:flex;flex-direction:column;justify-content:center;align-items:start;margin-left:.375rem}.list-title[data-v-695dca3a]{font-size:.4375rem;height:.5rem;line-height:.5rem;font-weight:700;color:#2d476a;width:100%;text-align:left;margin-bottom:.25rem}.list-dsc[data-v-695dca3a]{font-size:.375rem;height:.4375rem;line-height:.4375rem;font-weight:400;color:#2d476a;width:100%;text-align:left;overflow:auto}
\ No newline at end of file \ No newline at end of file
.container[data-v-50c5b450] .van-tabs__wrap,.van-tabs__wrap--scrollable[data-v-50c5b450]{height:1.25rem}.container[data-v-50c5b450] .van-tab,.van-ellipsis[data-v-50c5b450],.van-tab--active[data-v-50c5b450]{line-height:1.25rem}.tab[data-v-50c5b450]{box-shadow:0 1px .09375rem 0 #ddd}.content[data-v-50c5b450] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a;line-height:1.375rem}.custom-title[data-v-50c5b450]{margin-left:.375rem;font-size:.5rem;font-weight:700;color:#2d476a}.content img[data-v-50c5b450]{width:1.375rem;height:1.375rem;border-radius:50%;vertical-align:middle}.tab[data-v-50c5b450] .van-tabs__nav--card .van-tab{border-right:none}.tab[data-v-50c5b450] .van-tab.van-tab--active{background-color:#75b2fd}.tab[data-v-50c5b450] .van-tabs__nav--card{margin:0;border:none;height:1.25rem}.list[data-v-50c5b450] .van-icon,.van-icon-notes-o[data-v-50c5b450]{color:#2d476a}.list[data-v-50c5b450]{height:14.65625rem;background:#fff;margin-top:.375rem}.money[data-v-50c5b450]{width:3.75rem;height:1rem;line-height:1rem;background:#f8f8f8;border-radius:.5rem;text-align:center;font-size:.5625rem;font-weight:700;color:#d0021b;margin:0 auto;margin-top:.25rem}.detail[data-v-50c5b450]{font-size:.3125rem;color:#75b2fd;margin-top:.25rem}.top p[data-v-50c5b450]{color:#2d476a;font-size:.375rem}.top img[data-v-50c5b450]{width:1rem;height:1rem}.container[data-v-50c5b450]{height:auto;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.top[data-v-50c5b450]{height:5rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;padding:.75rem;display:flex}.left[data-v-50c5b450],.right[data-v-50c5b450]{flex:1;width:100%;text-align:center}.right[data-v-50c5b450]{border-left:1px solid #eee}.main-menuBar[data-v-50c5b450]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-50c5b450]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-50c5b450]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-50c5b450]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-50c5b450]{color:#4377bc}
\ No newline at end of file
.jpsl[data-v-053c11b2] .van-cell:not(:last-child):after{display:none}.price[data-v-053c11b2]{width:2.75rem;height:1.125rem;line-height:1.125rem;background:#f8f8f8;float:right;margin-top:.375rem;border-radius:.3125rem;color:rgba(45,71,106,.6);padding:0}.nop[data-v-053c11b2]{padding:0}.t-l[data-v-053c11b2]{width:3.75rem}.t-r[data-v-053c11b2]{width:70%}.type[data-v-053c11b2]{padding:.4375rem;display:flex;justify-content:space-between;font-size:.4375rem}h3[data-v-053c11b2]{font-size:.4375rem;color:#d0021b;margin-top:.5625rem}.container[data-v-053c11b2]{height:100%;background-color:#f8f8f8;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.name[data-v-053c11b2]{font-size:.4375rem;font-weight:700;color:#2d476a;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.good[data-v-053c11b2]{height:3.375rem;border-bottom:1px solid #eee;width:100%;padding:.375rem 0;display:flex;justify-content:space-between}.list[data-v-053c11b2]{padding:0 .5rem;box-sizing:border-box;background-color:#fff;box-shadow:0 1px .09375rem 0 #ddd}.center[data-v-053c11b2],.left[data-v-053c11b2],.right[data-v-053c11b2]{height:2.5rem}.left[data-v-053c11b2]{width:2.5rem;border-radius:.125rem}.left img[data-v-053c11b2]{width:100%}.center[data-v-053c11b2]{width:70%}.phone[data-v-053c11b2]{float:left}.option[data-v-053c11b2]{margin-top:.3125rem}.option[data-v-053c11b2] .van-field__control{text-align:right}.nob[data-v-053c11b2] .van-cell:not(:last-child):after{border:none}.price[data-v-053c11b2] .van-field__control{text-align:center}.creat[data-v-053c11b2]{width:96%;height:1.25rem;background:#75b2fd;border-radius:.3125rem;text-align:center;line-height:1.25rem;font-size:.5rem;font-weight:700;color:#fff;margin-left:2%;position:absolute;bottom:.5rem}
\ No newline at end of file
.container[data-v-7391f5ed]{min-height:100%;display:flex;flex-direction:column;justify-content:flex-start;height:auto}.container[data-v-7391f5ed] .van-tabs__wrap,.van-tabs__wrap--scrollable[data-v-7391f5ed]{height:1.25rem}.container[data-v-7391f5ed] .van-tab,.van-ellipsis[data-v-7391f5ed],.van-tab--active[data-v-7391f5ed]{line-height:1.25rem}.content[data-v-7391f5ed] .van-icon-arrow:before{margin-top:.3125rem;color:#2d476a}.content[data-v-7391f5ed] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a;line-height:1.375rem}.custom-title[data-v-7391f5ed]{margin-left:.375rem;font-size:.5rem;font-weight:700;color:#2d476a}.content img[data-v-7391f5ed]{width:1.375rem;height:1.375rem;border-radius:50%;vertical-align:middle}.tab[data-v-7391f5ed] .van-tabs__nav--card .van-tab{border-right:none}.tab[data-v-7391f5ed] .van-tab.van-tab--active{background-color:#75b2fd}.tab[data-v-7391f5ed] .van-tabs__nav--card{margin:0;border:none;height:1.25rem}.tab[data-v-7391f5ed] .van-tabs__nav,.van-tabs__nav--card[data-v-7391f5ed]{margin:0}.main-menuBar[data-v-7391f5ed]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-7391f5ed]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-7391f5ed]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-7391f5ed]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-7391f5ed]{color:#4377bc}
\ No newline at end of file
.fr[data-v-560ddab0] .van-icon-arrow-down:before{margin-top:.09375rem}.content[data-v-560ddab0] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a;line-height:1.375rem}.container[data-v-560ddab0]{background-color:#f8f8f8;display:flex;flex-direction:column;justify-content:center;align-items:start}.sx[data-v-560ddab0]{width:1.625rem;height:.625rem;border-radius:.0625rem;display:flex;justify-content:center;border:1px solid #fff;font-size:.3125rem;font-weight:500;color:#fff;text-align:center}.list[data-v-560ddab0]{width:100%;display:flex}.info[data-v-560ddab0]{display:inline-block;margin-left:.375rem}.person[data-v-560ddab0]{flex:1;height:2.25rem;background:#4377bc;width:100%;padding:.375rem .5rem;display:flex;justify-content:space-between;align-items:center}.pic[data-v-560ddab0]{width:1.5rem;height:1.5rem}.pic img[data-v-560ddab0]{width:100%;border-radius:50%}.name[data-v-560ddab0]{font-size:.4375rem;font-weight:700;color:#fff;margin-right:5.46875rem}.title[data-v-560ddab0]{height:1.375rem;line-height:1.375rem;padding-left:.5rem;font-size:.375rem;font-weight:400;color:#2d476a}.content img[data-v-560ddab0]{width:1.375rem;height:1.375rem;border-radius:50%} .fr[data-v-7ed4382e] .van-icon-arrow-down:before{margin-top:.09375rem}.content[data-v-7ed4382e] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a;line-height:1.375rem}.container[data-v-7ed4382e]{background-color:#f8f8f8;display:flex;flex-direction:column;justify-content:center;align-items:start}.sx[data-v-7ed4382e]{width:1.625rem;height:.625rem;border-radius:.0625rem;display:flex;justify-content:center;border:1px solid #fff;font-size:.3125rem;font-weight:500;color:#fff;text-align:center}.list[data-v-7ed4382e]{width:100%;display:flex}.info[data-v-7ed4382e]{display:inline-block;margin-left:.375rem}.person[data-v-7ed4382e]{flex:1;height:2.25rem;background:#4377bc;width:100%;padding:.375rem .5rem;display:flex;justify-content:space-between;align-items:center}.pic[data-v-7ed4382e]{width:1.5rem;height:1.5rem}.pic img[data-v-7ed4382e]{width:100%;border-radius:50%}.name[data-v-7ed4382e]{font-size:.4375rem;font-weight:700;color:#fff;margin-right:5.46875rem}.title[data-v-7ed4382e]{height:1.375rem;line-height:1.375rem;padding-left:.5rem;font-size:.375rem;font-weight:400;color:#2d476a}.content img[data-v-7ed4382e]{width:1.375rem;height:1.375rem;border-radius:50%}
\ No newline at end of file \ No newline at end of file
.main[data-v-7f87989d]{background-color:#f8f8f8;width:100%;height:auto;min-height:100%;padding-bottom:2.9375rem;display:flex;flex-direction:column;justify-content:start;overflow:auto}.org[data-v-7f87989d]{width:100%;height:auto}.org-titles[data-v-7f87989d]{width:100%;height:1.5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:0 .5rem}.org-title[data-v-7f87989d]{width:auto;height:.4375rem;font-size:.375rem;font-weight:400;line-height:.4375rem;color:#2d476a}.org-infos[data-v-7f87989d]{width:100%;height:auto;padding:.5rem;background-color:#fff;border-top:1px solid #eee;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;box-shadow:0 .0625rem .125rem 0 #ddd}.org-info-title[data-v-7f87989d]{width:auto;max-width:100%;font-size:.4375rem;font-weight:700;line-height:.4375rem;color:#2d476a}.org-info-content[data-v-7f87989d]{width:100%;height:auto;margin:.375rem .5rem .375rem 0;padding:.375rem;background-color:#f8f8f8;font-size:.375rem;font-weight:400;word-wrap:break-word;color:rgba(45,71,106,.8)}.org-info-other[data-v-7f87989d]{width:100%;height:.78125rem;padding-top:.375rem;border-top:1px solid #eee;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.org-author[data-v-7f87989d],.org-date[data-v-7f87989d]{width:auto;height:.375rem;font-size:.375rem;font-weight:400;line-height:.375rem;color:#2d476a}.my[data-v-7f87989d]{width:100%;height:auto}.my-titles[data-v-7f87989d]{width:100%;height:1.5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:0 .5rem}.my-title[data-v-7f87989d]{width:auto;height:.4375rem;font-size:.375rem;font-weight:400;line-height:.4375rem;color:#2d476a}.my-title-icon[data-v-7f87989d]{width:.15625rem;height:.25rem;object-fit:cover}.my-infos[data-v-7f87989d]{padding:0 .5rem;flex-direction:column;background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd}.my-info[data-v-7f87989d],.my-infos[data-v-7f87989d]{width:100%;height:auto;display:flex;justify-content:flex-start}.my-info[data-v-7f87989d]{border-top:1px solid #eee;padding:.375rem 0;flex-direction:row;align-items:center}.my-logo[data-v-7f87989d]{width:2.5rem;height:2.5rem;border-radius:.125rem}.my-contents[data-v-7f87989d]{border:0 solid red;width:100%;height:2.5rem;padding:0 .375rem;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.content-title[data-v-7f87989d]{width:auto;max-width:100%;word-wrap:unset;font-size:.4375rem;font-weight:700;line-height:.5rem;color:#2d476a;padding-bottom:.5rem}.content-tasks[data-v-7f87989d]{width:100%;height:auto;display:flex;flex-direction:row;justify-content:flex-start;align-items:center}.task-title[data-v-7f87989d]{color:#2d476a}.task-money[data-v-7f87989d],.task-title[data-v-7f87989d]{width:auto;font-size:.375rem;font-weight:400;line-height:.375rem}.task-money[data-v-7f87989d]{color:#d0021b} .main[data-v-e06fa0b8]{background-color:#f8f8f8;width:100%;height:auto;min-height:100%;padding-bottom:2.9375rem;display:flex;flex-direction:column;justify-content:start;overflow:auto}.org[data-v-e06fa0b8]{width:100%;height:auto}.org-titles[data-v-e06fa0b8]{width:100%;height:1.5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:0 .5rem}.org-title[data-v-e06fa0b8]{width:auto;height:.4375rem;font-size:.375rem;font-weight:400;line-height:.4375rem;color:#2d476a}.org-infos[data-v-e06fa0b8]{width:100%;height:auto;padding:.5rem;background-color:#fff;border-top:1px solid #eee;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;box-shadow:0 .0625rem .125rem 0 #ddd}.org-info-title[data-v-e06fa0b8]{width:auto;max-width:100%;font-size:.4375rem;font-weight:700;line-height:.4375rem;color:#2d476a}.org-info-content[data-v-e06fa0b8]{width:100%;height:auto;margin:.375rem .5rem .375rem 0;padding:.375rem;background-color:#f8f8f8;font-size:.375rem;font-weight:400;word-wrap:break-word;color:rgba(45,71,106,.8)}.org-info-other[data-v-e06fa0b8]{width:100%;height:.78125rem;padding-top:.375rem;border-top:1px solid #eee;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.org-author[data-v-e06fa0b8],.org-date[data-v-e06fa0b8]{width:auto;height:.375rem;font-size:.375rem;font-weight:400;line-height:.375rem;color:#2d476a}.my[data-v-e06fa0b8]{width:100%;height:auto}.my-titles[data-v-e06fa0b8]{width:100%;height:1.5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:0 .5rem}.my-title[data-v-e06fa0b8]{width:auto;height:.4375rem;font-size:.375rem;font-weight:400;line-height:.4375rem;color:#2d476a}.my-title-icon[data-v-e06fa0b8]{width:.15625rem;height:.25rem;object-fit:cover}.my-infos[data-v-e06fa0b8]{padding:0 .5rem;flex-direction:column;background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd}.my-info[data-v-e06fa0b8],.my-infos[data-v-e06fa0b8]{width:100%;height:auto;display:flex;justify-content:flex-start}.my-info[data-v-e06fa0b8]{border-top:1px solid #eee;padding:.375rem 0;flex-direction:row;align-items:center}.my-logo[data-v-e06fa0b8]{width:2.5rem;height:2.5rem;border-radius:.125rem}.my-contents[data-v-e06fa0b8]{border:0 solid red;width:100%;height:2.5rem;padding:0 .375rem;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.content-title[data-v-e06fa0b8]{width:auto;max-width:100%;word-wrap:unset;font-size:.4375rem;font-weight:700;line-height:.5rem;color:#2d476a;padding-bottom:.5rem}.content-tasks[data-v-e06fa0b8]{width:100%;height:auto;display:flex;flex-direction:row;justify-content:flex-start;align-items:center}.task-title[data-v-e06fa0b8]{color:#2d476a}.task-money[data-v-e06fa0b8],.task-title[data-v-e06fa0b8]{width:auto;font-size:.375rem;font-weight:400;line-height:.375rem}.task-money[data-v-e06fa0b8]{color:#d0021b}
\ No newline at end of file \ No newline at end of file
.gn[data-v-19ac84cd] .van-cell__title{font-size:.4375rem;font-weight:700;color:#2d476a}.gn[data-v-19ac84cd]{margin-top:.375rem;width:100%}.container[data-v-19ac84cd]{background:#f8f8f8;height:auto;display:flex;justify-content:flex-start;align-items:center;flex-direction:column;min-height:100%}.img[data-v-19ac84cd]{width:100%;height:6.25rem;background-color:pink}.img img[data-v-19ac84cd]{width:100%}.list[data-v-19ac84cd]{height:2.5rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;box-shadow:0 .0625rem .125rem 0 #ddd;border-radius:.0625rem;z-index:100}.list3[data-v-19ac84cd]{border-bottom:none;margin-bottom:0}.left[data-v-19ac84cd],.right[data-v-19ac84cd]{height:2.5rem}.left[data-v-19ac84cd]{width:2.5rem;background:#f8f8f8;position:absolute;top:5.875rem;left:.3125rem}.left img[data-v-19ac84cd]{width:100%}.right[data-v-19ac84cd]{width:76%;padding:.3125rem;background-color:#fff;margin-left:2.9375rem}h3[data-v-19ac84cd]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-19ac84cd]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}
\ No newline at end of file
.l-yh[data-v-6e1386b2],.r-yh[data-v-6e1386b2]{width:55%;display:flex;align-items:center}.l-yh[data-v-6e1386b2]{width:45%}.bfb[data-v-6e1386b2]{position:absolute;right:.09375rem;top:0}.all[data-v-6e1386b2] input{text-align:right}.small[data-v-6e1386b2]{font-size:.3125rem}.add[data-v-6e1386b2],.creat[data-v-6e1386b2]{width:96%;height:1.25rem;background:#75b2fd;border-radius:.3125rem;text-align:center;line-height:1.25rem;font-size:.5rem;font-weight:700;color:#fff;margin:0 auto;margin-top:2.5rem;margin-bottom:.5rem}.add[data-v-6e1386b2]{margin:.375rem auto}.area[data-v-6e1386b2]{background-color:#f8f8f8;width:100%}.des[data-v-6e1386b2]{font-size:.4375rem;font-weight:700;color:#2d476a;margin-bottom:.375rem}.phone[data-v-6e1386b2]{margin-right:.3125rem}.title[data-v-6e1386b2]{background-color:#f8f8f8;height:1.125rem;line-height:1.125rem;font-size:.375rem;padding-left:.5rem;color:#2d476a}[data-v-08d4afe1] .van-cell[data-v-6e1386b2]{height:100%;font-size:.4375rem}.right[data-v-6e1386b2]{padding:0}.nobr[data-v-6e1386b2] .van-cell:not(:last-child):after,.right[data-v-6e1386b2] .van-cell:not(:last-child):after{display:none!important}.noborder[data-v-6e1386b2] .van-cell:not(:last-child):after{border:none}.gl[data-v-6e1386b2] .van-field__control{margin-right:.5625rem}.name[data-v-6e1386b2] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a}.cs[data-v-6e1386b2] .van-cell__title{flex:3}.task[data-v-6e1386b2] .van-cell__title{flex:7}.validity[data-v-6e1386b2] .van-cell__value{flex:2}.container[data-v-6e1386b2]{height:auto;display:flex;flex-direction:column;background:#f8f8f8;min-height:100%}.van-cell__title[data-v-6e1386b2]{color:#2d476a!important}.type[data-v-6e1386b2]{height:2.625rem}.mj[data-v-6e1386b2]{height:1.25rem;display:flex;justify-content:space-between;align-items:center;margin:.3125rem 0}.sz[data-v-6e1386b2]{position:relative;padding-top:.3125rem}.je[data-v-6e1386b2]{width:2.75rem;height:1.125rem;display:flex;align-items:center;background:#f8f8f8;border-radius:.3125rem}.word[data-v-6e1386b2]{margin:0 .21875rem;font-size:.4375rem;font-weight:400;color:#2d476a}.end[data-v-6e1386b2]{margin-right:0}.tm[data-v-6e1386b2]{background-color:transparent}.je[data-v-6e1386b2] .van-cell:not(:last-child):after,.jpsl[data-v-6e1386b2] .van-cell:not(:last-child):after{display:none}.all[data-v-6e1386b2]{box-shadow:0 1px .09375rem 0 #ddd;padding-bottom:1px}.detail[data-v-6e1386b2]{margin-top:.375rem;background-color:#fff;padding:.375rem .5rem 0 .5rem}.border[data-v-6e1386b2]{border-bottom:1px solid #ebedf0;padding-bottom:.28125rem}.close[data-v-6e1386b2]{position:absolute;z-index:999;top:0}.condition[data-v-6e1386b2]{display:flex;justify-content:flex-end;align-items:center}.van-cell[data-v-6e1386b2]:not(:last-child):after{right:.4375rem}.yhType[data-v-6e1386b2]{padding:.4375rem}.yhbr[data-v-6e1386b2]{border-bottom:1px solid #f8f8f8;font-size:.4375rem}.top[data-v-6e1386b2]{display:flex;justify-content:space-between;align-items:center}
\ No newline at end of file
.pic[data-v-3a2e07e8]{width:100%;margin-bottom:.4375rem}.pic img[data-v-3a2e07e8]{width:100%}.nr[data-v-3a2e07e8]{margin-top:.375rem}.nr p[data-v-3a2e07e8]{font-size:.375rem;font-weight:400;color:#576c88;margin-bottom:.4375rem}.container[data-v-3a2e07e8]{background:#f8f8f8;height:auto;padding:.5rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:start;min-height:100%}.ct[data-v-3a2e07e8]{background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;padding:.5rem}.head[data-v-3a2e07e8]{height:2.3125rem;width:100%;border-bottom:1px solid #eee}.head h3[data-v-3a2e07e8]{font-size:.5625rem;font-weight:700;color:#2d476a}.head span[data-v-3a2e07e8]{font-size:.375rem;font-weight:500;color:#2d476a}
\ No newline at end of file
p[data-v-d5f8ddcc]{font-size:.375rem;font-weight:400;color:rgba(45,71,106,.8);margin-top:.4375rem}.wan[data-v-d5f8ddcc]{position:absolute;left:2.40625rem;top:.25rem;font-size:.5rem;font-weight:700}.wtitle[data-v-d5f8ddcc]{width:6.25rem;height:.75rem;position:absolute;left:50%;transform:translate(-50%);top:8.375rem;z-index:999}.wtitle img[data-v-d5f8ddcc]{width:100%}.topb[data-v-d5f8ddcc]{width:100%;height:6.25rem;background:url(../img/zpbg.70d9930a.png) no-repeat;background-size:cover}.title[data-v-d5f8ddcc]{width:100%;height:1.5625rem;font-size:.5625rem;background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;line-height:1.5625rem;padding-left:.5rem;position:relative}.container[data-v-d5f8ddcc]{background-color:#f8f8f8;height:auto;display:flex;justify-content:space-between;align-items:center;flex-direction:column;min-height:100%}.bt[data-v-d5f8ddcc]{font-size:.5rem;margin-left:3rem;font-weight:700;color:#2d476a}.tb[data-v-d5f8ddcc]{position:absolute;height:.75rem;line-height:.75rem;left:.5rem;top:.4375rem;border-radius:.0625rem;border:1px solid #2d476a;font-size:.3125rem;font-weight:500;color:#2d476a;width:2.75rem;text-align:center}.tb img[data-v-d5f8ddcc]{width:.375rem;height:.375rem}.content[data-v-d5f8ddcc]{margin:1.125rem .5rem .5rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;position:relative;padding:.5rem .5rem .9375rem .5rem}.creat[data-v-d5f8ddcc]{width:10.71875rem;height:1.25rem;line-height:1.25rem;background:#75b2fd;border-radius:.3125rem;font-size:.5rem;font-weight:700;color:#fff;text-align:center;margin-bottom:.5rem} p[data-v-3736dfce]{font-size:.375rem;font-weight:400;color:rgba(45,71,106,.8);margin-top:.4375rem}.wan[data-v-3736dfce]{position:absolute;left:2.40625rem;top:.25rem;font-size:.5rem;font-weight:700}.wtitle[data-v-3736dfce]{width:6.25rem;height:.75rem;position:absolute;left:50%;transform:translate(-50%);top:8.375rem;z-index:999}.wtitle img[data-v-3736dfce]{width:100%}.topb[data-v-3736dfce]{width:100%;height:6.25rem;background:url(../img/zpbg.70d9930a.png) no-repeat;background-size:cover}.title[data-v-3736dfce]{width:100%;height:1.5625rem;font-size:.5625rem;background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;line-height:1.5625rem;padding-left:.5rem;position:relative}.container[data-v-3736dfce]{background-color:#f8f8f8;height:auto;display:flex;justify-content:space-between;align-items:center;flex-direction:column;min-height:100%}.bt[data-v-3736dfce]{font-size:.5rem;margin-left:3rem;font-weight:700;color:#2d476a}.tb[data-v-3736dfce]{position:absolute;height:.75rem;line-height:.75rem;left:.5rem;top:.4375rem;border-radius:.0625rem;border:1px solid #2d476a;font-size:.3125rem;font-weight:500;color:#2d476a;width:2.75rem;text-align:center}.tb img[data-v-3736dfce]{width:.375rem;height:.375rem}.content[data-v-3736dfce]{margin:1.125rem .5rem .5rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;position:relative;padding:.5rem .5rem .9375rem .5rem}.creat[data-v-3736dfce]{width:10.71875rem;height:1.25rem;line-height:1.25rem;background:#75b2fd;border-radius:.3125rem;font-size:.5rem;font-weight:700;color:#fff;text-align:center;margin-bottom:.5rem}
\ No newline at end of file \ No newline at end of file
.gn[data-v-52aa9c07] .van-cell__title{font-size:.4375rem;font-weight:700;color:#2d476a}.gn[data-v-52aa9c07]{margin-top:.375rem;width:100%}.container[data-v-52aa9c07]{background:#f8f8f8;height:auto;display:flex;justify-content:flex-start;align-items:center;flex-direction:column;min-height:100%}.img[data-v-52aa9c07]{width:100%;height:6.25rem;background-color:pink}.img img[data-v-52aa9c07]{width:100%}.list[data-v-52aa9c07]{height:2.5rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;box-shadow:0 .0625rem .125rem 0 #ddd;border-radius:.0625rem;z-index:100}.list3[data-v-52aa9c07]{border-bottom:none;margin-bottom:0}.left[data-v-52aa9c07],.right[data-v-52aa9c07]{height:2.5rem}.left[data-v-52aa9c07]{width:2.5rem;background:#f8f8f8;position:absolute;top:5.875rem;left:.3125rem}.left img[data-v-52aa9c07]{width:100%}.right[data-v-52aa9c07]{width:76%;padding:.3125rem;background-color:#fff;margin-left:2.9375rem}h3[data-v-52aa9c07]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-52aa9c07]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}
\ No newline at end of file
.container[data-v-32eccbfe]{height:auto;background-color:#f8f8f8;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.title[data-v-32eccbfe]{background:#f8f8f8;display:flex;justify-content:space-between;align-items:center}.fg[data-v-32eccbfe],.title[data-v-32eccbfe]{height:1.375rem;padding:0 .5rem;font-size:.375rem;color:#2d476a}.fg[data-v-32eccbfe]{line-height:1.375rem}.icon[data-v-32eccbfe]{font-weight:800}.active[data-v-32eccbfe]{background-color:#fff;padding:.375rem .375rem 0 .375rem;box-shadow:0 .0625rem .125rem 0 #ddd}.list[data-v-32eccbfe]{height:2.9375rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:.4375rem}.list3[data-v-32eccbfe]{border-bottom:none;margin-bottom:0}.left[data-v-32eccbfe],.right[data-v-32eccbfe]{height:2.5rem}.left[data-v-32eccbfe]{width:2.5rem;background:#f8f8f8}.right[data-v-32eccbfe]{width:76%;padding-left:.3125rem;background-color:#fff}h3[data-v-32eccbfe]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-32eccbfe]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}
\ No newline at end of file
.tab[data-v-8982aff0] .van-tabs__nav--card .van-tab{border-right:none}.tab[data-v-8982aff0] .van-tab.van-tab--active{background-color:#75b2fd}.sj[data-v-8982aff0]{width:2rem;height:1rem;background:#75b2fd;border-radius:.25rem;line-height:1rem;text-align:center;font-size:.4375rem;color:#fff;margin-top:.625rem}h3[data-v-8982aff0]{font-size:.4375rem;color:#d0021b;margin-top:.5625rem}.name[data-v-8982aff0]{font-size:.4375rem;font-weight:700;color:#2d476a;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.good[data-v-8982aff0]{height:3.375rem;border-bottom:1px solid #eee;width:100%;padding:.375rem 0;display:flex;justify-content:space-between}.list[data-v-8982aff0]{padding:0 .5rem;box-sizing:border-box}.center[data-v-8982aff0],.left[data-v-8982aff0],.right[data-v-8982aff0]{height:2.5rem}.left[data-v-8982aff0]{width:2.5rem;border-radius:.125rem}.left img[data-v-8982aff0]{width:100%}.center[data-v-8982aff0]{width:50%}.right[data-v-8982aff0]{width:20%}.tab[data-v-8982aff0] .van-tabs__nav--card{margin:0;border:none;height:1.25rem}.container[data-v-8982aff0]{height:auto;min-height:100%;background-color:#fff;display:flex;flex-direction:column;justify-content:flex-start}.search[data-v-8982aff0]{padding:.375rem .5rem}.active[data-v-8982aff0]{background-color:#75b2fd}
\ No newline at end of file
.main[data-v-5032e002]{background-color:#fff;width:100%;height:100%;display:flex;flex-direction:column;justify-content:start}.tops[data-v-5032e002]{border:.0625rem solid #add8e6;width:100%;height:3.125rem}.contents[data-v-5032e002]{width:100%;height:100%;padding:.5rem;padding-bottom:1.25rem}.content[data-v-5032e002]{border:0 solid orange;height:3.125rem;width:100%;padding:.125rem 0;margin-bottom:.5rem;border-radius:.125rem;box-shadow:0 .0625rem .125rem 0 #bbb;display:flex;flex-direction:row;justify-content:start}.content-imgs[data-v-5032e002]{width:20%;height:100%;display:flex;flex-direction:column;justify-content:start;align-items:center}.imgs-img[data-v-5032e002]{width:1.5625rem;height:1.5625rem;margin-top:.3125rem;border-radius:50%;object-fit:cover}.content-infos[data-v-5032e002]{width:80%;height:100%}.infos-mains[data-v-5032e002]{height:70%;width:100%;display:flex;flex-direction:row;justify-content:start}.mains[data-v-5032e002]{width:70%;height:100%;display:flex;flex-direction:column;justify-content:flex-start}.main-usedPercent[data-v-5032e002]{font-size:.4375rem;color:grey}.main-money[data-v-5032e002]{font-size:.75rem}.buttons[data-v-5032e002]{width:30%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.button-send[data-v-5032e002]{border:0 solid #00f;height:1.25rem;width:1.875rem;border-radius:.125rem;background-color:#445dfb;color:#fff;font-size:.5rem}.infos-tips[data-v-5032e002]{height:30%;width:100%;border-top:1px dashed grey;padding-top:.1875rem;display:flex;flex-direction:row;justify-content:start;align-items:center}.tip-shareMan[data-v-5032e002]{width:70%;height:100%;font-size:.4375rem;line-height:.5rem;color:#969696}.tip-commision[data-v-5032e002]{width:30%;height:100%;font-size:.4375rem;line-height:.5rem;color:#969696}.menus[data-v-5032e002]{border-top:1px solid #c2c2c2;position:fixed;bottom:0;left:0;width:100%;height:1.5625rem;background-color:#fff;display:flex;flex-direction:row;justify-content:start;align-items:center}.menu[data-v-5032e002]{height:1.5625rem;width:50%;line-height:1.5625rem;text-align:center;font-size:.4375rem;color:#000}.activeMenu[data-v-5032e002]{color:#f08080}
\ No newline at end of file
.condition[data-v-5f5e253e]{display:flex;justify-content:flex-end;align-items:center}.phone[data-v-5f5e253e]{margin-right:.3125rem}.all[data-v-5f5e253e] input{text-align:right}.noborder[data-v-5f5e253e] .van-cell:not(:last-child):after,.npbr .van-cell[data-v-5f5e253e]:not(:last-child):after{display:none!important}.creat[data-v-5f5e253e]{margin-top:2.5rem;width:96%;height:1.25rem;background:#75b2fd;border-radius:.3125rem;text-align:center;line-height:1.25rem;font-size:.5rem;font-weight:700;color:#fff;margin-left:2%;margin-bottom:.5rem}.container[data-v-5f5e253e]{height:auto;display:flex;flex-direction:column;background:#f8f8f8;min-height:100%}.area[data-v-5f5e253e] .van-field__control{background:#f8f8f8;padding:.375rem}.des[data-v-5f5e253e]{padding:.15625rem .5625rem 0;font-size:.4375rem;color:#2d476a}.title[data-v-5f5e253e]{background-color:#f8f8f8;height:1.125rem;line-height:1.125rem;font-size:.375rem;padding-left:.5rem;color:#2d476a}[data-v-08d4afe1] .van-cell[data-v-5f5e253e]{height:100%;font-size:.4375rem}.right[data-v-5f5e253e]{padding:0}.van-cell__title[data-v-5f5e253e]{color:#2d476a!important}
\ No newline at end of file
.container[data-v-f076053a]{height:auto;background-color:#f8f8f8;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.title[data-v-f076053a]{background:#f8f8f8;display:flex;justify-content:space-between;align-items:center}.fg[data-v-f076053a],.title[data-v-f076053a]{height:1.375rem;padding:0 .5rem;font-size:.375rem;color:#2d476a}.fg[data-v-f076053a]{line-height:1.375rem}.icon[data-v-f076053a]{font-weight:800}.active[data-v-f076053a]{background-color:#fff;padding:.375rem .375rem 0 .375rem;box-shadow:0 .0625rem .125rem 0 #ddd}.list[data-v-f076053a]{height:2.9375rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:.4375rem}.list3[data-v-f076053a]{border-bottom:none;margin-bottom:0}.left[data-v-f076053a],.right[data-v-f076053a]{height:2.5rem}.left[data-v-f076053a]{width:2.5rem;background:#f8f8f8}.right[data-v-f076053a]{width:76%;padding-left:.3125rem;background-color:#fff}h3[data-v-f076053a]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-f076053a]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}
\ No newline at end of file
.kj[data-v-6afac21c]{width:100%;height:7.15625rem;background:#f8f8f8;padding:.375rem;margin-bottom:.3125rem}.container[data-v-6afac21c]{padding:.5rem}.title[data-v-6afac21c]{font-size:.4375rem;font-weight:700;color:#2d476a}.ct[data-v-6afac21c]{width:100%;height:5.625rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;border-radius:.3125rem;margin-top:.375rem;position:relative}.ck[data-v-6afac21c]{position:absolute;width:100%;bottom:0;height:1rem;line-height:1rem;text-align:center;background:rgba(117,178,253,.8);border-radius:0 0 .3125rem .3125rem;font-size:.375rem;font-weight:400;color:#fff}.main-menuBar[data-v-6afac21c]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-6afac21c]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-6afac21c]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-6afac21c]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-6afac21c]{color:#4377bc}.last[data-v-6afac21c]{margin-bottom:2.5rem}.al[data-v-6afac21c],.fw[data-v-6afac21c],.jq[data-v-6afac21c]{background:url(../img/cswiper.d05dcfd9.png)no-repeat;background-size:cover} .kj[data-v-3a32a44a]{width:100%;height:7.15625rem;background:#f8f8f8;padding:.375rem;margin-bottom:.3125rem}.container[data-v-3a32a44a]{padding:.5rem}.title[data-v-3a32a44a]{font-size:.4375rem;font-weight:700;color:#2d476a}.ct[data-v-3a32a44a]{width:100%;height:5.625rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;border-radius:.3125rem;margin-top:.375rem;position:relative}.ck[data-v-3a32a44a]{position:absolute;width:100%;bottom:0;height:1rem;line-height:1rem;text-align:center;background:rgba(117,178,253,.8);border-radius:0 0 .3125rem .3125rem;font-size:.375rem;font-weight:400;color:#fff}.main-menuBar[data-v-3a32a44a]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-3a32a44a]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-3a32a44a]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-3a32a44a]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-3a32a44a]{color:#4377bc}.last[data-v-3a32a44a]{margin-bottom:2.5rem}.al[data-v-3a32a44a],.fw[data-v-3a32a44a],.jq[data-v-3a32a44a]{background:url(../img/cswiper.d05dcfd9.png)no-repeat;background-size:cover}
\ No newline at end of file \ No newline at end of file
.condition[data-v-024b030b]{display:flex;justify-content:flex-end;align-items:center}.phone[data-v-024b030b]{margin-right:.3125rem}.all[data-v-024b030b] input{text-align:right}.noborder[data-v-024b030b] .van-cell:not(:last-child):after,.npbr .van-cell[data-v-024b030b]:not(:last-child):after{display:none!important}.creat[data-v-024b030b]{margin-top:2.5rem;width:96%;height:1.25rem;background:#75b2fd;border-radius:.3125rem;text-align:center;line-height:1.25rem;font-size:.5rem;font-weight:700;color:#fff;margin-left:2%;margin-bottom:.5rem}.container[data-v-024b030b]{height:auto;display:flex;flex-direction:column;background:#f8f8f8;min-height:100%}.area[data-v-024b030b] .van-field__control{background:#f8f8f8;padding:.375rem}.des[data-v-024b030b]{padding:.15625rem .5625rem 0;font-size:.4375rem;color:#2d476a}.title[data-v-024b030b]{background-color:#f8f8f8;height:1.125rem;line-height:1.125rem;font-size:.375rem;padding-left:.5rem;color:#2d476a}[data-v-08d4afe1] .van-cell[data-v-024b030b]{height:100%;font-size:.4375rem}.right[data-v-024b030b]{padding:0}.van-cell__title[data-v-024b030b]{color:#2d476a!important}
\ No newline at end of file
.container[data-v-70ada288]{min-height:100%;display:flex;flex-direction:column;justify-content:flex-start;height:auto}.container[data-v-70ada288] .van-tabs__wrap,.van-tabs__wrap--scrollable[data-v-70ada288]{height:1.25rem}.container[data-v-70ada288] .van-tab,.van-ellipsis[data-v-70ada288],.van-tab--active[data-v-70ada288]{line-height:1.25rem}.content[data-v-70ada288] .van-icon-arrow:before{margin-top:.3125rem;color:#2d476a}.content[data-v-70ada288] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a;line-height:1.375rem}.custom-title[data-v-70ada288]{margin-left:.375rem;font-size:.5rem;font-weight:700;color:#2d476a}.content img[data-v-70ada288]{width:1.375rem;height:1.375rem;border-radius:50%;vertical-align:middle}.tab[data-v-70ada288] .van-tabs__nav--card .van-tab{border-right:none}.tab[data-v-70ada288] .van-tab.van-tab--active{background-color:#75b2fd}.tab[data-v-70ada288] .van-tabs__nav--card{margin:0;border:none;height:1.25rem}.tab[data-v-70ada288] .van-tabs__nav,.van-tabs__nav--card[data-v-70ada288]{margin:0}.main-menuBar[data-v-70ada288]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-70ada288]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-70ada288]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-70ada288]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-70ada288]{color:#4377bc}
\ No newline at end of file
.main[data-v-902997dc]{background-color:#f8f8f8;width:100%;height:auto;min-height:100%;padding-bottom:2.9375rem;display:flex;flex-direction:column;justify-content:start;overflow:auto}.backgrounds[data-v-902997dc]{width:100%;height:3.875rem;overflow:hidden;background-color:rgba(10,10,10,.5)}.background-img[data-v-902997dc]{width:100%;height:100%;object-fit:cover;filter:blur(.0625rem)}.infos[data-v-902997dc]{width:100%;height:1.375rem;margin-top:.375rem}.info[data-v-902997dc]{width:100%;height:4.625rem;padding:0 .5rem;position:relative;bottom:3.3125rem;display:flex;flex-direction:column;justify-content:space-between;align-items:start}.info-logos[data-v-902997dc]{width:100%;height:1.5rem}.info-logo[data-v-902997dc]{width:1.5rem;height:1.5rem;border-radius:50%;border:1px solid #fff;object-fit:cover}.info-msgs[data-v-902997dc]{width:100%;height:2.5rem;margin-bottom:.375rem;background-color:#fff;border-radius:.0625rem;box-shadow:0 .0625rem .125rem 0 #ddd;padding:.4375rem .59375rem;display:flex;flex-direction:row;justify-content:center;align-items:center}.msg[data-v-902997dc]{width:50%;height:100%;border-right:1px solid #eee;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start}.msg-latest[data-v-902997dc]{border-right:none;align-items:flex-end}.msg-title[data-v-902997dc]{width:3.75rem;height:.4375rem;font-size:.375rem;font-weight:700;line-height:.4375rem;color:#2d476a;text-align:center}.msg-num[data-v-902997dc]{width:3.75rem;height:1rem;border-radius:.5rem;background-color:#f8f8f8;display:flex;flex-direction:row;justify-content:center;align-items:center}.msg-num-red[data-v-902997dc]{color:#d0021b}.msg-num-blue[data-v-902997dc],.msg-num-red[data-v-902997dc]{font-size:.5625rem;font-weight:700;line-height:.625rem;text-align:center}.msg-num-blue[data-v-902997dc]{color:#75b2fd}.lists[data-v-902997dc]{width:100%;height:auto;padding:0 0 0 .5rem;background-color:#fff;box-shadow:0 1px .09375rem 0 #ddd}.list[data-v-902997dc]{width:100%;height:1.375rem;border-bottom:1px solid #ddd;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.list-latest[data-v-902997dc]{border-bottom:none}.list-title[data-v-902997dc]{width:auto;height:.5rem;font-size:.4375rem;font-weight:700;line-height:.5rem;color:#2d476a}.list-icon[data-v-902997dc]{margin-right:.5rem;width:.25rem;height:.40625rem;object-fit:cover}.main-menuBar[data-v-902997dc]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-902997dc]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-902997dc]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-902997dc]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-902997dc]{color:#4377bc} .main[data-v-2e5b38a6]{background-color:#f8f8f8;width:100%;height:auto;min-height:100%;padding-bottom:2.9375rem;display:flex;flex-direction:column;justify-content:start;overflow:auto}.backgrounds[data-v-2e5b38a6]{width:100%;height:3.875rem;overflow:hidden;background-color:rgba(10,10,10,.5)}.background-img[data-v-2e5b38a6]{width:100%;height:100%;object-fit:cover;filter:blur(.0625rem)}.infos[data-v-2e5b38a6]{width:100%;height:1.375rem;margin-top:.375rem}.info[data-v-2e5b38a6]{width:100%;height:4.625rem;padding:0 .5rem;position:relative;bottom:3.3125rem;display:flex;flex-direction:column;justify-content:space-between;align-items:start}.info-logos[data-v-2e5b38a6]{width:100%;height:1.5rem}.info-logo[data-v-2e5b38a6]{width:1.5rem;height:1.5rem;border-radius:50%;border:1px solid #fff;object-fit:cover}.info-msgs[data-v-2e5b38a6]{width:100%;height:2.5rem;margin-bottom:.375rem;background-color:#fff;border-radius:.0625rem;box-shadow:0 .0625rem .125rem 0 #ddd;padding:.4375rem .59375rem;display:flex;flex-direction:row;justify-content:center;align-items:center}.msg[data-v-2e5b38a6]{width:50%;height:100%;border-right:1px solid #eee;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start}.msg-latest[data-v-2e5b38a6]{border-right:none;align-items:flex-end}.msg-title[data-v-2e5b38a6]{width:3.75rem;height:.4375rem;font-size:.375rem;font-weight:700;line-height:.4375rem;color:#2d476a;text-align:center}.msg-num[data-v-2e5b38a6]{width:3.75rem;height:1rem;border-radius:.5rem;background-color:#f8f8f8;display:flex;flex-direction:row;justify-content:center;align-items:center}.msg-num-red[data-v-2e5b38a6]{color:#d0021b}.msg-num-blue[data-v-2e5b38a6],.msg-num-red[data-v-2e5b38a6]{font-size:.5625rem;font-weight:700;line-height:.625rem;text-align:center}.msg-num-blue[data-v-2e5b38a6]{color:#75b2fd}.lists[data-v-2e5b38a6]{width:100%;height:auto;padding:0 0 0 .5rem;background-color:#fff;box-shadow:0 1px .09375rem 0 #ddd}.list[data-v-2e5b38a6]{width:100%;height:1.375rem;border-bottom:1px solid #ddd;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.list-latest[data-v-2e5b38a6]{border-bottom:none}.list-title[data-v-2e5b38a6]{width:auto;height:.5rem;font-size:.4375rem;font-weight:700;line-height:.5rem;color:#2d476a}.list-icon[data-v-2e5b38a6]{margin-right:.5rem;width:.25rem;height:.40625rem;object-fit:cover}.main-menuBar[data-v-2e5b38a6]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-2e5b38a6]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-2e5b38a6]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-2e5b38a6]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-2e5b38a6]{color:#4377bc}
\ No newline at end of file \ No newline at end of file
.price[data-v-58b61c8b]{width:2.75rem;height:1.125rem;line-height:1.125rem;background:#f8f8f8;float:right;margin-top:.375rem;border-radius:.3125rem;color:rgba(45,71,106,.6);padding:0}.nop[data-v-58b61c8b]{padding:0}.t-l[data-v-58b61c8b]{width:3.75rem}.t-r[data-v-58b61c8b]{width:70%}.type[data-v-58b61c8b]{padding:.4375rem;display:flex;justify-content:space-between;font-size:.4375rem}h3[data-v-58b61c8b]{font-size:.4375rem;color:#d0021b;margin-top:.5625rem}.container[data-v-58b61c8b]{height:100%;background-color:#f8f8f8;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.name[data-v-58b61c8b]{font-size:.4375rem;font-weight:700;color:#2d476a;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.good[data-v-58b61c8b]{height:3.375rem;border-bottom:1px solid #eee;width:100%;padding:.375rem 0;display:flex;justify-content:space-between}.list[data-v-58b61c8b]{padding:0 .5rem;box-sizing:border-box;background-color:#fff;box-shadow:0 1px .09375rem 0 #ddd}.center[data-v-58b61c8b],.left[data-v-58b61c8b],.right[data-v-58b61c8b]{height:2.5rem}.left[data-v-58b61c8b]{width:2.5rem;border-radius:.125rem}.left img[data-v-58b61c8b]{width:100%}.center[data-v-58b61c8b]{width:70%}.phone[data-v-58b61c8b]{float:left}.option[data-v-58b61c8b] .van-field__control{text-align:right}.nob[data-v-58b61c8b] .van-cell:not(:last-child):after{border:none}.price[data-v-58b61c8b] .van-field__control{text-align:center}.creat[data-v-58b61c8b]{width:96%;height:1.25rem;background:#75b2fd;border-radius:.3125rem;text-align:center;line-height:1.25rem;font-size:.5rem;font-weight:700;color:#fff;margin-left:2%;position:absolute;bottom:.5rem}
\ No newline at end of file
.main[data-v-ba5c8aae]{background-color:#fff;width:100%;height:100%;display:flex;flex-direction:column;justify-content:start}.tops[data-v-ba5c8aae]{border:.0625rem solid #add8e6;width:100%;height:3.125rem}.contents[data-v-ba5c8aae]{width:100%;height:100%;padding:.5rem;padding-bottom:1.25rem}.content[data-v-ba5c8aae]{border:0 solid orange;height:3.125rem;width:100%;padding:.125rem 0;margin-bottom:.5rem;border-radius:.125rem;box-shadow:0 .0625rem .125rem 0 #bbb;display:flex;flex-direction:row;justify-content:start}.content-imgs[data-v-ba5c8aae]{width:20%;height:100%;display:flex;flex-direction:column;justify-content:start;align-items:center}.imgs-img[data-v-ba5c8aae]{width:1.5625rem;height:1.5625rem;margin-top:.3125rem;border-radius:50%;object-fit:cover}.content-infos[data-v-ba5c8aae]{width:80%;height:100%}.infos-mains[data-v-ba5c8aae]{height:70%;width:100%;display:flex;flex-direction:row;justify-content:start}.mains[data-v-ba5c8aae]{width:70%;height:100%;display:flex;flex-direction:column;justify-content:flex-start}.main-usedPercent[data-v-ba5c8aae]{font-size:.4375rem;color:grey}.main-money[data-v-ba5c8aae]{font-size:.75rem}.buttons[data-v-ba5c8aae]{width:30%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.button-send[data-v-ba5c8aae]{border:0 solid #00f;height:1.25rem;width:1.875rem;border-radius:.125rem;background-color:#445dfb;color:#fff;font-size:.5rem}.infos-tips[data-v-ba5c8aae]{height:30%;width:100%;border-top:1px dashed grey;padding-top:.1875rem;display:flex;flex-direction:row;justify-content:start;align-items:center}.tip-shareMan[data-v-ba5c8aae]{width:70%;height:100%;font-size:.4375rem;line-height:.5rem;color:#969696}.tip-commision[data-v-ba5c8aae]{width:30%;height:100%;font-size:.4375rem;line-height:.5rem;color:#969696}.menus[data-v-ba5c8aae]{border-top:1px solid #c2c2c2;position:fixed;bottom:0;left:0;width:100%;height:1.5625rem;background-color:#fff;display:flex;flex-direction:row;justify-content:start;align-items:center}.menu[data-v-ba5c8aae]{height:1.5625rem;width:50%;line-height:1.5625rem;text-align:center;font-size:.4375rem;color:#000}.activeMenu[data-v-ba5c8aae]{color:#f08080}.zListActive[data-v-ba5c8aae]{width:100%;height:auto;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.zListActive>.inputs[data-v-ba5c8aae]{width:100%;height:auto;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.zListActive>.inputs>.input[data-v-ba5c8aae]{border-color:#1e90ff;border-radius:.125rem;width:70%;height:1.25rem;font-size:.5rem}.zListActive>.inputs>.button[data-v-ba5c8aae]{border:1px solid #1e90ff;border-radius:.125rem;width:40%;height:1.25rem;font-size:.4375rem;line-height:1.125rem;text-align:center}.zListActive>.lists[data-v-ba5c8aae]{width:100%;height:auto;margin-top:.25rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.zListActive>.lists>.item[data-v-ba5c8aae]{border:1px solid red;border-radius:.125rem}.zListActive>.lists>.item[data-v-ba5c8aae],.zListActive>.lists>.voucherUrl[data-v-ba5c8aae]{width:100%;height:3.125rem;margin-bottom:.5rem;padding:.125rem .125rem;box-shadow:0 .0625rem .125rem 0 #bbb;display:flex;flex-direction:column;justify-content:space-around;align-items:flex-start;font-size:.4375rem;text-wrap:none}.zListActive>.lists>.voucherUrl[data-v-ba5c8aae]{border:1px solid orange;border-radius:.125rem}
\ No newline at end of file
.container[data-v-ba20fafe]{height:auto;background-color:#fff;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.title[data-v-ba20fafe]{background:#f8f8f8}.fg[data-v-ba20fafe],.title[data-v-ba20fafe]{height:1.375rem;line-height:1.375rem;padding:0 .5rem;font-size:.375rem;color:#2d476a}.icon[data-v-ba20fafe]{font-weight:800}.active[data-v-ba20fafe]{background-color:#fff;padding:.375rem .375rem 0 .375rem;box-shadow:0 .0625rem .125rem 0 #ddd}.list[data-v-ba20fafe]{height:2.9375rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:.4375rem}.list3[data-v-ba20fafe]{border-bottom:none;margin-bottom:0}.left[data-v-ba20fafe],.right[data-v-ba20fafe]{height:2.5rem}.left[data-v-ba20fafe]{width:2.5rem;background:#f8f8f8}.left img[data-v-ba20fafe]{width:100%}.right[data-v-ba20fafe]{width:76%;padding:.3125rem;background-color:#fff}h3[data-v-ba20fafe]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-ba20fafe]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}.nobr[data-v-ba20fafe] .van-cell:not(:last-child):after,.nobr[data-v-ba20fafe] [class*=van-hairline]:after{display:none} .container[data-v-36748284]{height:auto;background-color:#fff;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.title[data-v-36748284]{background:#f8f8f8}.fg[data-v-36748284],.title[data-v-36748284]{height:1.375rem;line-height:1.375rem;padding:0 .5rem;font-size:.375rem;color:#2d476a}.icon[data-v-36748284]{font-weight:800}.active[data-v-36748284]{background-color:#fff;padding:.375rem .375rem 0 .375rem;box-shadow:0 .0625rem .125rem 0 #ddd}.list[data-v-36748284]{height:2.9375rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:.4375rem}.list3[data-v-36748284]{border-bottom:none;margin-bottom:0}.left[data-v-36748284],.right[data-v-36748284]{height:2.5rem}.left[data-v-36748284]{width:2.5rem;background:#f8f8f8}.left img[data-v-36748284]{width:100%}.right[data-v-36748284]{width:76%;padding:.3125rem;background-color:#fff}h3[data-v-36748284]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-36748284]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}.nobr[data-v-36748284] .van-cell:not(:last-child):after,.nobr[data-v-36748284] [class*=van-hairline]:after{display:none}
\ No newline at end of file \ No newline at end of file
.container[data-v-71aab266]{height:auto;background-color:#f8f8f8;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.title[data-v-71aab266]{background:#f8f8f8;display:flex;justify-content:space-between;align-items:center}.fg[data-v-71aab266],.title[data-v-71aab266]{height:1.375rem;padding:0 .5rem;font-size:.375rem;color:#2d476a}.fg[data-v-71aab266]{line-height:1.375rem}.icon[data-v-71aab266]{font-weight:800}.active[data-v-71aab266]{background-color:#fff;padding:.375rem .375rem 0 .375rem;box-shadow:0 .0625rem .125rem 0 #ddd}.list[data-v-71aab266]{height:2.9375rem;width:100%;background-color:#fff;display:flex;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:.4375rem}.list3[data-v-71aab266]{border-bottom:none;margin-bottom:0}.left[data-v-71aab266],.right[data-v-71aab266]{height:2.5rem}.left[data-v-71aab266]{width:2.5rem;background:#f8f8f8}.right[data-v-71aab266]{width:76%;padding-left:.3125rem;background-color:#fff}h3[data-v-71aab266]{font-size:.4375rem;font-weight:700;color:#2d476a}p[data-v-71aab266]{margin-top:.3125rem;font-size:.375rem;color:rgba(45,71,106,.8)}
\ No newline at end of file
.bfb[data-v-05343ca5]{position:absolute;right:.09375rem;top:0}.all[data-v-05343ca5] input{text-align:right}.small[data-v-05343ca5]{font-size:.3125rem}.add[data-v-05343ca5],.creat[data-v-05343ca5]{width:96%;height:1.25rem;background:#75b2fd;border-radius:.3125rem;text-align:center;line-height:1.25rem;font-size:.5rem;font-weight:700;color:#fff;margin:0 auto;margin-top:2.5rem;margin-bottom:.5rem}.add[data-v-05343ca5]{margin:.375rem auto}.area[data-v-05343ca5]{background-color:#f8f8f8;width:100%}.des[data-v-05343ca5]{font-size:.4375rem;font-weight:700;color:#2d476a;margin-bottom:.375rem}.phone[data-v-05343ca5]{margin-right:.3125rem}.title[data-v-05343ca5]{background-color:#f8f8f8;height:1.125rem;line-height:1.125rem;font-size:.375rem;padding-left:.5rem;color:#2d476a}[data-v-08d4afe1] .van-cell[data-v-05343ca5]{height:100%;font-size:.4375rem}.right[data-v-05343ca5]{padding:0}.nobr[data-v-05343ca5] .van-cell:not(:last-child):after,.right[data-v-05343ca5] .van-cell:not(:last-child):after{display:none!important}.noborder[data-v-05343ca5] .van-cell:not(:last-child):after{border:none}.gl[data-v-05343ca5] .van-field__control{margin-right:.5625rem}.name[data-v-05343ca5] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a}.cs[data-v-05343ca5] .van-cell__title{flex:3}.task[data-v-05343ca5] .van-cell__title{flex:7}.validity[data-v-05343ca5] .van-cell__value{flex:2}.container[data-v-05343ca5]{height:auto;display:flex;flex-direction:column;background:#f8f8f8;min-height:100%}.van-cell__title[data-v-05343ca5]{color:#2d476a!important}.type[data-v-05343ca5]{height:2.625rem}.mj[data-v-05343ca5]{height:1.25rem;display:flex;justify-content:flex-end;align-items:center;margin:.3125rem 0}.sz[data-v-05343ca5]{position:relative;padding-top:.3125rem}.je[data-v-05343ca5]{width:2.75rem;height:1.125rem;display:flex;align-items:center;background:#f8f8f8;border-radius:.3125rem}.word[data-v-05343ca5]{margin:0 .21875rem;font-size:.4375rem;font-weight:400;color:#2d476a}.end[data-v-05343ca5]{margin-right:0}.tm[data-v-05343ca5]{background-color:transparent}.je[data-v-05343ca5] .van-cell:not(:last-child):after,.jpsl[data-v-05343ca5] .van-cell:not(:last-child):after{display:none}.all[data-v-05343ca5]{box-shadow:0 1px .09375rem 0 #ddd;padding-bottom:1px}.detail[data-v-05343ca5]{margin-top:.375rem;background-color:#fff;padding:.375rem .5rem 0 .5rem}.border[data-v-05343ca5]{border-bottom:1px solid #ebedf0;padding-bottom:.28125rem}.close[data-v-05343ca5]{position:absolute;z-index:999;top:0}.condition[data-v-05343ca5]{display:flex;justify-content:flex-end;align-items:center}.van-cell[data-v-05343ca5]:not(:last-child):after{right:.4375rem}.yhType[data-v-05343ca5]{padding:.4375rem}.yhbr[data-v-05343ca5]{border-bottom:1px solid #f8f8f8;font-size:.4375rem}.top[data-v-05343ca5]{display:flex;justify-content:space-between;align-items:center}
\ No newline at end of file
.tab[data-v-3d38d05f] .van-tabs__nav--card .van-tab{border-right:none}.tab[data-v-3d38d05f] .van-tab.van-tab--active{background-color:#75b2fd}.sj[data-v-3d38d05f]{width:2rem;height:1rem;background:#75b2fd;border-radius:.25rem;line-height:1rem;text-align:center;font-size:.4375rem;color:#fff;margin-top:.625rem}h3[data-v-3d38d05f]{font-size:.4375rem;color:#d0021b;margin-top:.5625rem}.name[data-v-3d38d05f]{font-size:.4375rem;font-weight:700;color:#2d476a;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.good[data-v-3d38d05f]{height:3.375rem;border-bottom:1px solid #eee;width:100%;padding:.375rem 0;display:flex;justify-content:space-between}.list[data-v-3d38d05f]{padding:0 .5rem;box-sizing:border-box}.center[data-v-3d38d05f],.left[data-v-3d38d05f],.right[data-v-3d38d05f]{height:2.5rem}.left[data-v-3d38d05f]{width:2.5rem;border-radius:.125rem}.left img[data-v-3d38d05f]{width:100%}.center[data-v-3d38d05f]{width:50%}.right[data-v-3d38d05f]{width:20%}.tab[data-v-3d38d05f] .van-tabs__nav--card{margin:0;border:none;height:1.25rem}.container[data-v-3d38d05f]{height:auto;min-height:100%;background-color:#fff;display:flex;flex-direction:column;justify-content:flex-start}.search[data-v-3d38d05f]{padding:.375rem .5rem}.active[data-v-3d38d05f]{background-color:#75b2fd}
\ No newline at end of file
.pic[data-v-76814715]{width:100%;margin-bottom:.4375rem}.pic img[data-v-76814715]{width:100%}.nr[data-v-76814715]{margin-top:.375rem}.nr p[data-v-76814715]{font-size:.375rem;font-weight:400;color:#576c88;margin-bottom:.4375rem}.container[data-v-76814715]{background:#f8f8f8;height:auto;padding:.5rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:start;min-height:100%}.ct[data-v-76814715]{background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;padding:.5rem}.head[data-v-76814715]{height:2.3125rem;width:100%;border-bottom:1px solid #eee}.head h3[data-v-76814715]{font-size:.5625rem;font-weight:700;color:#2d476a}.head span[data-v-76814715]{font-size:.375rem;font-weight:500;color:#2d476a}
\ No newline at end of file
p[data-v-7cf832a2]{font-size:.375rem;font-weight:400;color:rgba(45,71,106,.8);margin-top:.4375rem}.wan[data-v-7cf832a2]{position:absolute;left:2.40625rem;top:.25rem;font-size:.5rem;font-weight:700}.wtitle[data-v-7cf832a2]{width:6.25rem;height:.75rem;position:absolute;left:50%;transform:translate(-50%);top:8.375rem;z-index:999}.wtitle img[data-v-7cf832a2]{width:100%}.topb[data-v-7cf832a2]{width:100%;height:6.25rem;background:url(../img/zpbg.70d9930a.png) no-repeat;background-size:cover}.topb img[data-v-7cf832a2]{width:100%}.title[data-v-7cf832a2]{width:100%;height:1.5625rem;font-size:.5625rem;background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;line-height:1.5625rem;padding-left:.5rem;position:relative}.container[data-v-7cf832a2]{height:auto;background-color:#f8f8f8;display:flex;justify-content:space-between;align-items:center;flex-direction:column;min-height:100%}.bt[data-v-7cf832a2]{font-size:.5rem;margin-left:3rem;font-weight:700;color:#2d476a}.tb[data-v-7cf832a2]{position:absolute;height:.75rem;line-height:.75rem;left:.5rem;top:.4375rem;border-radius:.0625rem;border:1px solid #2d476a;font-size:.3125rem;font-weight:500;color:#2d476a;width:2.75rem;text-align:center;align-items:center}.tb img[data-v-7cf832a2]{width:.375rem;height:.375rem;vertical-align:middle}.content[data-v-7cf832a2]{margin:1.125rem .5rem .5rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;position:relative;padding:.5rem .5rem .9375rem .5rem}.creat[data-v-7cf832a2]{width:10.71875rem;height:1.25rem;line-height:1.25rem;background:#75b2fd;border-radius:.3125rem;font-size:.5rem;font-weight:700;color:#fff;text-align:center;margin-bottom:.5rem} p[data-v-f9a0c270]{font-size:.375rem;font-weight:400;color:rgba(45,71,106,.8);margin-top:.4375rem}.wan[data-v-f9a0c270]{position:absolute;left:2.40625rem;top:.25rem;font-size:.5rem;font-weight:700}.wtitle[data-v-f9a0c270]{width:6.25rem;height:.75rem;position:absolute;left:50%;transform:translate(-50%);top:8.375rem;z-index:999}.wtitle img[data-v-f9a0c270]{width:100%}.topb[data-v-f9a0c270]{width:100%;height:6.25rem;background:url(../img/zpbg.70d9930a.png) no-repeat;background-size:cover}.topb img[data-v-f9a0c270]{width:100%}.title[data-v-f9a0c270]{width:100%;height:1.5625rem;font-size:.5625rem;background-color:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;line-height:1.5625rem;padding-left:.5rem;position:relative}.container[data-v-f9a0c270]{height:auto;background-color:#f8f8f8;display:flex;justify-content:space-between;align-items:center;flex-direction:column;min-height:100%}.bt[data-v-f9a0c270]{font-size:.5rem;margin-left:3rem;font-weight:700;color:#2d476a}.tb[data-v-f9a0c270]{position:absolute;height:.75rem;line-height:.75rem;left:.5rem;top:.4375rem;border-radius:.0625rem;border:1px solid #2d476a;font-size:.3125rem;font-weight:500;color:#2d476a;width:2.75rem;text-align:center;align-items:center}.tb img[data-v-f9a0c270]{width:.375rem;height:.375rem;vertical-align:middle}.content[data-v-f9a0c270]{margin:1.125rem .5rem .5rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;position:relative;padding:.5rem .5rem .9375rem .5rem}.creat[data-v-f9a0c270]{width:10.71875rem;height:1.25rem;line-height:1.25rem;background:#75b2fd;border-radius:.3125rem;font-size:.5rem;font-weight:700;color:#fff;text-align:center;margin-bottom:.5rem}
\ No newline at end of file \ No newline at end of file
.logo[data-v-4e964561] .van-uploader__preview-delete{top:0}.des[data-v-4e964561]{font-size:.4375rem;font-weight:700;color:#2d476a;margin-bottom:.375rem}.detail[data-v-4e964561]{background-color:#fff;padding:.375rem .5rem 0 .5rem}.border[data-v-4e964561] .van-field__control{text-align:left!important;background-color:#f8f8f8}.border[data-v-4e964561] .van-cell{padding:0}.banner[data-v-4e964561] .upload[data-v-6ea3d66a]{padding-top:.3125rem;z-index:100;width:100%;position:static;transform:unset;padding:.3125rem .28125rem 0}.img[data-v-4e964561] .van-uploader__preview{display:none}.banner[data-v-4e964561]{width:100%;background-color:#fff;height:3rem}.banner[data-v-4e964561] .van-uploader__upload-icon{display:none}.creat[data-v-4e964561]{margin:.625rem 0;width:10.71875rem;height:1.25rem;line-height:1.25rem;background:#75b2fd;border-radius:.3125rem;font-size:.5rem;font-weight:700;color:#fff;text-align:center;bottom:0}.cube[data-v-4e964561]{width:1.6875rem;height:1.5625rem;background:#f8f8f8;border-radius:.25rem;position:relative;text-align:center}.tj[data-v-4e964561]{height:1rem;line-height:1rem;background:rgba(117,178,253,.8);text-align:center;font-size:.375rem;color:#fff;position:absolute;bottom:0;width:100%}.add[data-v-4e964561]{font-size:1.875rem;font-weight:500;color:#fff}.circle[data-v-4e964561]{width:2rem;height:2rem;background:hsla(0,0%,100%,.6);border-radius:50%;line-height:1.875rem;text-align:center}.upload[data-v-4e964561]{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.van-cell__value--alone[data-v-4e964561],.van-cell__value[data-v-4e964561]{text-align:right}.input[data-v-4e964561]{padding:0}.gn[data-v-4e964561] .van-field__control{text-align:right}.gn[data-v-4e964561] .van-cell__title{font-size:.4375rem;font-weight:700;color:#2d476a}.gn[data-v-4e964561]{margin-top:.375rem;width:100%;padding-bottom:.375rem}.input[data-v-4e964561] .van-uploader__input-wrapper{width:100%}.container[data-v-4e964561]{min-height:100%;height:auto;background:#f8f8f8;display:flex;justify-content:flex-start;flex-direction:column;align-items:center}.img[data-v-4e964561]{width:100%;height:6.25rem;position:relative;background:url(../img/cswiper.d05dcfd9.png)no-repeat;background-size:cover}.mb[data-v-4e964561]{position:absolute;width:100%;height:.5rem;bottom:0;line-height:.5rem;background-color:#8ebffb;font-size:.1875rem;color:#fff}.mb img[data-v-4e964561]{height:100%}.cfx[data-v-4e964561]{position:absolute;width:100%;height:100%} .logo[data-v-468d6820] .van-uploader__preview-delete{top:0}.des[data-v-468d6820]{font-size:.4375rem;font-weight:700;color:#2d476a;margin-bottom:.375rem}.detail[data-v-468d6820]{background-color:#fff;padding:.375rem .5rem 0 .5rem}.border[data-v-468d6820] .van-field__control{text-align:left!important;background-color:#f8f8f8}.border[data-v-468d6820] .van-cell{padding:0}.banner[data-v-468d6820] .upload[data-v-6ea3d66a]{padding-top:.3125rem;z-index:100;width:100%;position:static;transform:unset;padding:.3125rem .28125rem 0}.img[data-v-468d6820] .van-uploader__preview{display:none}.banner[data-v-468d6820]{width:100%;background-color:#fff;height:3rem}.banner[data-v-468d6820] .van-uploader__upload-icon{display:none}.creat[data-v-468d6820]{margin:.625rem 0;width:10.71875rem;height:1.25rem;line-height:1.25rem;background:#75b2fd;border-radius:.3125rem;font-size:.5rem;font-weight:700;color:#fff;text-align:center;bottom:0}.cube[data-v-468d6820]{width:1.6875rem;height:1.5625rem;background:#f8f8f8;border-radius:.25rem;position:relative;text-align:center}.tj[data-v-468d6820]{height:1rem;line-height:1rem;background:rgba(117,178,253,.8);text-align:center;font-size:.375rem;color:#fff;position:absolute;bottom:0;width:100%}.add[data-v-468d6820]{font-size:1.875rem;font-weight:500;color:#fff}.circle[data-v-468d6820]{width:2rem;height:2rem;background:hsla(0,0%,100%,.6);border-radius:50%;line-height:1.875rem;text-align:center}.upload[data-v-468d6820]{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.van-cell__value--alone[data-v-468d6820],.van-cell__value[data-v-468d6820]{text-align:right}.input[data-v-468d6820]{padding:0}.gn[data-v-468d6820] .van-field__control{text-align:right}.gn[data-v-468d6820] .van-cell__title{font-size:.4375rem;font-weight:700;color:#2d476a}.gn[data-v-468d6820]{margin-top:.375rem;width:100%;padding-bottom:.375rem}.input[data-v-468d6820] .van-uploader__input-wrapper{width:100%}.container[data-v-468d6820]{min-height:100%;height:auto;background:#f8f8f8;display:flex;justify-content:flex-start;flex-direction:column;align-items:center}.img[data-v-468d6820]{width:100%;height:6.25rem;position:relative;background:url(../img/cswiper.d05dcfd9.png)no-repeat;background-size:cover}.mb[data-v-468d6820]{position:absolute;width:100%;height:.5rem;bottom:0;line-height:.5rem;background-color:#8ebffb;font-size:.1875rem;color:#fff}.mb img[data-v-468d6820]{height:100%}.cfx[data-v-468d6820]{position:absolute;width:100%;height:100%}
\ No newline at end of file \ No newline at end of file
.container[data-v-2b8d422e] .van-tabs__wrap,.van-tabs__wrap--scrollable[data-v-2b8d422e]{height:1.25rem}.container[data-v-2b8d422e] .van-tab,.van-ellipsis[data-v-2b8d422e],.van-tab--active[data-v-2b8d422e]{line-height:1.25rem}.tab[data-v-2b8d422e]{box-shadow:0 1px .09375rem 0 #ddd}.content[data-v-2b8d422e] .van-cell__value{font-size:.4375rem;font-weight:400;color:#2d476a;line-height:1.375rem}.custom-title[data-v-2b8d422e]{margin-left:.375rem;font-size:.5rem;font-weight:700;color:#2d476a}.content img[data-v-2b8d422e]{width:1.375rem;height:1.375rem;border-radius:50%;vertical-align:middle}.tab[data-v-2b8d422e] .van-tabs__nav--card .van-tab{border-right:none}.tab[data-v-2b8d422e] .van-tab.van-tab--active{background-color:#75b2fd}.tab[data-v-2b8d422e] .van-tabs__nav--card{margin:0;border:none;height:1.25rem}.list[data-v-2b8d422e] .van-icon,.van-icon-notes-o[data-v-2b8d422e]{color:#2d476a}.list[data-v-2b8d422e]{height:14.65625rem;background:#fff;margin-top:.375rem}.money[data-v-2b8d422e]{width:3.75rem;height:1rem;line-height:1rem;background:#f8f8f8;border-radius:.5rem;text-align:center;font-size:.5625rem;font-weight:700;color:#d0021b;margin:0 auto;margin-top:.25rem}.detail[data-v-2b8d422e]{font-size:.3125rem;color:#75b2fd;margin-top:.25rem}.top p[data-v-2b8d422e]{color:#2d476a;font-size:.375rem}.top img[data-v-2b8d422e]{width:1rem;height:1rem}.container[data-v-2b8d422e]{height:auto;min-height:100%;display:flex;flex-direction:column;justify-content:flex-start}.top[data-v-2b8d422e]{height:5rem;background:#fff;box-shadow:0 .0625rem .125rem 0 #ddd;padding:.75rem;display:flex}.left[data-v-2b8d422e],.right[data-v-2b8d422e]{flex:1;width:100%;text-align:center}.right[data-v-2b8d422e]{border-left:1px solid #eee}.main-menuBar[data-v-2b8d422e]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-2b8d422e]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-2b8d422e]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-2b8d422e]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-2b8d422e]{color:#4377bc}
\ No newline at end of file
.testCube[data-v-66159043]{width:1.875rem;height:.3125rem;background-color:#f08080;border:1px solid #fff}.main[data-v-66159043]{background-color:#edeff3;width:100%;height:auto;padding-bottom:2.9375rem;display:flex;flex-direction:column;justify-content:start;overflow:auto}.main-manInfos[data-v-66159043]{width:100%;height:2.25rem;background-color:#4377bc;padding:0 .5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.manInfo-logos[data-v-66159043]{width:1.5rem;height:1.5rem;display:flex;flex-direction:row;justify-content:start;align-items:center}.logos-logo[data-v-66159043]{width:1.5rem;height:1.5rem;object-fit:cover;border-radius:50%;border:.0625rem solid #fff}.manInfo-name[data-v-66159043]{width:100%;height:.5625rem;padding:0 .375rem;margin-right:1.875rem;color:#fff;font-size:.4375rem;line-height:.5rem;font-weight:700}.manInfo-switch[data-v-66159043]{width:3.125rem;height:.5625rem;font-size:.4375rem;line-height:.5625rem;font-weight:700;display:flex;flex-direction:row;justify-content:flex-end;align-items:center}.switch-icon[data-v-66159043]{width:.15625rem;height:.25rem}.switch-text[data-v-66159043]{color:#fff;padding-right:.125rem;font-size:.4375rem;line-height:.5rem;font-weight:400}.main-tips[data-v-66159043]{width:100%;height:1.5rem;background-color:#f8f8f8;padding:0 .5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.tips-tip[data-v-66159043]{width:30%;height:.5rem;color:#4377bc;font-size:.375rem;font-weight:400;line-height:.5rem;text-align:center}.main-menus[data-v-66159043]{width:100%;height:7.5rem;display:flex;flex-direction:column;justify-content:start}.menus-row[data-v-66159043]{width:100%;height:3.75rem;padding:.375rem .5rem 0 .5rem;display:flex;flex-direction:row;justify-content:space-between}.menu[data-v-66159043]{width:3.375rem;height:3.375rem;background-color:#f8f8f8;display:flex;flex-direction:column;justify-content:center;align-items:center}.menu-logo[data-v-66159043]{width:1.5rem;height:1.5rem;object-fit:cover}.menu-text[data-v-66159043]{font-size:.4375rem;font-weight:700;color:#2d476a}.main-actives[data-v-66159043]{width:100%;height:11.875rem;margin-top:1.125rem;padding:0 .375rem;background-color:#fff;display:flex;flex-direction:column;justify-content:start}.actives-banners[data-v-66159043]{border-bottom:1px solid #eee;width:100%;height:.78125rem;display:flex;flex-direction:row;justify-content:center}.actives-banner-small[data-v-66159043]{width:6.875rem;height:.9375rem;object-fit:cover;position:relative;bottom:.21875rem}.actives-banner-title[data-v-66159043]{background:url(/mainSale/icon-active-title.png);background-repeat:no-repeat;background-size:100% 100%;width:6.875rem;height:.9375rem;font-size:.5rem;line-height:.5rem;color:#2d476a;text-align:center;position:relative;bottom:.21875rem}.actives-banner-main[data-v-66159043]{width:4.625rem;height:.75rem;border-radius:1.25rem;margin:0 .125rem;font-size:.5rem;font-weight:700;line-height:.5625rem;text-align:center;color:#2d476a;background:linear-gradient(#fff,50%,#e4f9ff);box-shadow:0 1px 1px 0 #96cedc;position:relative;bottom:.375rem}.actives-main[data-v-66159043]{border-bottom:1px solid #eee;width:100%;height:3.28125rem;padding:.375rem 0;display:flex;flex-direction:row;justify-content:start}.active-logos[data-v-66159043]{background-color:#f8f8f8;width:2.5rem;height:2.5rem;display:flex;flex-direction:row;justify-content:center;align-items:center}.active-logo[data-v-66159043]{width:1.75rem;height:1.75rem}.active-infos[data-v-66159043]{width:100%;height:2.5rem;padding-left:.375rem;display:flex;flex-direction:column;justify-content:center}.active-title[data-v-66159043]{height:.5rem;font-size:.4375rem;font-weight:700;line-height:.4375rem;margin-bottom:.25rem}.active-dsc[data-v-66159043]{height:1.125rem;width:100%;font-size:.375rem;font-weight:400}.actives-mores[data-v-66159043]{width:100%;height:1.25rem;display:flex;flex-direction:row;justify-content:center;align-items:center}.mores-title[data-v-66159043]{width:auto;height:.4375rem;margin-right:.125rem;font-size:.375rem;font-weight:400;line-height:.4375rem;color:#2d476a}.mores-icon[data-v-66159043]{width:.3125rem;height:.4375rem}.main-menuBar[data-v-66159043]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-66159043]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-66159043]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-66159043]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-66159043]{color:#4377bc} .testCube[data-v-1040c01b]{width:1.875rem;height:.3125rem;background-color:#f08080;border:1px solid #fff}.main[data-v-1040c01b]{background-color:#edeff3;width:100%;height:auto;padding-bottom:2.9375rem;display:flex;flex-direction:column;justify-content:start;overflow:auto}.main-manInfos[data-v-1040c01b]{width:100%;height:2.25rem;background-color:#4377bc;padding:0 .5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.manInfo-logos[data-v-1040c01b]{width:1.5rem;height:1.5rem;display:flex;flex-direction:row;justify-content:start;align-items:center}.logos-logo[data-v-1040c01b]{width:1.5rem;height:1.5rem;object-fit:cover;border-radius:50%;border:.0625rem solid #fff}.manInfo-name[data-v-1040c01b]{width:100%;height:.5625rem;padding:0 .375rem;margin-right:1.875rem;color:#fff;font-size:.4375rem;line-height:.5rem;font-weight:700}.manInfo-switch[data-v-1040c01b]{width:3.125rem;height:.5625rem;font-size:.4375rem;line-height:.5625rem;font-weight:700;display:flex;flex-direction:row;justify-content:flex-end;align-items:center}.switch-icon[data-v-1040c01b]{width:.15625rem;height:.25rem}.switch-text[data-v-1040c01b]{color:#fff;padding-right:.125rem;font-size:.4375rem;line-height:.5rem;font-weight:400}.main-tips[data-v-1040c01b]{width:100%;height:1.5rem;background-color:#f8f8f8;padding:0 .5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.tips-tip[data-v-1040c01b]{width:30%;height:.5rem;color:#4377bc;font-size:.375rem;font-weight:400;line-height:.5rem;text-align:center}.main-menus[data-v-1040c01b]{width:100%;height:7.5rem;display:flex;flex-direction:column;justify-content:start}.menus-row[data-v-1040c01b]{width:100%;height:3.75rem;padding:.375rem .5rem 0 .5rem;display:flex;flex-direction:row;justify-content:space-between}.menu[data-v-1040c01b]{width:3.375rem;height:3.375rem;background-color:#f8f8f8;display:flex;flex-direction:column;justify-content:center;align-items:center}.menu-logo[data-v-1040c01b]{width:1.5rem;height:1.5rem;object-fit:cover}.menu-text[data-v-1040c01b]{font-size:.4375rem;font-weight:700;color:#2d476a}.main-actives[data-v-1040c01b]{width:100%;height:11.875rem;margin-top:1.125rem;padding:0 .375rem;background-color:#fff;display:flex;flex-direction:column;justify-content:start}.actives-banners[data-v-1040c01b]{border-bottom:1px solid #eee;width:100%;height:.78125rem;display:flex;flex-direction:row;justify-content:center}.actives-banner-small[data-v-1040c01b]{width:6.875rem;height:.9375rem;object-fit:cover;position:relative;bottom:.21875rem}.actives-banner-title[data-v-1040c01b]{background:url(/mainSale/icon-active-title.png);background-repeat:no-repeat;background-size:100% 100%;width:6.875rem;height:.9375rem;font-size:.5rem;line-height:.5rem;color:#2d476a;text-align:center;position:relative;bottom:.21875rem}.actives-banner-main[data-v-1040c01b]{width:4.625rem;height:.75rem;border-radius:1.25rem;margin:0 .125rem;font-size:.5rem;font-weight:700;line-height:.5625rem;text-align:center;color:#2d476a;background:linear-gradient(#fff,50%,#e4f9ff);box-shadow:0 1px 1px 0 #96cedc;position:relative;bottom:.375rem}.actives-main[data-v-1040c01b]{border-bottom:1px solid #eee;width:100%;height:3.28125rem;padding:.375rem 0;display:flex;flex-direction:row;justify-content:start}.active-logos[data-v-1040c01b]{background-color:#f8f8f8;width:2.5rem;height:2.5rem;display:flex;flex-direction:row;justify-content:center;align-items:center}.active-logo[data-v-1040c01b]{width:1.75rem;height:1.75rem}.active-infos[data-v-1040c01b]{width:100%;height:2.5rem;padding-left:.375rem;display:flex;flex-direction:column;justify-content:center}.active-title[data-v-1040c01b]{height:.5rem;font-size:.4375rem;font-weight:700;line-height:.4375rem;margin-bottom:.25rem}.active-dsc[data-v-1040c01b]{height:1.125rem;width:100%;font-size:.375rem;font-weight:400}.actives-mores[data-v-1040c01b]{width:100%;height:1.25rem;display:flex;flex-direction:row;justify-content:center;align-items:center}.mores-title[data-v-1040c01b]{width:auto;height:.4375rem;margin-right:.125rem;font-size:.375rem;font-weight:400;line-height:.4375rem;color:#2d476a}.mores-icon[data-v-1040c01b]{width:.3125rem;height:.4375rem}.main-menuBar[data-v-1040c01b]{box-shadow:inset 0 1px .0625rem 0 #ddd;width:100%;height:2.5625rem;position:fixed;bottom:0;left:0;background-color:#fafafa;padding:0 .4375rem;display:flex;flex-direction:row;justify-content:space-between}.menuBar-menu[data-v-1040c01b]{width:1.5rem;height:1.46875rem;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.menuBar-icon[data-v-1040c01b]{width:.75rem;height:.75rem;object-fit:cover}.menuBar-title[data-v-1040c01b]{width:auto;height:.375rem;font-size:.3125rem;font-weight:700;color:rgba(67,119,188,.4);text-align:center}.menuBar-title-ac[data-v-1040c01b]{color:#4377bc}
\ No newline at end of file \ No newline at end of file
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>亿百分</title><link href=/css/chunk-vendors.0e32032d.css rel=stylesheet><link href=/css/app.009737d6.css rel=stylesheet></head><body><noscript><strong>We're sorry but ybf_wx doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=http://res.wx.qq.com/open/js/jweixin-1.2.0.js></script><script src=/js/chunk-vendors.c95b8ecf.js></script><script src=/js/app.28085eaa.js></script></body></html> <!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>亿百分</title><script src=http://res.wx.qq.com/open/js/jweixin-1.6.0.js></script><link href=/css/chunk-vendors.0e32032d.css rel=stylesheet><link href=/css/app.92da5f73.css rel=stylesheet></head><body><noscript><strong>We're sorry but ybf_wx doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=http://res.wx.qq.com/open/js/jweixin-1.2.0.js></script><script src=/js/chunk-vendors.7767aa6a.js></script><script src=/js/app.dd684bcc.js></script></body></html>
\ No newline at end of file \ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-0016fa9e"],{"2ae8":function(s,t,i){},9063:function(s,t,i){"use strict";var a=i("2ae8"),l=i.n(a);l.a},f0b1:function(s,t,i){"use strict";i.r(t);var a=function(){var s=this,t=s.$createElement;s._self._c;return s._m(0)},l=[function(){var s=this,t=s.$createElement,i=s._self._c||t;return i("div",{staticClass:"container"},[i("div",{staticClass:"title"},[i("span",[s._v("会员分裂")]),i("span",{staticClass:"fr"},[s._v("查看更多"),i("span",{staticClass:"icon"},[s._v(">")])])]),i("div",{staticClass:"active"},[i("div",{staticClass:"list"},[i("div",{staticClass:"left"}),i("div",{staticClass:"right"},[i("h3",[s._v("砍价")]),i("p",[s._v("由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状。")])])]),i("div",{staticClass:"list"},[i("div",{staticClass:"left"}),i("div",{staticClass:"right"},[i("h3",[s._v("集赞")]),i("p",[s._v("由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状。")])])]),i("div",{staticClass:"list list3"},[i("div",{staticClass:"left"}),i("div",{staticClass:"right"},[i("h3",[s._v("推荐有礼")]),i("p",[s._v("由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状。")])])])]),i("div",{staticClass:"fg"},[s._v("复购")]),i("div",{staticClass:"active"},[i("div",{staticClass:"list"},[i("div",{staticClass:"left"}),i("div",{staticClass:"right"},[i("h3",[s._v("大转盘抽奖")]),i("p",[s._v("由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状。")])])]),i("div",{staticClass:"list list3"},[i("div",{staticClass:"left"}),i("div",{staticClass:"right"},[i("h3",[s._v("砸金蛋抽奖")]),i("p",[s._v("由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状。")])])])])])}],c={},v=c,e=(i("9063"),i("2877")),n=Object(e["a"])(v,a,l,!1,null,"75a0f99a",null);t["default"]=n.exports}}]);
//# sourceMappingURL=chunk-0016fa9e.2aa0bb10.js.map
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-0056cb71"],{"6ab1":function(t,i,s){"use strict";var c=s("f829"),a=s.n(c);a.a},"71fc":function(t,i,s){"use strict";s.r(i);var c=function(){var t=this,i=t.$createElement,s=t._self._c||i;return s("div",{staticClass:"lists"},t._l(t.list.active,(function(i,c){return s("div",{key:c},[s("div",{staticClass:"list",on:{click:function(i){return t.listClick(c)}}},[s("div",{staticClass:"list-logos"},[s("img",{staticClass:"list-logo",attrs:{src:i.logoUrl}})]),s("div",{staticClass:"list-infos"},[s("div",{staticClass:"list-title"},[t._v(t._s(i.name))]),s("div",{staticClass:"list-dsc"},[t._v(t._s(i.dsc))])])])])})),0)},a=[],n={name:"discountIndex",data:function(){return{list:{active:[{name:"大转盘活动",logoUrl:"/mainSale/icon-active-1.png",dsc:"有各种物质组成的举行球状天体,叫做星球。星球有一定的形状。",reDirect:"turntableDetail"},{name:"送券活动",logoUrl:"/mainSale/icon-active-2.png",dsc:"有各种物质组成的举行球状天体,叫做星球。星球有一定的形状。",reDirect:"couponDetail"}]}}},created:function(){},methods:{listClick:function(t){this.$router.push(this.list.active[t].reDirect)}}},l=n,e=(s("6ab1"),s("2877")),o=Object(e["a"])(l,c,a,!1,null,"695dca3a",null);i["default"]=o.exports},f829:function(t,i,s){}}]);
//# sourceMappingURL=chunk-0056cb71.2003731d.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///./src/views/mainSale/active/template/index.vue?21a4","webpack:///./src/views/mainSale/active/template/index.vue?cb6e","webpack:///src/views/mainSale/active/template/index.vue","webpack:///./src/views/mainSale/active/template/index.vue?db1e","webpack:///./src/views/mainSale/active/template/index.vue"],"names":["render","_vm","this","_h","$createElement","_c","_self","staticClass","_l","list","item","index","key","on","$event","listClick","attrs","logoUrl","_v","_s","name","dsc","staticRenderFns","component"],"mappings":"kHAAA,yBAA0hB,EAAG,G,2CCA7hB,IAAIA,EAAS,WAAa,IAAIC,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,MAAM,CAACE,YAAY,SAASN,EAAIO,GAAIP,EAAIQ,KAAW,QAAE,SAASC,EAAKC,GAAO,OAAON,EAAG,MAAM,CAACO,IAAID,GAAO,CAACN,EAAG,MAAM,CAACE,YAAY,OAAOM,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOb,EAAIc,UAAUJ,MAAU,CAACN,EAAG,MAAM,CAACE,YAAY,cAAc,CAACF,EAAG,MAAM,CAACE,YAAY,YAAYS,MAAM,CAAC,IAAMN,EAAKO,aAAaZ,EAAG,MAAM,CAACE,YAAY,cAAc,CAACF,EAAG,MAAM,CAACE,YAAY,cAAc,CAACN,EAAIiB,GAAGjB,EAAIkB,GAAGT,EAAKU,SAASf,EAAG,MAAM,CAACE,YAAY,YAAY,CAACN,EAAIiB,GAAGjB,EAAIkB,GAAGT,EAAKW,iBAAgB,IACljBC,EAAkB,GCuBtB,GACE,KAAF,gBACE,KAFF,WAGI,MAAJ,CACM,KAAN,CACQ,OAAR,CACA,CACU,KAAV,QACU,QAAV,8BACU,IAAV,gCACU,SAAV,mBAEA,CACU,KAAV,OACU,QAAV,8BACU,IAAV,gCACU,SAAV,oBAME,QAtBF,aAyBE,QAAF,CACI,UADJ,SACA,GAGM,KAAN,8CCrD4X,I,wBCQxXC,EAAY,eACd,EACAvB,EACAsB,GACA,EACA,KACA,WACA,MAIa,aAAAC,E","file":"js/chunk-0056cb71.2003731d.js","sourcesContent":["import mod from \"-!../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=style&index=0&id=695dca3a&scoped=true&lang=css&\"; export default mod; export * from \"-!../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=style&index=0&id=695dca3a&scoped=true&lang=css&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"lists\"},_vm._l((_vm.list.active),function(item,index){return _c('div',{key:index},[_c('div',{staticClass:\"list\",on:{\"click\":function($event){return _vm.listClick(index)}}},[_c('div',{staticClass:\"list-logos\"},[_c('img',{staticClass:\"list-logo\",attrs:{\"src\":item.logoUrl}})]),_c('div',{staticClass:\"list-infos\"},[_c('div',{staticClass:\"list-title\"},[_vm._v(_vm._s(item.name))]),_c('div',{staticClass:\"list-dsc\"},[_vm._v(_vm._s(item.dsc))])])])])}),0)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n\n <div class=\"lists\">\n <div v-for=\"(item, index) of list.active\" :key=\"index\">\n <div class=\"list\" @click=\"listClick(index)\">\n <div class=\"list-logos\">\n <img class=\"list-logo\" :src=\"item.logoUrl\">\n </div>\n <div class=\"list-infos\">\n <div class=\"list-title\">{{item.name}}</div>\n <div class=\"list-dsc\">{{item.dsc}}</div>\n </div>\n </div>\n\n </div>\n </div>\n\n\n</template>\n\n<script>\n // ZKit\n // const log = console.log.bind(console)\n\n export default {\n name: \"discountIndex\",\n data() {\n return {\n list: {\n active: [\n {\n name: \"大转盘活动\",\n logoUrl: \"/mainSale/icon-active-1.png\",\n dsc: \"有各种物质组成的举行球状天体,叫做星球。星球有一定的形状。\",\n reDirect: \"turntableDetail\"\n },\n {\n name: \"送券活动\",\n logoUrl: \"/mainSale/icon-active-2.png\",\n dsc: \"有各种物质组成的举行球状天体,叫做星球。星球有一定的形状。\",\n reDirect: \"couponDetail\"\n }\n ],\n },\n };\n },\n created() {\n\n },\n methods: {\n listClick(inIndex){\n // log('--->click: inIndex =', inIndex)\n // log('--->click: reDirect =', this.list.active[inIndex].reDirect)\n this.$router.push(this.list.active[inIndex].reDirect)\n },\n }\n };\n</script>\n\n<style scoped>\n .lists {\n padding: 4px 16px 20px 16px;\n }\n\n .list {\n padding: 12px 0px;\n display: flex;\n flex-direction: row;\n justify-content: start;\n align-items: center;\n border-bottom: 1px solid #EEEEEE;\n }\n\n .list-logos {\n width: 80px;\n height: 80px;\n background-color: #F8F8F8;\n\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n }\n\n .list-logo {\n width: 56px;\n height: 56px;\n }\n\n .list-infos {\n width: 251px;\n height: 80px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: start;\n\n margin-left: 12px;\n }\n\n .list-title {\n font-size: 14px;\n height: 16px;\n line-height: 16px;\n font-weight: bold;\n color: #2D476A;\n width: 100%;\n text-align: left;\n\n margin-bottom: 8px;\n }\n\n .list-dsc {\n font-size: 12px;\n height: 14px;\n line-height: 14px;\n font-weight: normal;\n color: #2D476A;\n width: 100%;\n text-align: left;\n overflow: auto;\n }\n</style>\n","import mod from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./index.vue?vue&type=template&id=695dca3a&scoped=true&\"\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&id=695dca3a&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"695dca3a\",\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""}
\ No newline at end of file
This diff is collapsed.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-10ae869c"],{"31ec":function(t,e,a){},5463:function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"container"},[t._m(0),a("van-cell-group",{staticClass:"option"},[a("van-cell",{staticClass:"nop"},[a("div",{staticClass:"type"},[a("div",{staticClass:"t-l"},[t._v("佣金类型")]),a("div",{staticClass:"t-r"},[a("van-radio-group",{on:{change:t.handleChooseChange},model:{value:t.type,callback:function(e){t.type=e},expression:"type"}},[a("van-radio",{staticStyle:{float:"left"},attrs:{name:"1"}},[t._v("固定金额")]),a("van-radio",{staticStyle:{float:"right"},attrs:{name:"2"}},[t._v("成交价比例")])],1),1==t.type?a("div",{staticClass:"fr"},[a("span",{staticClass:"fr",staticStyle:{"margin-top":"18px"}},[t._v("元")]),a("van-field",{staticClass:"price",attrs:{readonly:"",clickable:"",value:t.price,placeholder:"请输入金额"},nativeOn:{touchstart:function(e){e.stopPropagation(),t.show2=!0}}}),a("van-number-keyboard",{attrs:{show:t.show2},on:{blur:function(e){t.show2=!1}},model:{value:t.price,callback:function(e){t.price=e},expression:"price"}})],1):t._e(),2==t.type?a("div",{staticClass:"fr"},[a("span",{staticClass:"fr",staticStyle:{"margin-top":"18px"}},[t._v("%")]),a("van-field",{staticClass:"price",attrs:{readonly:"",clickable:"",value:t.percent,placeholder:"请输入百分比"},nativeOn:{touchstart:function(e){e.stopPropagation(),t.show3=!0}}}),a("van-number-keyboard",{attrs:{show:t.show3},on:{blur:function(e){t.show3=!1}},model:{value:t.percent,callback:function(e){t.percent=e},expression:"percent"}})],1):t._e()],1)])]),a("van-cell",{staticStyle:{"font-size":"14px"},attrs:{title:"活动开始时间"}},[a("template",{slot:"default"},[a("div",{staticClass:"jpsl"},[a("van-field",{staticClass:"nop",attrs:{placeholder:"选择活动开始时间",readonly:"readonly"},on:{click:function(e){t.startShow=!0}},model:{value:t.startTime1,callback:function(e){t.startTime1=e},expression:"startTime1"}}),a("van-popup",{attrs:{position:"bottom",overlay:!0},model:{value:t.startShow,callback:function(e){t.startShow=e},expression:"startShow"}},[a("van-datetime-picker",{attrs:{type:"datetime"},on:{cancel:function(e){t.startShow=!1},confirm:t.handleStartTime,change:t.startTimeChange},model:{value:t.startTime,callback:function(e){t.startTime=e},expression:"startTime"}})],1)],1)])],2),a("van-cell",{staticStyle:{"font-size":"14px"},attrs:{title:"活动结束时间"}},[a("template",{slot:"default"},[a("div",{staticClass:"jpsl"},[a("van-field",{staticClass:"nop",attrs:{placeholder:"选择活动结束时间",readonly:"readonly"},on:{click:function(e){t.endShow=!0}},model:{value:t.endTime1,callback:function(e){t.endTime1=e},expression:"endTime1"}}),a("van-popup",{attrs:{position:"bottom",overlay:!0},model:{value:t.endShow,callback:function(e){t.endShow=e},expression:"endShow"}},[a("van-datetime-picker",{attrs:{type:"datetime"},on:{cancel:function(e){t.endShow=!1},confirm:t.handleEndTime,change:t.endTimeChange},model:{value:t.endTime,callback:function(e){t.endTime=e},expression:"endTime"}})],1)],1)])],2),a("van-cell",{staticClass:"nob",staticStyle:{"font-size":"14px"},attrs:{title:"上架数量"}},[a("template",{slot:"default"},[a("van-field",{staticClass:"nop",attrs:{readonly:"",clickable:"",value:t.number,placeholder:"请输入数量"},nativeOn:{touchstart:function(e){e.stopPropagation(),t.show=!0}}}),a("van-number-keyboard",{attrs:{show:t.show},on:{blur:function(e){t.show=!1}},model:{value:t.number,callback:function(e){t.number=e},expression:"number"}})],1)],2)],1),a("div",{staticClass:"creat"},[t._v("立即上架")])],1)},s=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"list"},[n("div",{staticClass:"good"},[n("div",{staticClass:"left"},[n("img",{attrs:{src:a("e680")}})]),n("div",{staticClass:"center"},[n("div",{staticClass:"name"},[t._v("商品名称商品名称商品名称商品名称商品")]),n("h3",[t._v("¥888")])])])])}],i=(a("99af"),{data:function(){return{startTime:new Date,startTime1:"",endTime:new Date,endTime1:"",startShow:!1,endShow:!1,number:"",type:"1",show:!1,show2:!1,show3:!1,price:"",percent:""}},methods:{timeFormat:function(t){var e=1900+t.getYear(),a="0"+(t.getMonth()+1),n="0"+t.getDate();return e+"-"+a.substring(a.length-2,a.length)+"-"+n.substring(n.length-2,n.length)+" "},startTimeChange:function(t){var e=t.getValues();this.startTime1="".concat(e[0],"-").concat(e[1],"-").concat(e[2])},endTimeChange:function(t){var e=t.getValues();this.endTime1="".concat(e[0],"-").concat(e[1],"-").concat(e[2])},handleStartTime:function(t){this.startTime1=this.timeFormat(t),this.startShow=!1},handleEndTime:function(t){this.endTime1=this.timeFormat(t),this.endShow=!1},handleChooseChange:function(t){this.price="",this.percent=""}}}),o=i,c=(a("b890"),a("2877")),l=Object(c["a"])(o,n,s,!1,null,"053c11b2",null);e["default"]=l.exports},b890:function(t,e,a){"use strict";var n=a("31ec"),s=a.n(n);s.a},e680:function(t,e,a){t.exports=a.p+"img/goods.bd651c6f.png"}}]);
//# sourceMappingURL=chunk-10ae869c.c220289f.js.map
\ No newline at end of file
This diff is collapsed.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-1c6484f2"],{"12af":function(t,n,a){"use strict";var e=a("db18"),i=a.n(e);i.a},9678:function(t,n,a){"use strict";a.r(n);var e=function(){var t=this,n=t.$createElement,e=t._self._c||n;return e("div",{staticClass:"container"},[e("van-tabs",{staticClass:"tab",attrs:{type:"card","title-active-color":"#fff","title-inactive-color":"#2D476A",background:"#F8F8F8"},on:{click:t.onClick}},[e("van-tab",{attrs:{title:"人员拉新"}},[e("van-list",{attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(n){t.writeOff=n},expression:"writeOff"}},t._l(t.newMemberList,(function(n,i){return e("van-cell",{key:i,staticClass:"content",attrs:{value:n.number,"is-link":""}},[e("template",{slot:"title"},[e("img",{attrs:{src:a("e66c"),alt:""}}),e("span",{staticClass:"custom-title"},[t._v(t._s(n.name))])])],2)})),1)],1),e("van-tab",{attrs:{title:"顾客流失"}},[e("van-list",{attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(n){t.writeOff=n},expression:"writeOff"}},t._l(t.newMemberList,(function(n,i){return e("van-cell",{key:i,staticClass:"content",attrs:{value:n.number,"is-link":""}},[e("template",{slot:"title"},[e("img",{attrs:{src:a("e66c"),alt:""}}),e("span",{staticClass:"custom-title"},[t._v(t._s(n.name))])])],2)})),1)],1),e("van-tab",{attrs:{title:"拉接受问询"}},[e("van-list",{attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(n){t.writeOff=n},expression:"writeOff"}},t._l(t.newMemberList,(function(n,i){return e("van-cell",{key:i,staticClass:"content",attrs:{value:n.number,"is-link":""}},[e("template",{slot:"title"},[e("img",{attrs:{src:a("e66c"),alt:""}}),e("span",{staticClass:"custom-title"},[t._v(t._s(n.name))])])],2)})),1)],1),e("van-tab",{attrs:{title:"回复问询"}},[e("van-list",{attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(n){t.writeOff=n},expression:"writeOff"}},t._l(t.newMemberList,(function(n,i){return e("van-cell",{key:i,staticClass:"content",attrs:{value:n.number,"is-link":""}},[e("template",{slot:"title"},[e("img",{attrs:{src:a("e66c"),alt:""}}),e("span",{staticClass:"custom-title"},[t._v(t._s(n.name))])])],2)})),1)],1),e("van-tab",{attrs:{title:"推券"}},[e("van-list",{attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(n){t.writeOff=n},expression:"writeOff"}},t._l(t.newMemberList,(function(n,i){return e("van-cell",{key:i,staticClass:"content",attrs:{value:n.number,"is-link":""}},[e("template",{slot:"title"},[e("img",{attrs:{src:a("e66c"),alt:""}}),e("span",{staticClass:"custom-title"},[t._v(t._s(n.name))])])],2)})),1)],1),e("van-tab",{attrs:{title:"推活动"}},[e("van-list",{attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(n){t.writeOff=n},expression:"writeOff"}},t._l(t.newMemberList,(function(n,i){return e("van-cell",{key:i,staticClass:"content",attrs:{value:n.number,"is-link":""}},[e("template",{slot:"title"},[e("img",{attrs:{src:a("e66c"),alt:""}}),e("span",{staticClass:"custom-title"},[t._v(t._s(n.name))])])],2)})),1)],1),e("van-tab",{attrs:{title:"推商品"}},[e("van-list",{attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(n){t.writeOff=n},expression:"writeOff"}},t._l(t.newMemberList,(function(n,i){return e("van-cell",{key:i,staticClass:"content",attrs:{value:n.number,"is-link":""}},[e("template",{slot:"title"},[e("img",{attrs:{src:a("e66c"),alt:""}}),e("span",{staticClass:"custom-title"},[t._v(t._s(n.name))])])],2)})),1)],1)],1),e("div",{staticClass:"main-menuBar"},[e("div",{staticClass:"menuBar-menu",on:{click:function(n){return t.menuBarClick("MainSale")}}},[e("img",{staticClass:"menuBar-icon",attrs:{src:t.menuBarInfo.icon.now["1"]}}),e("div",{staticClass:"menuBar-title"},[t._v("活动")])]),e("div",{staticClass:"menuBar-menu",on:{click:function(n){return t.menuCase()}}},[e("img",{staticClass:"menuBar-icon",attrs:{src:t.menuBarInfo.icon.now["2"]}}),e("div",{staticClass:"menuBar-title"},[t._v("案例")])]),e("div",{staticClass:"menuBar-menu",on:{click:function(n){return t.menuProfit()}}},[e("img",{staticClass:"menuBar-icon",attrs:{src:t.menuBarInfo.icon.now["3"]}}),e("div",{staticClass:"menuBar-title"},[t._v("收益")])]),e("div",{staticClass:"menuBar-menu",on:{click:function(n){return t.menuTask()}}},[e("img",{staticClass:"menuBar-icon",attrs:{src:t.menuBarInfo.icon.now["4"]}}),e("div",{staticClass:"menuBar-title menuBar-title-ac"},[t._v("任务")])]),e("div",{staticClass:"menuBar-menu",on:{click:function(n){return t.menuBarClick("Me")}}},[e("img",{staticClass:"menuBar-icon",attrs:{src:t.menuBarInfo.icon.now["5"]}}),e("div",{staticClass:"menuBar-title"},[t._v("我的")])])])],1)},i=[],s={data:function(){return{writeOff:!1,finished:!1,newMemberList:[{number:100,src:"",name:"Solomon"}],menuBarInfo:{list:{main:[{name:"",iconUaUrl:"",iconAcUrl:""}]},icon:{now:{1:"",2:"",3:"",4:"",5:""},ua:{1:"/mainSale/icon-menuBar-1-ua.png",2:"/mainSale/icon-menuBar-2-ua.png",3:"/mainSale/icon-menuBar-3-ua.png",4:"/mainSale/icon-menuBar-4-ua.png",5:"/mainSale/icon-menuBar-5-ua.png"},ac:{1:"/mainSale/icon-menuBar-1-ac.png",2:"/mainSale/icon-menuBar-2-ac.png",3:"/mainSale/icon-menuBar-3-ac.png",4:"/mainSale/icon-menuBar-4-ac.png",5:"/mainSale/icon-menuBar-5-ac.png"}}}}},created:function(){this.checkNowMenuBar()},methods:{onClick:function(){},onLoad:function(){this.writeOff=!1},checkNowMenuBar:function(){var t="4";this.menuBarInfo.icon.now=this.menuBarInfo.icon.ua,this.menuBarInfo.icon.now[t]=this.menuBarInfo.icon.ac[t]},menuBarClick:function(t){this.$router.push(t)},listTaskClick:function(){this.$router.push("Task")},menuProfit:function(){this.$router.push({path:"/profitList"})},menuTask:function(){this.$router.push({path:"/taskList"})},menuCase:function(){this.$router.push({path:"/case"})}}},c=s,l=(a("12af"),a("2877")),r=Object(l["a"])(c,e,i,!1,null,"7391f5ed",null);n["default"]=r.exports},db18:function(t,n,a){},e66c:function(t,n,a){t.exports=a.p+"img/photo.10c99b5a.png"}}]);
//# sourceMappingURL=chunk-1c6484f2.ddee01ae.js.map
\ No newline at end of file
This diff is collapsed.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-1e6d1184"],{"29f3":function(t,s,i){"use strict";var a=i("e7e5"),n=i.n(a);n.a},4261:function(t,s,i){"use strict";i.r(s);var a=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"container"},[i("div",{staticClass:"person"},[t._m(0),i("span",{staticClass:"name"},[t._v("营业员1")]),i("div",{staticClass:"fr sx"},[i("span",[t._v("月度")]),i("van-icon",{attrs:{name:"arrow-down"}})],1)]),i("div",{staticClass:"title"},[t._v("月度拉新任务情况统计")]),i("div",{staticClass:"title"},[t._v("9月新增客户")]),i("van-list",{staticClass:"list",attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(s){t.writeOff=s},expression:"writeOff"}},t._l(t.list,(function(s,a){return i("van-cell",{key:a,staticClass:"content",attrs:{value:s.time}},[i("template",{slot:"title"},[i("img",{attrs:{src:"/img/photo.png",alt:""}}),i("div",{staticClass:"info"},[i("div",{staticClass:"custom-title"},[t._v(t._s(s.name))]),i("div",[t._v("18866664444")])])])],2)})),1)],1)},n=[function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("span",{staticClass:"pic"},[i("img",{attrs:{src:"/img/photo.png",alt:""}})])}],e={data:function(){return{writeOff:!1,finished:!1,list:[{time:"2019 / 12 /27",src:"",name:"Solomon"}]}},methods:{onLoad:function(){this.writeOff=!1}}},l=e,c=(i("29f3"),i("2877")),o=Object(c["a"])(l,a,n,!1,null,"560ddab0",null);s["default"]=o.exports},e7e5:function(t,s,i){}}]); (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-20114935"],{"1b4b":function(t,s,i){"use strict";var a=i("ae88"),n=i.n(a);n.a},4261:function(t,s,i){"use strict";i.r(s);var a=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"container"},[i("div",{staticClass:"person"},[t._m(0),i("span",{staticClass:"name"},[t._v("营业员1")]),i("div",{staticClass:"fr sx"},[i("span",[t._v("月度")]),i("van-icon",{attrs:{name:"arrow-down"}})],1)]),i("div",{staticClass:"title"},[t._v("月度拉新任务情况统计")]),i("div",{staticClass:"title"},[t._v("9月新增客户")]),i("van-list",{staticClass:"list",attrs:{finished:t.finished},on:{load:t.onLoad},model:{value:t.writeOff,callback:function(s){t.writeOff=s},expression:"writeOff"}},t._l(t.list,(function(s,a){return i("van-cell",{key:a,staticClass:"content",attrs:{value:s.time}},[i("template",{slot:"title"},[i("img",{attrs:{src:"/img/photo.png",alt:""}}),i("div",{staticClass:"info"},[i("div",{staticClass:"custom-title"},[t._v(t._s(s.name))]),i("div",[t._v("18866664444")])])])],2)})),1)],1)},n=[function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("span",{staticClass:"pic"},[i("img",{attrs:{src:"/img/photo.png",alt:""}})])}],e={data:function(){return{writeOff:!1,finished:!1,list:[{time:"2019 / 12 /27",src:"",name:"Solomon"}]}},methods:{onLoad:function(){this.writeOff=!1}}},l=e,c=(i("1b4b"),i("2877")),o=Object(c["a"])(l,a,n,!1,null,"7ed4382e",null);s["default"]=o.exports},ae88:function(t,s,i){}}]);
//# sourceMappingURL=chunk-1e6d1184.39f566e8.js.map //# sourceMappingURL=chunk-20114935.36a77b83.js.map
\ No newline at end of file \ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-c06b45d6"],{"0c1b":function(t,s,i){"use strict";i.r(s);var a=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"main"},[i("div",{staticClass:"org"},[t._m(0),i("div",{staticClass:"org-infos"},[i("div",{staticClass:"org-info-title"},[t._v(t._s(t.list.orgMsgs[0].title))]),i("div",{staticClass:"org-info-content"},[t._v(t._s(t.list.orgMsgs[0].content))]),i("div",{staticClass:"org-info-other"},[i("div",{staticClass:"org-author"},[t._v(t._s(t.list.orgMsgs[0].author))]),i("div",{staticClass:"org-date"},[t._v(t._s(t.list.orgMsgs[0].date))])])])]),i("div",{staticClass:"my"},[i("div",{staticClass:"my-titles"},[i("div",{staticClass:"my-title"},[t._v(" 我的任务 ")]),i("div",{staticClass:"my-title"},[t._v(" 查看更多 "),i("img",{staticClass:"my-title-icon",attrs:{src:t.cache.icon.arrowRightDark}})])]),i("div",{staticClass:"my-infos"},t._l(t.list.myMsgs,(function(s,a){return i("div",{key:a},[i("div",{staticClass:"my-info",style:0===a?t.cache.style.noBorderTop:""},[i("img",{staticClass:"my-logo",attrs:{src:s.logoUrl}}),i("div",{staticClass:"my-contents"},[i("div",{staticClass:"content-title"},[t._v(t._s(s.title))]),i("div",{staticClass:"content-tasks"},[i("div",{staticClass:"task-title"},[t._v(t._s(s.type)+":")]),"月销售"===s.type?i("div",{staticClass:"task-money"},[t._v("¥"+t._s(s.content))]):t._e(),"月拉新"===s.type?i("div",{staticClass:"task-money"},[t._v(t._s(s.nowNum)+"/"+t._s(s.taskNum)+" ")]):t._e()])])])])})),0)]),i("div",{staticClass:"my"})])},e=[function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"org-titles"},[i("div",{staticClass:"org-title"},[t._v(" 集团任务 ")])])}],o={name:"task",data:function(){return{cache:{icon:{arrowRightDark:"/mainSale/icon-arrow-right-dark.png"},style:{noBorderTop:"border-top: none;"}},list:{orgMsgs:[{title:"备战春节",content:"备战春节,完成业务指标完成业务指标......",author:"亿百分",date:"2019/12/24"},{title:"备战元宵节",content:"备战元宵节,完成业务指标XXXXXXXXXX......",author:"亿百分",date:"2019/12/24"}],myMsgs:[{logoUrl:"/mainSale/test-city.png",title:"营业员1",type:"月销售",content:"123.00"},{logoUrl:"/mainSale/test-city.png",title:"冬季男装",type:"月销售",content:"123456.00"},{logoUrl:"/mainSale/test-city.png",title:"会员拉新",type:"月拉新",taskNum:"500",nowNum:"300"}]}}},created:function(){},methods:{}},n=o,l=(i("ed27"),i("2877")),c=Object(l["a"])(n,a,e,!1,null,"7f87989d",null);s["default"]=c.exports},d558:function(t,s,i){},ed27:function(t,s,i){"use strict";var a=i("d558"),e=i.n(a);e.a}}]); (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-20fe2a44"],{"0c1b":function(t,s,i){"use strict";i.r(s);var a=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"main"},[i("div",{staticClass:"org"},[t._m(0),i("div",{staticClass:"org-infos"},[i("div",{staticClass:"org-info-title"},[t._v(t._s(t.list.orgMsgs[0].title))]),i("div",{staticClass:"org-info-content"},[t._v(t._s(t.list.orgMsgs[0].content))]),i("div",{staticClass:"org-info-other"},[i("div",{staticClass:"org-author"},[t._v(t._s(t.list.orgMsgs[0].author))]),i("div",{staticClass:"org-date"},[t._v(t._s(t.list.orgMsgs[0].date))])])])]),i("div",{staticClass:"my"},[i("div",{staticClass:"my-titles"},[i("div",{staticClass:"my-title"},[t._v(" 我的任务 ")]),i("div",{staticClass:"my-title"},[t._v(" 查看更多 "),i("img",{staticClass:"my-title-icon",attrs:{src:t.cache.icon.arrowRightDark}})])]),i("div",{staticClass:"my-infos"},t._l(t.list.myMsgs,(function(s,a){return i("div",{key:a},[i("div",{staticClass:"my-info",style:0===a?t.cache.style.noBorderTop:""},[i("img",{staticClass:"my-logo",attrs:{src:s.logoUrl}}),i("div",{staticClass:"my-contents"},[i("div",{staticClass:"content-title"},[t._v(t._s(s.title))]),i("div",{staticClass:"content-tasks"},[i("div",{staticClass:"task-title"},[t._v(t._s(s.type)+":")]),"月销售"===s.type?i("div",{staticClass:"task-money"},[t._v("¥"+t._s(s.content))]):t._e(),"月拉新"===s.type?i("div",{staticClass:"task-money"},[t._v(t._s(s.nowNum)+"/"+t._s(s.taskNum)+" ")]):t._e()])])])])})),0)]),i("div",{staticClass:"my"})])},e=[function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"org-titles"},[i("div",{staticClass:"org-title"},[t._v(" 集团任务 ")])])}],o={name:"task",data:function(){return{cache:{icon:{arrowRightDark:"/mainSale/icon-arrow-right-dark.png"},style:{noBorderTop:"border-top: none;"}},list:{orgMsgs:[{title:"备战春节",content:"备战春节,完成业务指标完成业务指标......",author:"亿百分",date:"2019/12/24"},{title:"备战元宵节",content:"备战元宵节,完成业务指标XXXXXXXXXX......",author:"亿百分",date:"2019/12/24"}],myMsgs:[{logoUrl:"/mainSale/test-city.png",title:"营业员1",type:"月销售",content:"123.00"},{logoUrl:"/mainSale/test-city.png",title:"冬季男装",type:"月销售",content:"123456.00"},{logoUrl:"/mainSale/test-city.png",title:"会员拉新",type:"月拉新",taskNum:"500",nowNum:"300"}]}}},created:function(){},methods:{}},n=o,l=(i("94ba"),i("2877")),c=Object(l["a"])(n,a,e,!1,null,"e06fa0b8",null);s["default"]=c.exports},"34d6":function(t,s,i){},"94ba":function(t,s,i){"use strict";var a=i("34d6"),e=i.n(a);e.a}}]);
//# sourceMappingURL=chunk-c06b45d6.a37939d2.js.map //# sourceMappingURL=chunk-20fe2a44.d4794f6b.js.map
\ No newline at end of file \ No newline at end of file
This diff is collapsed.
This diff is collapsed.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-c9cb2a0e"],{"1e38":function(t,n,e){"use strict";e.d(n,"b",(function(){return c})),e.d(n,"a",(function(){return r})),e.d(n,"e",(function(){return i})),e.d(n,"c",(function(){return u})),e.d(n,"d",(function(){return o}));var a=e("a1ec");function c(t){return Object(a["a"])({url:"/admin/common/findLoginType",method:"post",data:t})}function r(t){return Object(a["a"])({url:"",method:"post",data:t})}function i(t){return Object(a["a"])({url:"",method:"post",data:t})}function u(t){return Object(a["a"])({url:"",method:"post",data:t})}function o(t){return Object(a["a"])({url:"",method:"post",data:t})}},2648:function(t,n,e){},"349d":function(t,n,e){"use strict";var a=e("2648"),c=e.n(a);c.a},c21b:function(t,n,e){"use strict";e.r(n);var a=function(){var t=this,n=t.$createElement;t._self._c;return t._m(0)},c=[function(){var t=this,n=t.$createElement,e=t._self._c||n;return e("div",{staticClass:"container"},[e("div",{staticClass:"ct"},[e("div",{staticClass:"head"},[e("h3",[t._v("我的一次成功销售案例")]),e("div",[e("span",[t._v("作者: ")]),e("span",[t._v("亿百分")]),e("span",{staticStyle:{"margin-left":"24px"}},[t._v("2019 / 12 /24")])])]),e("div",{staticClass:"nr"},[e("p",[t._v(" 马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。 ")]),e("p",[t._v(" 马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。 ")]),e("div",{staticClass:"pic"},[e("img",{attrs:{src:"/img/article.png",alt:""}})]),e("p",[t._v(" 马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。 ")])])])])}],r=e("1e38"),i={data:function(){return{}},methods:{getDeatil:function(){var t={};Object(r["a"])(t).then((function(t){console.log(t,"案例详情")}))}}},u=i,o=(e("349d"),e("2877")),s=Object(o["a"])(u,a,c,!1,null,"76814715",null);n["default"]=s.exports}}]); (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d01f118"],{"1e38":function(t,n,e){"use strict";e.d(n,"b",(function(){return c})),e.d(n,"a",(function(){return r})),e.d(n,"e",(function(){return i})),e.d(n,"c",(function(){return u})),e.d(n,"d",(function(){return o}));var a=e("a1ec");function c(t){return Object(a["a"])({url:"/admin/common/findLoginType",method:"post",data:t})}function r(t){return Object(a["a"])({url:"",method:"post",data:t})}function i(t){return Object(a["a"])({url:"",method:"post",data:t})}function u(t){return Object(a["a"])({url:"",method:"post",data:t})}function o(t){return Object(a["a"])({url:"",method:"post",data:t})}},"44b8":function(t,n,e){"use strict";var a=e("db6e"),c=e.n(a);c.a},c21b:function(t,n,e){"use strict";e.r(n);var a=function(){var t=this,n=t.$createElement;t._self._c;return t._m(0)},c=[function(){var t=this,n=t.$createElement,e=t._self._c||n;return e("div",{staticClass:"container"},[e("div",{staticClass:"ct"},[e("div",{staticClass:"head"},[e("h3",[t._v("我的一次成功销售案例")]),e("div",[e("span",[t._v("作者: ")]),e("span",[t._v("亿百分")]),e("span",{staticStyle:{"margin-left":"24px"}},[t._v("2019 / 12 /24")])])]),e("div",{staticClass:"nr"},[e("p",[t._v(" 马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。 ")]),e("p",[t._v(" 马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。 ")]),e("div",{staticClass:"pic"},[e("img",{attrs:{src:"/img/article.png",alt:""}})]),e("p",[t._v(" 马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。 ")])])])])}],r=e("1e38"),i={data:function(){return{}},methods:{getDeatil:function(){var t={};Object(r["a"])(t).then((function(t){console.log(t,"案例详情")}))}}},u=i,o=(e("44b8"),e("2877")),s=Object(o["a"])(u,a,c,!1,null,"3a2e07e8",null);n["default"]=s.exports},db6e:function(t,n,e){}}]);
//# sourceMappingURL=chunk-c9cb2a0e.608c11f5.js.map //# sourceMappingURL=chunk-2d01f118.cc18d6c8.js.map
\ No newline at end of file \ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-24961c68"],{"10a4":function(t,a,i){t.exports=i.p+"img/cswiper.d05dcfd9.png"},3832:function(t,a,i){t.exports=i.p+"img/counter.ea009d87.png"},"63f3":function(t,a,i){"use strict";i.r(a);var s=function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",{staticClass:"container"},[s("div",{staticClass:"img"},[s("van-swipe",{attrs:{autoplay:3e3}},[s("van-swipe-item",[s("img",{attrs:{src:i("10a4")}})]),s("van-swipe-item",[s("img",{attrs:{src:i("10a4")}})]),s("van-swipe-item",[s("img",{attrs:{src:i("10a4")}})])],1)],1),t._m(0),s("van-cell-group",{staticClass:"gn"},[s("van-cell",{attrs:{title:"专柜信息","is-link":"",value:"详细信息"}}),s("van-cell",{attrs:{title:"访问专柜首页","is-link":"",value:"详细信息"}}),s("van-cell",{attrs:{title:"专柜收款码","is-link":"",value:"详细信息"}}),s("van-cell",{attrs:{title:"推送门店信息","is-link":"",value:"详细信息"}})],1)],1)},e=[function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",{staticClass:"list"},[s("div",{staticClass:"left"},[s("img",{attrs:{src:i("3832"),alt:""}})]),s("div",{staticClass:"right"},[s("h3",[t._v("欧亚一号专柜")]),s("p",[t._v("由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状。")])])])}],n={data:function(){return{}}},l=n,c=(i("6d66"),i("2877")),r=Object(c["a"])(l,s,e,!1,null,"19ac84cd",null);a["default"]=r.exports},"6d66":function(t,a,i){"use strict";var s=i("e6ea"),e=i.n(s);e.a},e6ea:function(t,a,i){}}]); (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-3a980fbe"],{"10a4":function(t,a,i){t.exports=i.p+"img/cswiper.d05dcfd9.png"},3832:function(t,a,i){t.exports=i.p+"img/counter.ea009d87.png"},"63f3":function(t,a,i){"use strict";i.r(a);var s=function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",{staticClass:"container"},[s("div",{staticClass:"img"},[s("van-swipe",{attrs:{autoplay:3e3}},[s("van-swipe-item",[s("img",{attrs:{src:i("10a4")}})]),s("van-swipe-item",[s("img",{attrs:{src:i("10a4")}})]),s("van-swipe-item",[s("img",{attrs:{src:i("10a4")}})])],1)],1),t._m(0),s("van-cell-group",{staticClass:"gn"},[s("van-cell",{attrs:{title:"专柜信息","is-link":"",value:"详细信息"}}),s("van-cell",{attrs:{title:"访问专柜首页","is-link":"",value:"详细信息"}}),s("van-cell",{attrs:{title:"专柜收款码","is-link":"",value:"详细信息"}}),s("van-cell",{attrs:{title:"推送门店信息","is-link":"",value:"详细信息"}})],1)],1)},e=[function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",{staticClass:"list"},[s("div",{staticClass:"left"},[s("img",{attrs:{src:i("3832"),alt:""}})]),s("div",{staticClass:"right"},[s("h3",[t._v("欧亚一号专柜")]),s("p",[t._v("由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状。")])])])}],n={data:function(){return{}}},l=n,c=(i("81fa"),i("2877")),r=Object(c["a"])(l,s,e,!1,null,"52aa9c07",null);a["default"]=r.exports},"81fa":function(t,a,i){"use strict";var s=i("a8fa8"),e=i.n(s);e.a},a8fa8:function(t,a,i){}}]);
//# sourceMappingURL=chunk-24961c68.45c21114.js.map //# sourceMappingURL=chunk-3a980fbe.5ca49dc7.js.map
\ No newline at end of file \ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment