123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <template>
-
- <view class="page">
- <view class="form">
- <u-form :model="form" ref="uForm">
- <u-form-item label-width="150" label="审核客户" prop="curName">
- <u-input placeholder="请输入" v-model="curName" disabled="true" type="text"></u-input>
- </u-form-item>
- <u-form-item label-width="150" label="处理" prop="subscr_state" required>
- <u-radio-group v-model="form.subscr_state" active-color="#2979ff">
- <u-radio name="1">通过</u-radio>
- <u-radio name="2">拒绝</u-radio>
- </u-radio-group>
- </u-form-item>
- <u-form-item label-width="150" label="备注信息" prop="remark" label-position="top">
- <u-input placeholder="审核不通过时备注必填" v-model="form.remark" type="textarea"></u-input>
- </u-form-item>
- </u-form>
- <u-gap height="60"></u-gap>
- <u-button type="primary" @click="submitHandle">确定</u-button>
- </view>
- </view>
- </template>
- <script>
- import { arrToObj } from '@/utils'
- var that;
- export default {
- data() {
- return {
- curName: '',
- curId: '',
- form: {
- subscr_state: '1'
- },
- };
- },
- onLoad(params) {
- this.curId = params.id
- this.curName = `${params.name}`
- },
- // 必须要在onReady生命周期,因为onLoad生命周期组件可能尚未创建完毕
- onReady() {
- this.$refs.uForm.setRules(this.rules);
- },
- methods: {
- submitHandle() {
- const that = this
- this.$refs.uForm.validate(valid => {
- if (valid) {
- let params = {
- ...that.form,
- id: that.curId,
- }
- let str = 'apireportsubscrDeal'
- uni.api.estate[str](params).then(res => {
- uni.$msgConfirm('编辑成功', () => {
- uni.reLaunch({
- url: '/pages/agent/report/buycheck'
- })
- }, () => {
- uni.reLaunch({
- url: '/pages/agent/report/buycheck'
- })
- })
- })
- }
- });
- },
- // 以下是工具函数
- // 格式化日期的月份或天数的显示(小于10,在前面增加0)
- getFormatDate(value) {
- if (value == undefined || value == '') {
- return '';
- }
- var str = value;
- if (parseInt(value) < 10) {
- str = '0' + value;
- }
- return str;
- }
- }
- };
- </script>
- <style lang="scss">
- .page {
- background-color: #ffffff;
- }
- .form {
- border-radius: 10rpx;
- padding: 0 40rpx;
- }
- .popup-body {
- .tips-title {
- font-size: $u-p;
- margin-bottom: 20rpx;
- }
- .tips-content {
- font-size: $u-p2;
- color: $u-tips-color;
- margin-bottom: 60rpx;
- }
- }
- .id_card {
- color: #606266;
- width: 100%;
- height: 350rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: #f4f5f6;
- font-size: $u-p2;
- border-radius: 10rpx;
- image {
- border-radius: 10rpx;
- }
- }
- .footer {
- position: relative;
- text-align: center;
- font-size: $u-p2;
- left: 0;
- bottom: 20rpx;
- .agreement {
- color: $u-theme-color;
- }
- }
- .slot-content {
- font-size: 28rpx;
- color: $u-content-color;
- padding: 20rpx;
- }
- .warp {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
- .rect {
- width: 400rpx;
- height: 400rpx;
- background-color: #fff;
- }
- </style>
|