H5端齐采药项目,uniapp框架
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.
 
 
 
 
 

35 lines
542 B

<template>
<view class="setSuccess">
<image :src="$util.img(`/upload/weapp/pageSalesman/success.png`)" ></image>
<div>保存成功</div>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss" scoped>
page{
background-color: #fff;
}
.setSuccess{
text-align: center;
font-size: 36rpx;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #222222;
line-height: 80rpx;
padding-top: 300rpx;
image{
width: 200rpx;
height: 200rpx;
}
}
</style>