Commit ad2d28f7 authored by 黄奎's avatar 黄奎

1

parent 0b25ea00
......@@ -166,7 +166,7 @@
</view>
<view class="inputBoxRight">
<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 class="inputBox row justify-between">
......
......@@ -212,10 +212,11 @@
</view>
<view class="col"></view>
<view class="teamLeaderMakeNote row PX50"
:class="[params.IsOperation==0?'justify-between':'justify-center']">
<view class="text-center" @click="goUrl('/pages/teamLeader/reimbursementInfor')">记一笔</view>
<view v-if="params.IsOperation==0" class="text-center ML50" :class="[loading?'active':'']"
@click="saveData">提交</view>
:class="[params.LeaderApply.ID==0||(params.LeaderApply.ID>0&&params.LeaderApply.Status==2)?'justify-between':'justify-center']">
<view v-if="params.LeaderApply.ID==0||(params.LeaderApply.ID>0&&params.LeaderApply.Status==2)"
class="text-center" @click="goUrl('/pages/teamLeader/reimbursementInfor')">记一笔</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>
......@@ -352,14 +353,16 @@
if (this.loading) return
this.loading = true
uni.showLoading()
this.apipost("dmcstatistics_post_SetNewLeaderApplyList_V2", {
var newMsg = {
...this.params,
RB_DMC_LeaderApply: {
LeaderApply: {
ID: 0,
Status: 1,
TCIDs: this.msg.TCIDs,
}
}, (res) => {
};
console.log("newMsg",newMsg);
this.apipost("dmcstatistics_post_SetNewLeaderApplyList_V2", newMsg, (res) => {
if (res.resultCode == 1) {
this.loading = false
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