武田基因病B开发环境
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
1.4 KiB

2 months ago
const _app = getApp<IAppOption>()
Page({
data: {
popupShow: false,
2 months ago
popupType: 'casesAddComplete',
popupParams: {
close: true,
content: '',
},
currentFinish: true,
current: 0,
1 month ago
parts: [
{
top: '94',
left: '-14',
},
{
top: '78',
left: '28',
},
{
top: '88',
left: '72',
},
{
top: '78',
left: '126',
},
{
top: '78',
left: '184',
},
{
top: '88',
left: '238',
},
{
top: '78',
left: '284',
},
{
top: '94',
left: '324',
},
{
top: '194',
left: '122',
},
{
top: '194',
left: '190',
},
{
top: '296',
left: '122',
},
{
top: '296',
left: '190',
},
{
top: '364',
left: '122',
},
{
top: '364',
left: '190',
},
],
2 months ago
},
onLoad() {},
handleFinish() {
this.setData({
currentFinish: true,
})
},
handlePrev() {
if (!this.data.currentFinish) return
this.setData({
currentFinish: false,
current: this.data.current - 1,
})
},
handleNext() {
if (!this.data.currentFinish) return
this.setData({
currentFinish: false,
current: this.data.current + 1,
})
},
2 months ago
})
export {}