@ -0,0 +1,9 @@ |
||||
import request from '@/apis/request.js' |
||||
const { get, post } = request |
||||
|
||||
export const postLoginActivity = (data) => { |
||||
return post('competition/competition/management/postLoginActivity', data) |
||||
} |
||||
export const getCompetition = (id) => { |
||||
return post(`competition/competition/management/getCompetition?competitionId=${id}`) |
||||
} |
@ -1,42 +0,0 @@ |
||||
import request from '@/apis/request.js' |
||||
const { get, post } = request |
||||
|
||||
export const getOrderOtherTime = (data) => { |
||||
return post('nakadai/nakadai/orderOther/getOrderOtherTime', data) |
||||
} |
||||
|
||||
export const add = (data) => { |
||||
return post('nakadai/nakadai/order/add', data) |
||||
} |
||||
|
||||
export const update = (data) => { |
||||
return post('nakadai/nakadai/order/update', data) |
||||
} |
||||
|
||||
export const getDetail = (data) => { |
||||
return get('nakadai/nakadai/order/get', data) |
||||
} |
||||
|
||||
export const renew = (data) => { |
||||
return post('nakadai/nakadai/orderOther/renew', data) |
||||
} |
||||
|
||||
export const list = (data) => { |
||||
return post('nakadai/nakadai/applets/order/orderList', data) |
||||
} |
||||
|
||||
export const orderList = (data) => { |
||||
return post('nakadai/nakadai/order/list', data) |
||||
} |
||||
|
||||
export const del = (data) => { |
||||
return post('nakadai/nakadai/order/delete', data) |
||||
} |
||||
|
||||
export const miniProgramOrderRecord = (data) => { |
||||
return post('nakadai/nakadai/applets/order/miniProgramOrderRecord', data) |
||||
} |
||||
|
||||
export const queryCitySettlementPrice = (mallId, provinceId, cityId) => { |
||||
return post(`nakadai/mallPrice/queryCitySettlementPrice?mallId=${mallId}&provinceId=${provinceId}&cityId=${cityId}`) |
||||
} |
Before Width: | Height: | Size: 775 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 599 B |
Before Width: | Height: | Size: 439 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 518 B |
Before Width: | Height: | Size: 522 B |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 483 B |
Before Width: | Height: | Size: 434 B |
Before Width: | Height: | Size: 298 B |
Before Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 641 B |
Before Width: | Height: | Size: 251 B |
Before Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 440 B |
Before Width: | Height: | Size: 347 B |
Before Width: | Height: | Size: 1007 B |
Before Width: | Height: | Size: 510 B |
Before Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 48 KiB |
@ -0,0 +1,107 @@ |
||||
<template> |
||||
<view> |
||||
<view class="block"> |
||||
<view class="form-list"> |
||||
<view class="line with-arrow"> |
||||
<view class="name">LOGO</view> |
||||
<view class="val"> |
||||
<image class="avatar" src="@/static/image/info-bg.jpg"></image> |
||||
<uni-icons type="right" size="18" color="#ababab"></uni-icons> |
||||
</view> |
||||
</view> |
||||
<view class="line with-arrow"> |
||||
<view class="name">幼儿园名称</view> |
||||
<view class="val"> |
||||
<input type="text" placeholder="请输入幼儿园名称" /> |
||||
<uni-icons type="right" size="18" color="#ababab"></uni-icons> |
||||
</view> |
||||
</view> |
||||
<view class="line with-arrow"> |
||||
<view class="name">标签</view> |
||||
<view class="val"> |
||||
<input type="text" placeholder="请输入标签" /> |
||||
<uni-icons type="right" size="18" color="#ababab"></uni-icons> |
||||
</view> |
||||
</view> |
||||
<view class="line textarea-line"> |
||||
<view class="name">幼儿园slogan</view> |
||||
<textarea placeholder="请输入幼儿园slogan"></textarea> |
||||
</view> |
||||
<view class="line textarea-line"> |
||||
<view class="name">地址</view> |
||||
<textarea placeholder="请输入地址"></textarea> |
||||
</view> |
||||
<view class="line textarea-line"> |
||||
<view class="name">幼儿园简介</view> |
||||
<textarea placeholder="请输入幼儿园简介"></textarea> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="block info"> |
||||
<view class="title">联系我们</view> |
||||
<view class="line">地址:测试测试</view> |
||||
<view class="line">联系电话:测试测试</view> |
||||
<image class="qrcode" src="@/static/image/info-bg.jpg"></image> |
||||
</view> |
||||
|
||||
<view class="btn-wrap"> |
||||
<view class="btn" @click="submit">保存</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { my } from '@/apis/modules/parner.js' |
||||
export default { |
||||
data() { |
||||
return { |
||||
|
||||
} |
||||
}, |
||||
onShow() { |
||||
this.getInfo() |
||||
}, |
||||
methods: { |
||||
// 获取个人信息 |
||||
getInfo() { |
||||
const { partnerId, teamId } = uni.getStorageSync('team') |
||||
my({ |
||||
partnerId, |
||||
teamId |
||||
}).then(({ my }) => { |
||||
this.info = my.info |
||||
}).catch(e => {}) |
||||
}, |
||||
// 提交 |
||||
submit() { |
||||
|
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.avatar { |
||||
width: 80rpx; |
||||
height: 80rpx; |
||||
border: 0; |
||||
border-radius: 50%; |
||||
} |
||||
.info { |
||||
position: relative; |
||||
padding: 24rpx; |
||||
.line { |
||||
margin: 20rpx 0; |
||||
font-size: 26rpx; |
||||
color: #333; |
||||
} |
||||
.qrcode { |
||||
position: absolute; |
||||
top: 30rpx; |
||||
right: 30rpx; |
||||
width: 120rpx; |
||||
height: 120rpx; |
||||
} |
||||
} |
||||
</style> |