wupengfei
5 天以前 aabc15eccc966c4c29f78b1491a129bb1c17c016
apps/bMiniApp/src/subpackages/task/publishTask/InnerPage.vue
@@ -329,7 +329,7 @@
        prop="totalServiceFee"
        label-width="110px"
      >
        {{ form.totalServiceFee }}
        {{ `${toThousand(form.totalServiceFee)}元` }}
      </nut-form-item>
    </nut-form>
  </ContentScrollView>
@@ -367,7 +367,7 @@
  ChooseInputWithAreaPicker,
  ChooseInputWithCheckbox,
} from '@12333/components';
import { FormValidator, Message } from '@12333/utils';
import { FormValidator, Message, toThousand } from '@12333/utils';
import * as taskServices from '@12333/services/apiV2/task';
import { FormRules } from '@nutui/nutui-taro/dist/types/__VUE/form/types';
import Taro from '@tarojs/taro';
@@ -621,7 +621,9 @@
      endTime: dayjs(form.endTime).format('YYYY-MM-DD 23:59:59'),
    };
    let res = await taskServices.calcTaskTotalServiceFee(params);
    return res;
    if (res) {
      form.serviceFee = res.totalServiceFee;
    }
  } catch (error) {}
}