Csqqqqq 5 months ago
parent 965b5fc031
commit df915ae0bc

@ -95,23 +95,29 @@
<text class="unclick">{{item.name}}</text>
</view>
</view>
<u-popup :show="show" mode="bottom" @open="open" :safeAreaInsetBottom="false" :round="10">
<u-popup :show="show" mode="bottom" @open="open" :safeAreaInsetBottom="false" :round="16">
<view class="rate-popup">
<image src="../../static/img/popup-close.png" @click="close"></image>
<view class="top-bg">
<view class="top-bg-linear"></view>
</view>
<view class="rate-img">
<view class="img-con" v-for="item in rateList" @click="click" :data-id="item.num">
<view class="img-con" v-for="(item,index) in rateList" @click="click" :data-id="item.num" :key="index">
<image :src="item.imgUrl" :class="{'click':item.isClicked}"></image>
<text :class="{'click':item.isClicked}">{{item.name}}</text>
</view>
</view>
<view class="rate-item-box">
<view class="rate-item" v-for="item in clickList">
<view class="rate-item" v-for="item in clickList" @click="rateClick" :class="{'click':item.checked}" :data-id="item.num">
{{item.name}}
</view>
</view>
<view class="advice-input-box">
<input placeholder="您的建议是我们前进的方向" placeholder-class="input-text"/>
</view>
<view class="assess-btn">
匿名评价
</view>
</view>
</u-popup>
</view>
@ -143,7 +149,7 @@
components:{claimsCard,},
data(){
return{
show:true,
show:false,
type:0,
background:"transparent",
valueCheckman:4.9,
@ -191,7 +197,7 @@
imgUrl:'../../static/img/happy2.png',
name:"太赞了",
num:2,
isClicked:false,
isClicked:true,
}],
//
@ -288,7 +294,21 @@
checked:false
}],
clickType:0,
clickList:[]
clickList:this.perfectList
}
},
mounted() {
for(var item of this.rateList){
if(item.isClicked == true){
this.clickType = item.num
if(this.clickType == 0){
this.clickList = this.badList
}else if(this.clickType == 1){
this.clickList = this.goodList
}else{
this.clickList = this.perfectList
}
}
}
},
methods:{
@ -301,26 +321,39 @@
click:function(e){
var index = e.currentTarget.dataset.id
var list = this.rateList
this.clickType = index+1
if(this.clickType == 1){
this.clickList = this.badList
}else if(this.clickType == 2){
this.clickList = this.goodList
}else{
this.clickList = this.perfectList
}
this.clickType = index
console.log(index)
console.log(list[index].isClicked)
if(list[index].isClicked == true){
list[index].isClicked = false
}else{
if(list[index].isClicked == false){
for (var item of this.rateList){
item.isClicked = false
}
list[index].isClicked = true
if(this.clickType == 0){
this.clickList = this.badList
}else if(this.clickType == 1){
this.clickList = this.goodList
}else{
this.clickList = this.perfectList
}
}
this.rateList = list
console.log(this.rateList[index].isClicked)
},
rateClick:function(e){
var index = e.currentTarget.dataset.id
var list = this.clickList
console.log(index)
console.log(list)
if(list[index].checked == false){
list[index].checked = true
}else{
for (var item of this.rateList){
item.checked = false
}
list[index].checked = false
}
this.clickList = list
}
}
}
@ -637,6 +670,7 @@
.img-con{
display: flex;
flex-direction: column;
justify-content: center;
>image{
width: 72rpx;
height: 72rpx;
@ -644,8 +678,11 @@
filter: grayscale(100%);
}
&.click{
width: 120rpx;
height: 120rpx;
// width: 120rpx;
// height: 120rpx;
transform: scale(1.7);
position: absolute;
top: 20rpx;
}
}
>text{
@ -658,6 +695,7 @@
}
&.click{
color: #000000;
margin-top: 68rpx;
}
}
}
@ -666,20 +704,21 @@
height: 718rpx;
background: #FFFFFF;
box-sizing: border-box;
position: relative;
padding-bottom: 68rpx;
border-radius: 16rpx;
//
>image{
width: 48rpx;
height: 48rpx;
position: absolute;
right: 0;
top: 0;
top: -72rpx;
}
.top-bg{
width: 750rpx;
height: 88rpx;
background: linear-gradient( 133deg, #D0FFBA 0%, #FFF6A1 100%);
border-radius: 16rpx;
.top-bg-linear{
width: 750rpx;
height: 88rpx;
@ -690,25 +729,69 @@
width: 544rpx;
position: absolute;
left: 102rpx;
top: 0;
top: -28rpx;
display: flex;
justify-content: space-between;
padding-top: 48rpx;
//background-color: #2388FF;
}
.rate-item-box{
width: 702rpx;
height: 244rpx;
display: flex;
flex-wrap: wrap;
position: absolute;
left: 24rpx;
top: 174rpx;
justify-content: space-between;
margin-top: 86rpx;
margin-left: 24rpx;
box-sizing: border-box;
.rate-item{
width: 344rpx;
height: 72rpx;
border-radius: 8rpx 8rpx 8rpx 8rpx;
border-radius: 8rpx;
border: 2rpx solid rgba(0,0,0,0.1);
font-weight: 400;
font-size: 28rpx;
color: #000000;
line-height: 39rpx;
text-align: center;
padding-top: 16rpx;
box-sizing: border-box;
&.click{
background:rgba(35,136,255,0.1);
border: 2rpx solid #2388FF;
}
}
}
.advice-input-box{
width: 702rpx;
height: 72rpx;
background: #F8F8F8;
border-radius: 8rpx;
box-sizing: border-box;
padding-top: 16rpx;
margin: 24rpx;
.input-text{
text-align: center;
font-weight: 400;
font-size: 28rpx;
color: rgba(0,0,0,0.5);
line-height: 39rpx;
}
}
.assess-btn{
width: 702rpx;
height: 92rpx;
background: linear-gradient( 91deg, #43A1FF 0%, #2F80F9 100%);
border-radius: 24rpx;
font-weight: 500;
font-size: 28rpx;
color: #FFFFFF;
line-height: 39rpx;
text-align: center;
padding-top: 26rpx;
box-sizing: border-box;
margin: 8rpx 24rpx 12rpx 24rpx;
}
}
}

@ -156,7 +156,7 @@
export default {
data(){
return{
show:true,
show:false,
typeList:
[{
name:'1.5两以下',

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -22988,14 +22988,118 @@ exports.default = _default;
/* 339 */,
/* 340 */,
/* 341 */,
/* 342 */,
/* 342 */
/*!**************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-popup/props.js ***!
\**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
props: {
// 是否展示弹窗
show: {
type: Boolean,
default: uni.$u.props.popup.show
},
// 是否显示遮罩
overlay: {
type: Boolean,
default: uni.$u.props.popup.overlay
},
// 弹出的方向,可选值为 top bottom right left center
mode: {
type: String,
default: uni.$u.props.popup.mode
},
// 动画时长单位ms
duration: {
type: [String, Number],
default: uni.$u.props.popup.duration
},
// 是否显示关闭图标
closeable: {
type: Boolean,
default: uni.$u.props.popup.closeable
},
// 自定义遮罩的样式
overlayStyle: {
type: [Object, String],
default: uni.$u.props.popup.overlayStyle
},
// 点击遮罩是否关闭弹窗
closeOnClickOverlay: {
type: Boolean,
default: uni.$u.props.popup.closeOnClickOverlay
},
// 层级
zIndex: {
type: [String, Number],
default: uni.$u.props.popup.zIndex
},
// 是否为iPhoneX留出底部安全距离
safeAreaInsetBottom: {
type: Boolean,
default: uni.$u.props.popup.safeAreaInsetBottom
},
// 是否留出顶部安全距离(状态栏高度)
safeAreaInsetTop: {
type: Boolean,
default: uni.$u.props.popup.safeAreaInsetTop
},
// 自定义关闭图标位置top-left为左上角top-right为右上角bottom-left为左下角bottom-right为右下角
closeIconPos: {
type: String,
default: uni.$u.props.popup.closeIconPos
},
// 是否显示圆角
round: {
type: [Boolean, String, Number],
default: uni.$u.props.popup.round
},
// mode=center也即中部弹出时是否使用缩放模式
zoom: {
type: Boolean,
default: uni.$u.props.popup.zoom
},
// 弹窗背景色设置为transparent可去除白色背景
bgColor: {
type: String,
default: uni.$u.props.popup.bgColor
},
// 遮罩的透明度0-1之间
overlayOpacity: {
type: [Number, String],
default: uni.$u.props.popup.overlayOpacity
}
}
};
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 343 */,
/* 344 */,
/* 345 */,
/* 346 */,
/* 347 */,
/* 348 */,
/* 349 */
/* 349 */,
/* 350 */,
/* 351 */,
/* 352 */,
/* 353 */,
/* 354 */,
/* 355 */,
/* 356 */,
/* 357 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-tabbar/props.js ***!
\***************************************************************************************************/
@ -23057,14 +23161,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 350 */,
/* 351 */,
/* 352 */,
/* 353 */,
/* 354 */,
/* 355 */,
/* 356 */,
/* 357 */
/* 358 */,
/* 359 */,
/* 360 */,
/* 361 */,
/* 362 */,
/* 363 */,
/* 364 */,
/* 365 */
/*!********************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-tabbar-item/props.js ***!
\********************************************************************************************************/
@ -23116,14 +23220,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 358 */,
/* 359 */,
/* 360 */,
/* 361 */,
/* 362 */,
/* 363 */,
/* 364 */,
/* 365 */
/* 366 */,
/* 367 */,
/* 368 */,
/* 369 */,
/* 370 */,
/* 371 */,
/* 372 */,
/* 373 */
/*!*******************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-status-bar/props.js ***!
\*******************************************************************************************************/
@ -23149,14 +23253,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 366 */,
/* 367 */,
/* 368 */,
/* 369 */,
/* 370 */,
/* 371 */,
/* 372 */,
/* 373 */
/* 374 */,
/* 375 */,
/* 376 */,
/* 377 */,
/* 378 */,
/* 379 */,
/* 380 */,
/* 381 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-icon/icons.js ***!
\*************************************************************************************************/
@ -23387,7 +23491,7 @@ var _default = {
exports.default = _default;
/***/ }),
/* 374 */
/* 382 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-icon/props.js ***!
\*************************************************************************************************/
@ -23494,14 +23598,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 375 */,
/* 376 */,
/* 377 */,
/* 378 */,
/* 379 */,
/* 380 */,
/* 381 */,
/* 382 */
/* 383 */,
/* 384 */,
/* 385 */,
/* 386 */,
/* 387 */,
/* 388 */,
/* 389 */,
/* 390 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-line/props.js ***!
\*************************************************************************************************/
@ -23552,14 +23656,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 383 */,
/* 384 */,
/* 385 */,
/* 386 */,
/* 387 */,
/* 388 */,
/* 389 */,
/* 390 */
/* 391 */,
/* 392 */,
/* 393 */,
/* 394 */,
/* 395 */,
/* 396 */,
/* 397 */,
/* 398 */
/*!*********************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-loading-icon/props.js ***!
\*********************************************************************************************************/
@ -23636,14 +23740,6 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 391 */,
/* 392 */,
/* 393 */,
/* 394 */,
/* 395 */,
/* 396 */,
/* 397 */,
/* 398 */,
/* 399 */,
/* 400 */,
/* 401 */,
@ -23657,7 +23753,15 @@ exports.default = _default;
/* 409 */,
/* 410 */,
/* 411 */,
/* 412 */
/* 412 */,
/* 413 */,
/* 414 */,
/* 415 */,
/* 416 */,
/* 417 */,
/* 418 */,
/* 419 */,
/* 420 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-search/props.js ***!
\***************************************************************************************************/
@ -23793,14 +23897,6 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 413 */,
/* 414 */,
/* 415 */,
/* 416 */,
/* 417 */,
/* 418 */,
/* 419 */,
/* 420 */,
/* 421 */,
/* 422 */,
/* 423 */,
@ -23809,7 +23905,15 @@ exports.default = _default;
/* 426 */,
/* 427 */,
/* 428 */,
/* 429 */
/* 429 */,
/* 430 */,
/* 431 */,
/* 432 */,
/* 433 */,
/* 434 */,
/* 435 */,
/* 436 */,
/* 437 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-picker/props.js ***!
\***************************************************************************************************/
@ -23906,14 +24010,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 430 */,
/* 431 */,
/* 432 */,
/* 433 */,
/* 434 */,
/* 435 */,
/* 436 */,
/* 437 */
/* 438 */,
/* 439 */,
/* 440 */,
/* 441 */,
/* 442 */,
/* 443 */,
/* 444 */,
/* 445 */
/*!*******************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-number-box/props.js ***!
\*******************************************************************************************************/
@ -24040,309 +24144,22 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 438 */,
/* 439 */,
/* 440 */,
/* 441 */,
/* 442 */,
/* 443 */,
/* 444 */,
/* 445 */
/*!********************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-safe-bottom/props.js ***!
\********************************************************************************************************/
/* 446 */,
/* 447 */,
/* 448 */,
/* 449 */,
/* 450 */,
/* 451 */,
/* 452 */,
/* 453 */
/*!****************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-overlay/props.js ***!
\****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
props: {}
};
exports.default = _default;
/***/ }),
/* 446 */,
/* 447 */,
/* 448 */,
/* 449 */,
/* 450 */,
/* 451 */,
/* 452 */,
/* 453 */
/*!**************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-badge/props.js ***!
\**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
props: {
// 是否显示圆点
isDot: {
type: Boolean,
default: uni.$u.props.badge.isDot
},
// 显示的内容
value: {
type: [Number, String],
default: uni.$u.props.badge.value
},
// 是否显示
show: {
type: Boolean,
default: uni.$u.props.badge.show
},
// 最大值,超过最大值会显示 '{max}+'
max: {
type: [Number, String],
default: uni.$u.props.badge.max
},
// 主题类型error|warning|success|primary
type: {
type: String,
default: uni.$u.props.badge.type
},
// 当数值为 0 时,是否展示 Badge
showZero: {
type: Boolean,
default: uni.$u.props.badge.showZero
},
// 背景颜色优先级比type高如设置type参数会失效
bgColor: {
type: [String, null],
default: uni.$u.props.badge.bgColor
},
// 字体颜色
color: {
type: [String, null],
default: uni.$u.props.badge.color
},
// 徽标形状circle-四角均为圆角horn-左下角为直角
shape: {
type: String,
default: uni.$u.props.badge.shape
},
// 设置数字的显示方式overflow|ellipsis|limit
// overflow会根据max字段判断超出显示`${max}+`
// ellipsis会根据max判断超出显示`${max}...`
// limit会依据1000作为判断条件超出1000显示`${value/1000}K`比如2.2k、3.34w最多保留2位小数
numberType: {
type: String,
default: uni.$u.props.badge.numberType
},
// 设置badge的位置偏移格式为 [x, y]也即设置的为top和right的值absolute为true时有效
offset: {
type: Array,
default: uni.$u.props.badge.offset
},
// 是否反转背景和字体颜色
inverted: {
type: Boolean,
default: uni.$u.props.badge.inverted
},
// 是否绝对定位
absolute: {
type: Boolean,
default: uni.$u.props.badge.absolute
}
}
};
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 454 */,
/* 455 */,
/* 456 */,
/* 457 */,
/* 458 */,
/* 459 */,
/* 460 */,
/* 461 */
/*!**************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-popup/props.js ***!
\**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
props: {
// 是否展示弹窗
show: {
type: Boolean,
default: uni.$u.props.popup.show
},
// 是否显示遮罩
overlay: {
type: Boolean,
default: uni.$u.props.popup.overlay
},
// 弹出的方向,可选值为 top bottom right left center
mode: {
type: String,
default: uni.$u.props.popup.mode
},
// 动画时长单位ms
duration: {
type: [String, Number],
default: uni.$u.props.popup.duration
},
// 是否显示关闭图标
closeable: {
type: Boolean,
default: uni.$u.props.popup.closeable
},
// 自定义遮罩的样式
overlayStyle: {
type: [Object, String],
default: uni.$u.props.popup.overlayStyle
},
// 点击遮罩是否关闭弹窗
closeOnClickOverlay: {
type: Boolean,
default: uni.$u.props.popup.closeOnClickOverlay
},
// 层级
zIndex: {
type: [String, Number],
default: uni.$u.props.popup.zIndex
},
// 是否为iPhoneX留出底部安全距离
safeAreaInsetBottom: {
type: Boolean,
default: uni.$u.props.popup.safeAreaInsetBottom
},
// 是否留出顶部安全距离(状态栏高度)
safeAreaInsetTop: {
type: Boolean,
default: uni.$u.props.popup.safeAreaInsetTop
},
// 自定义关闭图标位置top-left为左上角top-right为右上角bottom-left为左下角bottom-right为右下角
closeIconPos: {
type: String,
default: uni.$u.props.popup.closeIconPos
},
// 是否显示圆角
round: {
type: [Boolean, String, Number],
default: uni.$u.props.popup.round
},
// mode=center也即中部弹出时是否使用缩放模式
zoom: {
type: Boolean,
default: uni.$u.props.popup.zoom
},
// 弹窗背景色设置为transparent可去除白色背景
bgColor: {
type: String,
default: uni.$u.props.popup.bgColor
},
// 遮罩的透明度0-1之间
overlayOpacity: {
type: [Number, String],
default: uni.$u.props.popup.overlayOpacity
}
}
};
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 462 */,
/* 463 */,
/* 464 */,
/* 465 */,
/* 466 */,
/* 467 */,
/* 468 */,
/* 469 */
/*!****************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-toolbar/props.js ***!
\****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
props: {
// 是否展示工具条
show: {
type: Boolean,
default: uni.$u.props.toolbar.show
},
// 取消按钮的文字
cancelText: {
type: String,
default: uni.$u.props.toolbar.cancelText
},
// 确认按钮的文字
confirmText: {
type: String,
default: uni.$u.props.toolbar.confirmText
},
// 取消按钮的颜色
cancelColor: {
type: String,
default: uni.$u.props.toolbar.cancelColor
},
// 确认按钮的颜色
confirmColor: {
type: String,
default: uni.$u.props.toolbar.confirmColor
},
// 标题文字
title: {
type: String,
default: uni.$u.props.toolbar.title
}
}
};
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 470 */,
/* 471 */,
/* 472 */,
/* 473 */,
/* 474 */,
/* 475 */,
/* 476 */,
/* 477 */
/*!****************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-overlay/props.js ***!
\****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
/* WEBPACK VAR INJECTION */(function(uni) {
Object.defineProperty(exports, "__esModule", {
value: true
@ -24376,14 +24193,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 478 */,
/* 479 */,
/* 480 */,
/* 481 */,
/* 482 */,
/* 483 */,
/* 484 */,
/* 485 */
/* 454 */,
/* 455 */,
/* 456 */,
/* 457 */,
/* 458 */,
/* 459 */,
/* 460 */,
/* 461 */
/*!*******************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-transition/props.js ***!
\*******************************************************************************************************/
@ -24425,7 +24242,7 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 486 */
/* 462 */
/*!************************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-transition/transition.js ***!
\************************************************************************************************************/
@ -24442,7 +24259,7 @@ Object.defineProperty(exports, "__esModule", {
exports.default = void 0;
var _regenerator = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/regenerator */ 55));
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/asyncToGenerator */ 57));
var _nvueAniMap = _interopRequireDefault(__webpack_require__(/*! ./nvue.ani-map.js */ 487));
var _nvueAniMap = _interopRequireDefault(__webpack_require__(/*! ./nvue.ani-map.js */ 463));
// 定义一个一定时间后自动成功的promise让调用nextTick方法处进入下一个then方法
var nextTick = function nextTick() {
return new Promise(function (resolve) {
@ -24534,7 +24351,7 @@ var _default = {
exports.default = _default;
/***/ }),
/* 487 */
/* 463 */
/*!**************************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-transition/nvue.ani-map.js ***!
\**************************************************************************************************************/
@ -24726,6 +24543,189 @@ var _default = {
};
exports.default = _default;
/***/ }),
/* 464 */,
/* 465 */,
/* 466 */,
/* 467 */,
/* 468 */,
/* 469 */,
/* 470 */,
/* 471 */
/*!********************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-safe-bottom/props.js ***!
\********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
props: {}
};
exports.default = _default;
/***/ }),
/* 472 */,
/* 473 */,
/* 474 */,
/* 475 */,
/* 476 */,
/* 477 */,
/* 478 */,
/* 479 */
/*!**************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-badge/props.js ***!
\**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
props: {
// 是否显示圆点
isDot: {
type: Boolean,
default: uni.$u.props.badge.isDot
},
// 显示的内容
value: {
type: [Number, String],
default: uni.$u.props.badge.value
},
// 是否显示
show: {
type: Boolean,
default: uni.$u.props.badge.show