Commit ad2d28f7 authored by 黄奎's avatar 黄奎

1

parent 0b25ea00
...@@ -166,7 +166,7 @@ ...@@ -166,7 +166,7 @@
</view> </view>
<view class="inputBoxRight"> <view class="inputBoxRight">
<input class="text-right" type="number" v-model="item.UserNum" <input class="text-right" type="number" v-model="item.UserNum"
@input="handleInput($event, item,1, 'UserNum')" @blur="handleBlur(item,1, 'UserNum')" /> @input="getTotal()" />
</view> </view>
</view> </view>
<view class="inputBox row justify-between"> <view class="inputBox row justify-between">
......
...@@ -212,10 +212,11 @@ ...@@ -212,10 +212,11 @@
</view> </view>
<view class="col"></view> <view class="col"></view>
<view class="teamLeaderMakeNote row PX50" <view class="teamLeaderMakeNote row PX50"
:class="[params.IsOperation==0?'justify-between':'justify-center']"> :class="[params.LeaderApply.ID==0||(params.LeaderApply.ID>0&&params.LeaderApply.Status==2)?'justify-between':'justify-center']">
<view class="text-center" @click="goUrl('/pages/teamLeader/reimbursementInfor')">记一笔</view> <view v-if="params.LeaderApply.ID==0||(params.LeaderApply.ID>0&&params.LeaderApply.Status==2)"
<view v-if="params.IsOperation==0" class="text-center ML50" :class="[loading?'active':'']" class="text-center" @click="goUrl('/pages/teamLeader/reimbursementInfor')">记一笔</view>
@click="saveData">提交</view> <view v-if="params.LeaderApply.ID==0||(params.LeaderApply.ID>0&&params.LeaderApply.Status==2)"
class="text-center ML50" :class="[loading?'active':'']" @click="saveData">提交</view>
</view> </view>
</view> </view>
...@@ -352,14 +353,16 @@ ...@@ -352,14 +353,16 @@
if (this.loading) return if (this.loading) return
this.loading = true this.loading = true
uni.showLoading() uni.showLoading()
this.apipost("dmcstatistics_post_SetNewLeaderApplyList_V2", { var newMsg = {
...this.params, ...this.params,
RB_DMC_LeaderApply: { LeaderApply: {
ID: 0, ID: 0,
Status: 1, Status: 1,
TCIDs: this.msg.TCIDs, TCIDs: this.msg.TCIDs,
} }
}, (res) => { };
console.log("newMsg",newMsg);
this.apipost("dmcstatistics_post_SetNewLeaderApplyList_V2", newMsg, (res) => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
this.loading = false this.loading = false
uni.hideLoading() uni.hideLoading()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment