Browse Source

入驻管理增加过期时间

pengyh 1 year ago
parent
commit
735d8894d6
1 changed files with 12 additions and 1 deletions
  1. 12 1
      src/views/setting/organizationManagement/settledManagement/index.vue

+ 12 - 1
src/views/setting/organizationManagement/settledManagement/index.vue

@@ -59,6 +59,15 @@
               <svg-icon icon-class="question" slot="reference" />
             </el-popover>
           </el-form-item>
+			<el-form-item label="到期时间" prop="expireTime">
+				<el-date-picker
+					style="width: 100%;"
+					v-model="step1Form.expireTime"
+					type="datetime"
+					value-format="yyyy-MM-dd HH:mm:ss"
+					placeholder="选择日期时间">
+				</el-date-picker>
+			</el-form-item>
         </el-form>
       </el-card>
     </div>
@@ -334,7 +343,8 @@ export default {
         newPassword: '', // 登录密码
         confirmPassword: '', // 确认密码
         qrcode1:'',
-        qrcode2:''
+        qrcode2:'',
+				expireTime: ''
       },
       step1FormRules: {
         account: [
@@ -541,6 +551,7 @@ export default {
             lng: this.step1Form.lng,
             address: this.step1Form.address,
             password: this.step1Form.confirmPassword,
+						expireTime: this.step1Form.expireTime,
 
             minLogo1: this.img1_url,
             minLogo2: this.img2_url,