Csqqqqq 4 months ago
parent f79346014b
commit 052bb21d72

@ -56,6 +56,13 @@
"navigationStyle": "custom",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/customerCS/completeClaimsInfo",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "black"
}
}
],
"globalStyle": {

@ -87,22 +87,33 @@
</view>
<claims-card class="claims-card" v-if="type!=0" :type="type" bodyHeight="344rpx"></claims-card>
<view class="line"></view>
<view class="claims-assess-box">
<view class="claims-assess-box" @click="show=true">
<view class="title">您对本次验蟹结果满意吗</view>
<view class="bottom-img">
<view class="img-con">
<image src="../../static/img/anger.png"></image>
<text>很糟糕</text>
</view>
<view class="img-con">
<image src="../../static/img/happy1.png"></image>
<text>还可以</text>
</view>
<view class="img-con">
<image src="../../static/img/happy2.png"></image>
<text>太赞了</text>
<view class="img-con" v-for="item in rateList">
<image :src="item.imgUrl" class="unclick"></image>
<text class="unclick">{{item.name}}</text>
</view>
</view>
<u-popup :show="show" mode="bottom" @open="open" :safeAreaInsetBottom="false" :round="10">
<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">
<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">
{{item.name}}
</view>
</view>
</view>
</u-popup>
</view>
<view class="line"></view>
<view class="assess-box">
@ -117,7 +128,7 @@
</view>
</view>
<view class="assess-body">
<view class="assess-item" v-for="item in assessList">
<view class="assess-item" v-for="item in assessList" >
{{item.name}}{{item.num}}
</view>
</view>
@ -132,7 +143,8 @@
components:{claimsCard,},
data(){
return{
type:3,
show:true,
type:0,
background:"transparent",
valueCheckman:4.9,
valueCustomer:3.9,
@ -161,7 +173,154 @@
{
name:"足斤足两",
num:12
}]
}],
rateList:[{
imgUrl:"../../static/img/anger.png",
name:"很糟糕",
num:0,
isClicked:false,
},
{
imgUrl:"../../static/img/happy1.png",
name:"还可以",
num:1,
isClicked:false,
},
{
imgUrl:'../../static/img/happy2.png',
name:"太赞了",
num:2,
isClicked:false,
}],
//
perfectList:[{
name:"无损活蟹",
num:0,
checked:false
},
{
name:"肉肥黄满",
num:1,
checked:false
},
{
name:"色泽鲜亮",
num:2,
checked:false
},
{
name:"肉质紧实",
num:3,
checked:false
},
{
name:"口感极佳",
num:4,
checked:false
},
{
name:"顶级品质",
num:5,
checked:false
}],
//
goodList:[{
name:"质量一般",
num:0,
checked:false
},
{
name:"肉质尚可",
num:1,
checked:false
},
{
name:"比较新鲜",
num:2,
checked:false
},
{
name:"活力一般",
num:3,
checked:false
},
{
name:"品相尚可",
num:4,
checked:false
},
{
name:"个头适中",
num:5,
checked:false
}],
//
badList:[{
name:"品质极差",
num:0,
checked:false
},
{
name:"死蟹很多",
num:1,
checked:false
},
{
name:"无肉无黄",
num:2,
checked:false
},
{
name:"异味明显",
num:3,
checked:false
},
{
name:"肉质松散",
num:4,
checked:false
},
{
name:"缺斤少两",
num:5,
checked:false
}],
clickType:0,
clickList:[]
}
},
methods:{
open(){
this.show = true
},
close(){
this.show = false
},
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
}
console.log(index)
console.log(list[index].isClicked)
if(list[index].isClicked == true){
list[index].isClicked = false
}else{
for (var item of this.rateList){
item.isClicked = false
}
list[index].isClicked = true
}
this.rateList = list
console.log(this.rateList[index].isClicked)
}
}
}
@ -473,22 +632,85 @@
margin-left: 96rpx;
display: flex;
justify-content: space-between;
.img-con{
display: flex;
flex-direction: column;
>image{
width: 72rpx;
height: 72rpx;
margin-top: 34rpx;
}
.img-con{
display: flex;
flex-direction: column;
>image{
width: 72rpx;
height: 72rpx;
&.unclick{
filter: grayscale(100%);
}
>text{
font-size: 24rpx;
&.click{
width: 120rpx;
height: 120rpx;
}
}
>text{
font-size: 24rpx;
color: rgba(0,0,0,0.3);
line-height: 34rpx;
text-align: center;
&.unclick{
color: #000000;
}
&.click{
color: #000000;
line-height: 34rpx;
text-align: center;
}
}
}
.rate-popup{
width: 750rpx;
height: 718rpx;
background: #FFFFFF;
box-sizing: border-box;
position: relative;
padding-bottom: 68rpx;
//
>image{
width: 48rpx;
height: 48rpx;
position: absolute;
right: 0;
top: 0;
}
.top-bg{
width: 750rpx;
height: 88rpx;
background: linear-gradient( 133deg, #D0FFBA 0%, #FFF6A1 100%);
.top-bg-linear{
width: 750rpx;
height: 88rpx;
background: linear-gradient(rgba(255, 255, 255, 0.1),rgba(255, 255, 255, 1));
}
}
.rate-img{
width: 544rpx;
position: absolute;
left: 102rpx;
top: 0;
display: flex;
justify-content: space-between;
padding-top: 48rpx;
//background-color: #2388FF;
}
.rate-item-box{
display: flex;
flex-wrap: wrap;
position: absolute;
left: 24rpx;
top: 174rpx;
.rate-item{
width: 344rpx;
height: 72rpx;
border-radius: 8rpx 8rpx 8rpx 8rpx;
border: 2rpx solid rgba(0,0,0,0.1);
}
}
}
}
.assess-box{
width: 750rpx;

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

@ -6,7 +6,8 @@
"pages/cloudStore/cloudStoreDetail",
"pages/customerCS/checkManDetail",
"pages/customerCS/claimsDetail",
"pages/customerCS/orderSearch"
"pages/customerCS/orderSearch",
"pages/customerCS/completeClaimsInfo"
],
"subPackages": [],
"window": {

@ -105,11 +105,11 @@
/******/
/******/
/******/ // mini-css-extract-plugin CSS loading
/******/ var cssChunks = {"components/tab-bar":1,"uni_modules/uview-ui/components/u-form-item/u-form-item":1,"uni_modules/uview-ui/components/u-input/u-input":1,"uni_modules/uview-ui/components/u-navbar/u-navbar":1,"uni_modules/uview-ui/components/u-upload/u-upload":1,"pages/cloudStore/components/shopDetailCard":1,"uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni":1,"pages/cloudStore/components/shopItem":1,"pages/cloudStore/components/dropshipping":1,"pages/cloudStore/components/wholeSales":1,"uni_modules/uview-ui/components/u-rate/u-rate":1,"pages/cloudStore/components/couponsAct":1,"pages/cloudStore/components/shopIntroduce":1,"pages/customerCS/components/claimsCard":1,"uni_modules/uview-ui/components/u-tabbar-item/u-tabbar-item":1,"uni_modules/uview-ui/components/u-tabbar/u-tabbar":1,"uni_modules/uview-ui/components/u-icon/u-icon":1,"uni_modules/uview-ui/components/u-line/u-line":1,"uni_modules/uview-ui/components/u-status-bar/u-status-bar":1,"uni_modules/uview-ui/components/u-loading-icon/u-loading-icon":1,"uni_modules/mescroll-uni/components/mescroll-empty/mescroll-empty":1,"uni_modules/mescroll-uni/components/mescroll-uni/components/mescroll-top":1,"uni_modules/mescroll-uni/components/mescroll-body/mescroll-body":1,"uni_modules/uview-ui/components/u-search/u-search":1,"uni_modules/uview-ui/components/u-number-box/u-number-box":1,"uni_modules/uview-ui/components/u-picker/u-picker":1,"uni_modules/uview-ui/components/u-badge/u-badge":1,"uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom":1,"uni_modules/uview-ui/components/u-popup/u-popup":1,"uni_modules/uview-ui/components/u-toolbar/u-toolbar":1,"uni_modules/uview-ui/components/u-overlay/u-overlay":1,"uni_modules/uview-ui/components/u-transition/u-transition":1};
/******/ var cssChunks = {"components/tab-bar":1,"uni_modules/uview-ui/components/u-form-item/u-form-item":1,"uni_modules/uview-ui/components/u-input/u-input":1,"uni_modules/uview-ui/components/u-navbar/u-navbar":1,"uni_modules/uview-ui/components/u-upload/u-upload":1,"pages/cloudStore/components/shopDetailCard":1,"uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni":1,"pages/cloudStore/components/shopItem":1,"pages/cloudStore/components/dropshipping":1,"pages/cloudStore/components/wholeSales":1,"uni_modules/uview-ui/components/u-rate/u-rate":1,"pages/cloudStore/components/couponsAct":1,"pages/cloudStore/components/shopIntroduce":1,"uni_modules/uview-ui/components/u-popup/u-popup":1,"pages/customerCS/components/claimsCard":1,"uni_modules/uview-ui/components/u-tabbar-item/u-tabbar-item":1,"uni_modules/uview-ui/components/u-tabbar/u-tabbar":1,"uni_modules/uview-ui/components/u-icon/u-icon":1,"uni_modules/uview-ui/components/u-line/u-line":1,"uni_modules/uview-ui/components/u-status-bar/u-status-bar":1,"uni_modules/uview-ui/components/u-loading-icon/u-loading-icon":1,"uni_modules/mescroll-uni/components/mescroll-empty/mescroll-empty":1,"uni_modules/mescroll-uni/components/mescroll-uni/components/mescroll-top":1,"uni_modules/mescroll-uni/components/mescroll-body/mescroll-body":1,"uni_modules/uview-ui/components/u-search/u-search":1,"uni_modules/uview-ui/components/u-number-box/u-number-box":1,"uni_modules/uview-ui/components/u-picker/u-picker":1,"uni_modules/uview-ui/components/u-overlay/u-overlay":1,"uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom":1,"uni_modules/uview-ui/components/u-transition/u-transition":1,"uni_modules/uview-ui/components/u-badge/u-badge":1,"uni_modules/uview-ui/components/u-toolbar/u-toolbar":1};
/******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
/******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
/******/ promises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {
/******/ var href = "" + ({"components/tab-bar":"components/tab-bar","uni_modules/uview-ui/components/u-form-item/u-form-item":"uni_modules/uview-ui/components/u-form-item/u-form-item","uni_modules/uview-ui/components/u-form/u-form":"uni_modules/uview-ui/components/u-form/u-form","uni_modules/uview-ui/components/u-input/u-input":"uni_modules/uview-ui/components/u-input/u-input","uni_modules/uview-ui/components/u-navbar/u-navbar":"uni_modules/uview-ui/components/u-navbar/u-navbar","uni_modules/uview-ui/components/u-upload/u-upload":"uni_modules/uview-ui/components/u-upload/u-upload","pages/cloudStore/components/shopDetailCard":"pages/cloudStore/components/shopDetailCard","uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni":"uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni","pages/cloudStore/components/shopItem":"pages/cloudStore/components/shopItem","pages/cloudStore/components/dropshipping":"pages/cloudStore/components/dropshipping","pages/cloudStore/components/wholeSales":"pages/cloudStore/components/wholeSales","uni_modules/uview-ui/components/u-rate/u-rate":"uni_modules/uview-ui/components/u-rate/u-rate","pages/cloudStore/components/couponsAct":"pages/cloudStore/components/couponsAct","pages/cloudStore/components/shopIntroduce":"pages/cloudStore/components/shopIntroduce","pages/customerCS/components/claimsCard":"pages/customerCS/components/claimsCard","uni_modules/uview-ui/components/u-tabbar-item/u-tabbar-item":"uni_modules/uview-ui/components/u-tabbar-item/u-tabbar-item","uni_modules/uview-ui/components/u-tabbar/u-tabbar":"uni_modules/uview-ui/components/u-tabbar/u-tabbar","uni_modules/uview-ui/components/u-icon/u-icon":"uni_modules/uview-ui/components/u-icon/u-icon","uni_modules/uview-ui/components/u-line/u-line":"uni_modules/uview-ui/components/u-line/u-line","uni_modules/uview-ui/components/u-status-bar/u-status-bar":"uni_modules/uview-ui/components/u-status-bar/u-status-bar","uni_modules/uview-ui/components/u-loading-icon/u-loading-icon":"uni_modules/uview-ui/components/u-loading-icon/u-loading-icon","uni_modules/mescroll-uni/components/mescroll-empty/mescroll-empty":"uni_modules/mescroll-uni/components/mescroll-empty/mescroll-empty","uni_modules/mescroll-uni/components/mescroll-uni/components/mescroll-top":"uni_modules/mescroll-uni/components/mescroll-uni/components/mescroll-top","uni_modules/mescroll-uni/components/mescroll-body/mescroll-body":"uni_modules/mescroll-uni/components/mescroll-body/mescroll-body","uni_modules/uview-ui/components/u-search/u-search":"uni_modules/uview-ui/components/u-search/u-search","uni_modules/uview-ui/components/u-number-box/u-number-box":"uni_modules/uview-ui/components/u-number-box/u-number-box","uni_modules/uview-ui/components/u-picker/u-picker":"uni_modules/uview-ui/components/u-picker/u-picker","uni_modules/uview-ui/components/u-badge/u-badge":"uni_modules/uview-ui/components/u-badge/u-badge","uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom":"uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom","uni_modules/uview-ui/components/u-popup/u-popup":"uni_modules/uview-ui/components/u-popup/u-popup","uni_modules/uview-ui/components/u-toolbar/u-toolbar":"uni_modules/uview-ui/components/u-toolbar/u-toolbar","uni_modules/uview-ui/components/u-overlay/u-overlay":"uni_modules/uview-ui/components/u-overlay/u-overlay","uni_modules/uview-ui/components/u-transition/u-transition":"uni_modules/uview-ui/components/u-transition/u-transition"}[chunkId]||chunkId) + ".wxss";
/******/ var href = "" + ({"components/tab-bar":"components/tab-bar","uni_modules/uview-ui/components/u-form-item/u-form-item":"uni_modules/uview-ui/components/u-form-item/u-form-item","uni_modules/uview-ui/components/u-form/u-form":"uni_modules/uview-ui/components/u-form/u-form","uni_modules/uview-ui/components/u-input/u-input":"uni_modules/uview-ui/components/u-input/u-input","uni_modules/uview-ui/components/u-navbar/u-navbar":"uni_modules/uview-ui/components/u-navbar/u-navbar","uni_modules/uview-ui/components/u-upload/u-upload":"uni_modules/uview-ui/components/u-upload/u-upload","pages/cloudStore/components/shopDetailCard":"pages/cloudStore/components/shopDetailCard","uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni":"uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni","pages/cloudStore/components/shopItem":"pages/cloudStore/components/shopItem","pages/cloudStore/components/dropshipping":"pages/cloudStore/components/dropshipping","pages/cloudStore/components/wholeSales":"pages/cloudStore/components/wholeSales","uni_modules/uview-ui/components/u-rate/u-rate":"uni_modules/uview-ui/components/u-rate/u-rate","pages/cloudStore/components/couponsAct":"pages/cloudStore/components/couponsAct","pages/cloudStore/components/shopIntroduce":"pages/cloudStore/components/shopIntroduce","uni_modules/uview-ui/components/u-popup/u-popup":"uni_modules/uview-ui/components/u-popup/u-popup","pages/customerCS/components/claimsCard":"pages/customerCS/components/claimsCard","uni_modules/uview-ui/components/u-tabbar-item/u-tabbar-item":"uni_modules/uview-ui/components/u-tabbar-item/u-tabbar-item","uni_modules/uview-ui/components/u-tabbar/u-tabbar":"uni_modules/uview-ui/components/u-tabbar/u-tabbar","uni_modules/uview-ui/components/u-icon/u-icon":"uni_modules/uview-ui/components/u-icon/u-icon","uni_modules/uview-ui/components/u-line/u-line":"uni_modules/uview-ui/components/u-line/u-line","uni_modules/uview-ui/components/u-status-bar/u-status-bar":"uni_modules/uview-ui/components/u-status-bar/u-status-bar","uni_modules/uview-ui/components/u-loading-icon/u-loading-icon":"uni_modules/uview-ui/components/u-loading-icon/u-loading-icon","uni_modules/mescroll-uni/components/mescroll-empty/mescroll-empty":"uni_modules/mescroll-uni/components/mescroll-empty/mescroll-empty","uni_modules/mescroll-uni/components/mescroll-uni/components/mescroll-top":"uni_modules/mescroll-uni/components/mescroll-uni/components/mescroll-top","uni_modules/mescroll-uni/components/mescroll-body/mescroll-body":"uni_modules/mescroll-uni/components/mescroll-body/mescroll-body","uni_modules/uview-ui/components/u-search/u-search":"uni_modules/uview-ui/components/u-search/u-search","uni_modules/uview-ui/components/u-number-box/u-number-box":"uni_modules/uview-ui/components/u-number-box/u-number-box","uni_modules/uview-ui/components/u-picker/u-picker":"uni_modules/uview-ui/components/u-picker/u-picker","uni_modules/uview-ui/components/u-overlay/u-overlay":"uni_modules/uview-ui/components/u-overlay/u-overlay","uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom":"uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom","uni_modules/uview-ui/components/u-transition/u-transition":"uni_modules/uview-ui/components/u-transition/u-transition","uni_modules/uview-ui/components/u-badge/u-badge":"uni_modules/uview-ui/components/u-badge/u-badge","uni_modules/uview-ui/components/u-toolbar/u-toolbar":"uni_modules/uview-ui/components/u-toolbar/u-toolbar"}[chunkId]||chunkId) + ".wxss";
/******/ var fullhref = __webpack_require__.p + href;
/******/ var existingLinkTags = document.getElementsByTagName("link");
/******/ for(var i = 0; i < existingLinkTags.length; i++) {

@ -1557,7 +1557,7 @@ function initData(vueOptions, context) {
try {
data = data.call(context); // 支持 Vue.prototype 上挂的数据
} catch (e) {
if (Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
console.warn('根据 Vue 的 data 函数初始化小程序 data 失败,请尽量确保 data 函数中不访问 vm 对象,否则可能影响首次数据渲染速度。', data);
}
}
@ -8923,7 +8923,7 @@ function type(obj) {
function flushCallbacks$1(vm) {
if (vm.__next_tick_callbacks && vm.__next_tick_callbacks.length) {
if (Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
var mpInstance = vm.$scope;
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
']:flushCallbacks[' + vm.__next_tick_callbacks.length + ']');
@ -8944,14 +8944,14 @@ function nextTick$1(vm, cb) {
//1.nextTick 之前 已 setData 且 setData 还未回调完成
//2.nextTick 之前存在 render watcher
if (!vm.__next_tick_pending && !hasRenderWatcher(vm)) {
if(Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG){
if(Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG){
var mpInstance = vm.$scope;
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
']:nextVueTick');
}
return nextTick(cb, vm)
}else{
if(Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG){
if(Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG){
var mpInstance$1 = vm.$scope;
console.log('[' + (+new Date) + '][' + (mpInstance$1.is || mpInstance$1.route) + '][' + vm._uid +
']:nextMPTick');
@ -9047,7 +9047,7 @@ var patch = function(oldVnode, vnode) {
});
var diffData = this.$shouldDiffData === false ? data : diff(data, mpData);
if (Object.keys(diffData).length) {
if (Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + this._uid +
']差量更新',
JSON.stringify(diffData));
@ -19341,7 +19341,31 @@ exports.default = _default;
/* 209 */,
/* 210 */,
/* 211 */,
/* 212 */
/* 212 */,
/* 213 */,
/* 214 */,
/* 215 */,
/* 216 */,
/* 217 */,
/* 218 */,
/* 219 */,
/* 220 */,
/* 221 */,
/* 222 */,
/* 223 */,
/* 224 */,
/* 225 */,
/* 226 */,
/* 227 */,
/* 228 */,
/* 229 */,
/* 230 */,
/* 231 */,
/* 232 */,
/* 233 */,
/* 234 */,
/* 235 */,
/* 236 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-navbar/props.js ***!
\***************************************************************************************************/
@ -19443,14 +19467,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 213 */,
/* 214 */,
/* 215 */,
/* 216 */,
/* 217 */,
/* 218 */,
/* 219 */,
/* 220 */
/* 237 */,
/* 238 */,
/* 239 */,
/* 240 */,
/* 241 */,
/* 242 */,
/* 243 */,
/* 244 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-form/props.js ***!
\*************************************************************************************************/
@ -19513,7 +19537,7 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 221 */
/* 245 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/libs/util/async-validator.js ***!
\***************************************************************************************************/
@ -19551,7 +19575,7 @@ function _extends() {
var formatRegExp = /%[sdj%]/g;
var warning = function warning() {}; // don't print warning message when in production env or node runtime
if (typeof process !== 'undefined' && Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}) && "development" !== 'production' && typeof window !== 'undefined' && typeof document !== 'undefined') {
if (typeof process !== 'undefined' && Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"3","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}) && "development" !== 'production' && typeof window !== 'undefined' && typeof document !== 'undefined') {
warning = function warning(type, errors) {
if (typeof console !== 'undefined' && console.warn) {
if (errors.every(function (e) {
@ -20694,10 +20718,10 @@ Schema.warning = warning;
Schema.messages = messages;
var _default = Schema; // # sourceMappingURL=index.js.map
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/node-libs-browser/mock/process.js */ 222)))
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/node-libs-browser/mock/process.js */ 246)))
/***/ }),
/* 222 */
/* 246 */
/*!********************************************************!*\
!*** ./node_modules/node-libs-browser/mock/process.js ***!
\********************************************************/
@ -20728,7 +20752,7 @@ exports.binding = function (name) {
var path;
exports.cwd = function () { return cwd };
exports.chdir = function (dir) {
if (!path) path = __webpack_require__(/*! path */ 223);
if (!path) path = __webpack_require__(/*! path */ 247);
cwd = path.resolve(dir, cwd);
};
})();
@ -20741,7 +20765,7 @@ exports.features = {};
/***/ }),
/* 223 */
/* 247 */
/*!***********************************************!*\
!*** ./node_modules/path-browserify/index.js ***!
\***********************************************/
@ -21051,15 +21075,15 @@ var substr = 'ab'.substr(-1) === 'b'
}
;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../node-libs-browser/mock/process.js */ 222)))
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../node-libs-browser/mock/process.js */ 246)))
/***/ }),
/* 224 */,
/* 225 */,
/* 226 */,
/* 227 */,
/* 228 */,
/* 229 */
/* 248 */,
/* 249 */,
/* 250 */,
/* 251 */,
/* 252 */,
/* 253 */
/*!******************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-form-item/props.js ***!
\******************************************************************************************************/
@ -21125,14 +21149,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 230 */,
/* 231 */,
/* 232 */,
/* 233 */,
/* 234 */,
/* 235 */,
/* 236 */,
/* 237 */
/* 254 */,
/* 255 */,
/* 256 */,
/* 257 */,
/* 258 */,
/* 259 */,
/* 260 */,
/* 261 */
/*!**************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-input/props.js ***!
\**************************************************************************************************/
@ -21337,14 +21361,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 238 */,
/* 239 */,
/* 240 */,
/* 241 */,
/* 242 */,
/* 243 */,
/* 244 */,
/* 245 */
/* 262 */,
/* 263 */,
/* 264 */,
/* 265 */,
/* 266 */,
/* 267 */,
/* 268 */,
/* 269 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-upload/utils.js ***!
\***************************************************************************************************/
@ -21488,7 +21512,7 @@ function chooseFile(_ref) {
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"]))
/***/ }),
/* 246 */
/* 270 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-upload/mixin.js ***!
\***************************************************************************************************/
@ -21515,7 +21539,7 @@ var _default = {
exports.default = _default;
/***/ }),
/* 247 */
/* 271 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-upload/props.js ***!
\***************************************************************************************************/
@ -21657,21 +21681,21 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 248 */,
/* 249 */,
/* 250 */,
/* 251 */,
/* 252 */,
/* 253 */,
/* 254 */,
/* 255 */,
/* 256 */,
/* 257 */,
/* 258 */,
/* 259 */,
/* 260 */,
/* 261 */,
/* 262 */
/* 272 */,
/* 273 */,
/* 274 */,
/* 275 */,
/* 276 */,
/* 277 */,
/* 278 */,
/* 279 */,
/* 280 */,
/* 281 */,
/* 282 */,
/* 283 */,
/* 284 */,
/* 285 */,
/* 286 */
/*!******************************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni.js ***!
\******************************************************************************************************************/
@ -22572,7 +22596,7 @@ MeScroll.prototype.preventDefault = function (e) {
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 263 */
/* 287 */
/*!*************************************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni-option.js ***!
\*************************************************************************************************************************/
@ -22670,7 +22694,7 @@ var _default = GlobalOption;
exports.default = _default;
/***/ }),
/* 264 */
/* 288 */
/*!*******************************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-i18n.js ***!
\*******************************************************************************************************************/
@ -22702,7 +22726,7 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 265 */
/* 289 */
/*!****************************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/mescroll-uni/components/mescroll-uni/wxs/mixins.js ***!
\****************************************************************************************************************/
@ -22826,23 +22850,23 @@ var _default = WxsMixin;
exports.default = _default;
/***/ }),
/* 266 */,
/* 267 */,
/* 268 */,
/* 269 */,
/* 270 */,
/* 271 */,
/* 272 */,
/* 273 */,
/* 274 */,
/* 275 */,
/* 276 */,
/* 277 */,
/* 278 */,
/* 279 */,
/* 280 */,
/* 281 */,
/* 282 */
/* 290 */,
/* 291 */,
/* 292 */,
/* 293 */,
/* 294 */,
/* 295 */,
/* 296 */,
/* 297 */,
/* 298 */,
/* 299 */,
/* 300 */,
/* 301 */,
/* 302 */,
/* 303 */,
/* 304 */,
/* 305 */,
/* 306 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-rate/props.js ***!
\*************************************************************************************************/
@ -22929,30 +22953,6 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 283 */,
/* 284 */,
/* 285 */,
/* 286 */,
/* 287 */,
/* 288 */,
/* 289 */,
/* 290 */,
/* 291 */,
/* 292 */,
/* 293 */,
/* 294 */,
/* 295 */,
/* 296 */,
/* 297 */,
/* 298 */,
/* 299 */,
/* 300 */,
/* 301 */,
/* 302 */,
/* 303 */,
/* 304 */,
/* 305 */,
/* 306 */,
/* 307 */,
/* 308 */,
/* 309 */,
@ -22964,7 +22964,38 @@ exports.default = _default;
/* 315 */,
/* 316 */,
/* 317 */,
/* 318 */
/* 318 */,
/* 319 */,
/* 320 */,
/* 321 */,
/* 322 */,
/* 323 */,
/* 324 */,
/* 325 */,
/* 326 */,
/* 327 */,
/* 328 */,
/* 329 */,
/* 330 */,
/* 331 */,
/* 332 */,
/* 333 */,
/* 334 */,
/* 335 */,
/* 336 */,
/* 337 */,
/* 338 */,
/* 339 */,
/* 340 */,
/* 341 */,
/* 342 */,
/* 343 */,
/* 344 */,
/* 345 */,
/* 346 */,
/* 347 */,
/* 348 */,
/* 349 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-tabbar/props.js ***!
\***************************************************************************************************/
@ -23026,14 +23057,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 319 */,
/* 320 */,
/* 321 */,
/* 322 */,
/* 323 */,
/* 324 */,
/* 325 */,
/* 326 */
/* 350 */,
/* 351 */,
/* 352 */,
/* 353 */,
/* 354 */,
/* 355 */,
/* 356 */,
/* 357 */
/*!********************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-tabbar-item/props.js ***!
\********************************************************************************************************/
@ -23085,14 +23116,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 327 */,
/* 328 */,
/* 329 */,
/* 330 */,
/* 331 */,
/* 332 */,
/* 333 */,
/* 334 */
/* 358 */,
/* 359 */,
/* 360 */,
/* 361 */,
/* 362 */,
/* 363 */,
/* 364 */,
/* 365 */
/*!*******************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-status-bar/props.js ***!
\*******************************************************************************************************/
@ -23118,14 +23149,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 335 */,
/* 336 */,
/* 337 */,
/* 338 */,
/* 339 */,
/* 340 */,
/* 341 */,
/* 342 */
/* 366 */,
/* 367 */,
/* 368 */,
/* 369 */,
/* 370 */,
/* 371 */,
/* 372 */,
/* 373 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-icon/icons.js ***!
\*************************************************************************************************/
@ -23356,7 +23387,7 @@ var _default = {
exports.default = _default;
/***/ }),
/* 343 */
/* 374 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-icon/props.js ***!
\*************************************************************************************************/
@ -23463,14 +23494,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 344 */,
/* 345 */,
/* 346 */,
/* 347 */,
/* 348 */,
/* 349 */,
/* 350 */,
/* 351 */
/* 375 */,
/* 376 */,
/* 377 */,
/* 378 */,
/* 379 */,
/* 380 */,
/* 381 */,
/* 382 */
/*!*************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-line/props.js ***!
\*************************************************************************************************/
@ -23521,14 +23552,14 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 352 */,
/* 353 */,
/* 354 */,
/* 355 */,
/* 356 */,
/* 357 */,
/* 358 */,
/* 359 */
/* 383 */,
/* 384 */,
/* 385 */,
/* 386 */,
/* 387 */,
/* 388 */,
/* 389 */,
/* 390 */
/*!*********************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-loading-icon/props.js ***!
\*********************************************************************************************************/
@ -23605,28 +23636,28 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 360 */,
/* 361 */,
/* 362 */,
/* 363 */,
/* 364 */,
/* 365 */,
/* 366 */,
/* 367 */,
/* 368 */,
/* 369 */,
/* 370 */,
/* 371 */,
/* 372 */,
/* 373 */,
/* 374 */,
/* 375 */,
/* 376 */,
/* 377 */,
/* 378 */,
/* 379 */,
/* 380 */,
/* 381 */
/* 391 */,
/* 392 */,
/* 393 */,
/* 394 */,
/* 395 */,
/* 396 */,
/* 397 */,
/* 398 */,
/* 399 */,
/* 400 */,
/* 401 */,
/* 402 */,
/* 403 */,
/* 404 */,
/* 405 */,
/* 406 */,
/* 407 */,
/* 408 */,
/* 409 */,
/* 410 */,
/* 411 */,
/* 412 */
/*!***************************************************************************************************!*\
!*** C:/Users//Documents/HBuilderProjects/3/uni_modules/uview-ui/components/u-search/props.js ***!
\***************************************************************************************************/
@ -23762,23 +23793,23 @@ exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/* 382 */,
/* 383 */,
/* 384 */,
/* 385 */,
/* 386 */,
/* 387 */,
/* 388 */,