武田小程序
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.
 
 
 

37 lines
514 B

const _app = getApp<IAppOption>()
Page({
data: {
selectList1: [
{
name: '一级',
},
{
name: '二级',
},
{
name: '三级',
},
],
selectList2: [
{
name: '特等',
},
{
name: '甲等',
},
{
name: '乙等',
},
{
name: '丙等',
},
],
},
onLoad() {},
handleSubmit() {
wx.navigateTo({
url: '/module1/pages/cDoctorResult/index',
})
},
})