V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  chenqh  ›  全部回复第 26 页 / 共 103 页
回复总数  2051
1 ... 22  23  24  25  26  27  28  29  30  31 ... 103  
2021-12-24 21:06:40 +08:00
回复了 chenqh 创建的主题 Steam steam 现在登录收不到验证码
不知道为什么,难道是我到了不玩游戏的时候了?
2021-12-24 18:22:27 +08:00
回复了 chenqh 创建的主题 Steam steam 现在登录收不到验证码
@ethanlu 大家都是用令牌的吗?我还是邮箱呢
2021-12-24 15:27:29 +08:00
回复了 codergrowing 创建的主题 Steam Steam 冬促开始了,大家准备买些什么呢?
借楼问下, steam 收不到验证码怎么回事呀
现在大家服务器都是 debian 了吗?
2021-12-16 10:37:20 +08:00
回复了 rophie123 创建的主题 Node.js nodejs 前后端一把梭的优势在哪?
但是小项目,可以校验逻辑完全放到后端来做呀, 前端什么也不校验,就是用起来不那么友好罢了
2021-12-14 21:19:26 +08:00
回复了 qwertasdf 创建的主题 分享发现 程序员考公上岸的来讲一下感受
@chenqh 还要加个单身无房
2021-12-14 21:19:03 +08:00
回复了 qwertasdf 创建的主题 分享发现 程序员考公上岸的来讲一下感受
@qwertasdf 像我这种没有存款的 31 失业程序员怎么办呀
2021-12-14 21:11:16 +08:00
回复了 chenqh 创建的主题 Vue.js 关于 vue3 lint 的问题
@noe132 添加了 ` no-undef ` 就好了,谢谢大佬,我还以为 no-undef 本来就好开的呢
2021-12-14 21:07:51 +08:00
回复了 chenqh 创建的主题 Vue.js 关于 vue3 lint 的问题
@noe132 噗,我还以为 no-undef 一开始就是自带的呢,郁闷
2021-12-14 21:00:49 +08:00
回复了 chenqh 创建的主题 Vue.js 关于 vue3 lint 的问题
@noe132 我的意思是我这个 message 明显没有 import 呀,难道 eslint 检查不出来? eslint 这么弱吗?
2021-12-14 20:53:53 +08:00
回复了 qwertasdf 创建的主题 分享发现 程序员考公上岸的来讲一下感受
所以为什么我这么差呢
2021-12-14 20:52:10 +08:00
回复了 qwertasdf 创建的主题 分享发现 程序员考公上岸的来讲一下感受
@qwertasdf 我能说什么呢
2021-12-14 20:44:31 +08:00
回复了 qwertasdf 创建的主题 分享发现 程序员考公上岸的来讲一下感受
不过 14W 真的好高呀,14/12,都快 15K 了
2021-12-14 20:43:01 +08:00
回复了 qwertasdf 创建的主题 分享发现 程序员考公上岸的来讲一下感受
15 年,太早了呀,15 年和现在比起来估计就是 easy 难度了,哎,
不甘心
2021-12-12 22:33:50 +08:00
回复了 itsocool2021 创建的主题 问与答 固态硬盘、机械硬盘、移动硬盘这些有什么区别呢?
我只知道 大容量的移动机械硬盘很多叠瓦盘, 用来做跑虚拟机会导致机器卡死
2021-12-12 20:05:38 +08:00
回复了 chenqh 创建的主题 Vue.js 关于 antd 遇到的问题
知道是怎么回事了`{required: true, message: "请输入金额", trigger: "change"}` 加个 type 就好了 `{required: true, message: "请输入金额", trigger: "change", type: "number"}` 郁闷了
2021-12-12 19:40:21 +08:00
回复了 chenqh 创建的主题 Vue.js 关于 antd 遇到的问题
@dfkjgklfdjg 代码是这样的, 难道是因为我放在 modal 里面的原因?还是因为子组件的原因? codepen 不会用呀,不知道怎么加载 antd
2021-12-12 19:39:01 +08:00
回复了 chenqh 创建的主题 Vue.js 关于 antd 遇到的问题
<template>
<a-modal
title="更新通道费率(统统 /1000)"
ok-text="确定"
cancel-text="取消"
width="800px"
@ok="fn_handle_ok"
v-model:visible="o_visible"
v-model:loading="o_loading"
>

<a-form ref="o_form_ref" :rules="o_form_rules" :model="o_form_model" :wrapperCol="{span: 16}" :labelCol="{span: 8}">
<a-row :gutter="[16, 16]">
<a-col xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="{span: 24}" v-for="(channel,index) in o_channel_list">
<a-form-item :label="channel.label" :name="channel.name" :key="index" >
<a-input-number v-model:value="o_form_model[channel.name]" min="-1" max="1000"></a-input-number >
<span class="ant-form-text">

</span>
</a-form-item>
</a-col>
</a-row>
</a-form>

</a-modal>

</template>

<script>

import {ref} from "vue"
import {reactive} from "vue"
import { message } from 'ant-design-vue';
import {toRaw} from "vue"
import {useStore} from "vuex";
export default {
emits: [
"on-ok"
],
setup(props, {emit}) {
let o_data_ready = ref(false)
let store = useStore()
let o_visible = ref(false);
let fn_visible = o => {
o_visible.value = o;
}
let o_loading = ref(false);
let check_dev = async (rule, value) => {
if(value == '') {
return Promise.reject("请输入值")
}
return Promise.resolve(value);
}

let o_form_rules = {
dev: [{required: true, message: "请输入金额", trigger: "change"}],
}
let o_channel_list = [
{label: "dev:", name: "dev"},
{label: "mock:", name: "mock"}
]
let o_form_model = reactive({})
let o_form_ref = ref();

let fn_form_model = o => {
for(let key in o_form_rules) {
o_form_model[key] = o[key]
}
console.log("o_form_model", o_form_model);
}
let extra = {}
let fn_extra = o => {
extra = o
}
let fn_form_model_clear = () => {
fn_extra({})
for(let key in o_form_rules ) {
o_form_model[key] = 0;
}
}

let fn_handle_ok = () => {
o_form_ref.value.validate().then(async () => {
let data = Object.assign({}, extra, toRaw(o_form_model))
await store.dispatch("user/api_user_update_channel", data)
emit("on-ok")
fn_form_model_clear()
}).catch(e => {
message.error(e)
console.error(e);
})
}


// __export__
return {
o_data_ready,
o_visible,
fn_visible,
o_loading,
fn_handle_ok,
o_form_rules,
o_channel_list,
o_form_model,
fn_form_model_clear,
fn_form_model,
fn_extra,
o_form_ref,
}
// __end_export__
}
}
</script>
2021-12-07 23:38:18 +08:00
回复了 vicalloy 创建的主题 问与答 现在国内用 PostgreSQL 的多吗
@yrj 我也觉得宝塔的 pg 好难用,哈哈
国内 Php 不火了,也说明国内没有新的小公司了
1 ... 22  23  24  25  26  27  28  29  30  31 ... 103  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2685 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 31ms · UTC 08:49 · PVG 16:49 · LAX 01:49 · JFK 04:49
Developed with CodeLauncher
♥ Do have faith in what you're doing.