Vue3:ElementPlus分装动态列表查询表单和弹窗动态表单

文章目录

    • 概要
    • 表单组件封装
    • 弹窗组件调用表单组件
    • 页面列表调用查询表单
       

表单组件封装

 组件代码

<template><el-formref="ruleFormRef"class="elForm":inline="true":rules="rules":model="TableList"label-width="150"><template v-if="fromlist.isInput">//父组件传递的数据对象<template v-for="(item, key, index) in fromlist.listData"><!-- 输入框 --><el-form-item:prop="key":label="item.title"v-if="item.type == 'input' && item.show":key="index"><el-input:disabled="item.disabled"v-model="TableList[key]":clearable="item.clearable":placeholder="'请输入' + item.title":suffix-icon="item.icon":style="{ width: fromlist.with }"/></el-form-item><!-- 密码框 --><el-form-item:prop="key":label="item.title"v-if="item.type == 'password' && item.show":key="index"><el-inputv-model="TableList[key]":clearable="item.clearable":placeholder="'请输入' + item.title":suffix-icon="item.icon":style="{ width: fromlist.with }"/></el-form-item><!-- 下拉框 --><el-form-item:prop="key":key="item.show":label="item.title"v-if="item.type == 'select' && item.show"><el-selectcollapse-tagsl-selectv-model="TableList[key]":max-collapse-tags="1":filterable="item.filterable":multiple="item.multiple":clearable="item.clearable":placeholder="'请输入' + item.title":style="{ width: fromlist.with }"><span v-if="item.children.constructor === Object"><el-optionv-for="(value, key) in item.children":key="key":label="value":value="key"></el-option></span><span v-if="item.children.constructor === Array"><el-optionv-for="(item, key) in item.children":key="key":label="item.label"v-html="item.label2 ? item.label2  : item.label":value="item.value"></el-option></span></el-select></el-form-item><!-- 开始时间 --><el-form-item:prop="key":key="item.show":label="item.title"v-if="item.type == 'time' && item.show"><el-date-pickerv-model="TableList[key]"type="datetimerange"start-placeholder="Date"end-placeholder="End Date"date-format="YYYY/MM/DD"time-format="hh:mm:ss"value-format="YYYY-MM-DD HH:mm:ss":style="{ width: fromlist.with }"/></el-form-item><!-- 年月日时分秒 --><el-form-itemclass="daterange_dom":prop="key":key="item.show":label="item.title"v-if="item.type == 'picker' && item.show"><el-date-pickerv-model="TableList[key]"type="daterange"start-placeholder="开始时间"end-placeholder="结束时间"value-format="YYYY-MM-DD":default-value="[new Date(2010, 9, 1), new Date(2010, 10, 1)]":style="{ width: fromlist.with }"/></el-form-item><!-- 单选框 --><el-form-item:prop="key":label="item.title"v-if="item.type == 'radio' && item.show":key="index"><el-radio-groupv-model="TableList[key]"v-for="(res, index) in item.children"><el-radio-button:label="item.children[index].value">{{item.children[index].label}}</el-radio-button></el-radio-group></el-form-item><!-- 单选 --><el-form-item:prop="key":label="item.title"v-if="item.type == 'radio1' && item.show"><el-radio-groupv-model="TableList[key]"v-for="(val, index) in item.children"><el-radio :label="item.children[index].value" >{{item.children[index].label}}</el-radio></el-radio-group></el-form-item><!-- 文本框 --><el-form-item:prop="key":label="item.title"v-if="item.type == 'textarea' && item.show":key="index"><el-inputtype="textarea"v-model="TableList[key]":clearable="item.clearable":placeholder="'请输入' + item.title":suffix-icon="item.icon":style="{ width: fromlist.with }"/></el-form-item></template><!-- 操作按钮 --><el-form-itemid="form_But"style="display: block"v-if="fromlist.index !== '2'"><div class="form_But_div"><el-button type="primary" @click="onSubmit(ruleFormRef)">查询</el-button><Buttonplain:title="'重置'"@click="ResetForm(ruleFormRef)":pattern="'centre'"/><el-linkv-if="isshow"class="Rigth_ellink"@click="handelClickShow(show, fromlist)":underline="false"><span><span v-show="!show">展开</span><span v-show="show">合并</span></span><span class="show_icon"><Icons:theme="'outline'":size="24":is="!show ? 'expand-down-one' : 'fold-up-one'"/></span></el-link></div></el-form-item></template></el-form>
</template><script setup lang="ts">
import ElementResizeDetectorMaker from "element-resize-detector";
import {reactive,defineProps,ref,getCurrentInstance,onMounted,defineExpose,
} from "vue";
import { User } from "@element-plus/icons-vue";
import { Icons } from "@/components";
import { Button } from "@/components";
const { proxy } = getCurrentInstance();
//接收父级弹窗组件传递过来的数据
const props = defineProps(["fromlist", "Radio", "submitValue"]);const data = ref({});
//(列表页面),显示查询参数是否显示 true为显示 show将动态赋值给fromlist数据对象中传递过来的查询参数,根据上面template的判断,是否显示
let show = ref(false);
//(列表页面,显示查询参数的数量(比如输入框等等)
let DomNumber = ref(0);
//(弹窗表单) 接收弹窗组件传递过来的页面查询的数据对象
let fromlist = ref(props.fromlist);
//表单组件ref
const ruleFormRef = ref(null);//(弹窗表单)定义表单组件的校验,弹窗表单中使用
const rules = reactive(getRulesList(fromlist.value.listData))
//(弹窗表单)定义绑定在表单中的数据接收对象, rules 和 TableList中对应上才能校验。
let TableList = reactive(TableListParameter(fromlist.value.listData))//(弹窗表单)根据弹窗组件传递过来的数据类型,重新定义表单接收输入数据的对象。
function TableListParameter(params:object) {let list = {}for(const key in params){list[key] = params[key].value}return  list
} //(弹窗表单)根据弹窗组件传递过来的数据类型,动态定义表单校验规则。
function getRulesList(params:type) {let list = {}for (const key in params) {if(params[key].required){let data = []//判断传递过来的参数类型是输入框还是下拉框switch (params[key].type) {case 'input':data = [{required: true, message: `请输入${params[key].title}`, trigger: 'blur' }]break;case 'select':data = [{required: true, message: `请选择${params[key].title}`, trigger: 'change' }]break;}list[key] = data}}return list
}//(列表页面)emit 父子组件通信,UserSearch是父组件传定义接收子组件传递接收数据的方法
const emit = defineEmits([`UserSearch`]);
//(列表页面判断是否显示表单组件中的 (查询) (重置) 按钮,弹窗表单组件是不现实的 
let isshow = ref(false);
onMounted(() => {//(列表页面 判断是否传递过来的是表单查询,如果是就调用显示查询参数方法 type:tabulation 表示列表页面if (props.fromlist.listData &&props.fromlist.isInput &&props.fromlist.type == 'tabulation' ) {OnToPage();} else {//(弹窗表单)proxy.$PublicAPI.UpdataFormList(props.fromlist.listData);}});
//(弹窗表单) 将子组件 变量、方法 抛出,父组件可以直接电泳
defineExpose({TableList,ResetForm,FormresetFields
});//(列表页面)列表查询控制查询参数的显示隐藏,如果查询参数超过2行内容,多的隐藏,此方法点击展开可展示全部查询参数,折叠就只显示两行的查询参数
function handelClickShow(type: boolean) {show.value = !show.value;UpPorpsData(fromlist, show.value);
}
//(列表页面) 进入页面,定义请求参数显示两行方法
function OnToPage() {let erd = ElementResizeDetectorMaker();let jianshiDom = document.querySelector(".elForm");let butDom =(document.querySelector("#form_But").offsetHeight + 8) * 5 + 8 + "px";document.getElementsByTagName("body")[0].style.setProperty("--input_Width", butDom);erd.listenTo(jianshiDom, (ele) => {let inputWidth = jianshiDom?.children[0].offsetWidth;let OneContentWidth = Math.floor(jianshiDom.offsetWidth / inputWidth);DomNumber.value = OneContentWidth * 2;UpPorpsData(fromlist, show.value);});
}
//(列表页面)根据上面的方法,多出两行的查询参数对象定义show为false使元素隐藏起来
function UpPorpsData(data: type, type: boolean) {let forKey = Object.keys(data.value.listData);if (type) {forKey.map((itme, index, key) => {data.value.listData[itme].show = true;});} else {forKey.map((itme, index) => {let kk = DomNumber.value;if (kk < Object.keys(fromlist.value.listData).length) {isshow.value = true;if (kk > 0) {if (index < kk) {data.value.listData[itme].show = true;} else {data.value.listData[itme].show = false;}}} else {isshow.value = false;data.value.listData[itme].show = true;}});}return data.value;
}//(列表页面) 列表中点击查询,传递给父组件,proxy.$store.rou_Name 获取到的当前路由如:/user 将改变为:User ,此行就是 UserSearch ,这是在user页面中引用了表单组件 @UserSearch 定义接收子组件传递回来的方法。TableList:提交给父组件的数据,submit:点击的按钮类型(查询按钮)   resetting :点击的按钮类型(重置按钮)
async  function onSubmit(formEl: FormInstance | undefined) {emit(`${proxy.$store.rou_Name}Search`, TableList, "submit");
}function FormresetFields() {ruleFormRef.value.resetFields();}//重置
function ResetForm(formEl: FormInstance | undefined) {if (!ruleFormRef) return;//清空输入的内容ruleFormRef.value.resetFields();emit(`${proxy.$store.rou_Name}Search`, TableList, "resetting");
}
</script><style >
:root {--input_Width: 500px;
}
</style><style scoped  lang="less" >
::v-deep.elForm {padding: 8px 16px 0px 16px;background: white;position: relative;max-height: var(--input_Width) !important;overflow: hidden;overflow-y: auto;
}::v-deep .el-input,
.el-select {height: 32px !important;
}::v-deep .el-input .el-input__wrapper {height: 32px !important;
}::v-deep .el-input__wrapper:hover,
::v-deep .el-select__wrapper:hover {box-shadow: 0 0 0 1px var(--theme_background) inset !important;
}::v-deep.el-button {min-width: 88px;height: 32px;
}::v-deep.el-form--inline .el-form-item {margin-right: 14px !important;
}::v-deep.Button {margin-left: 29px !important;
}.form_But {height: 32px;position: absolute;right: -27px;
}
::v-deep .el-form-item__content {display: flex;justify-content: end;// width: 248px;
}
.Rigth_ellink {min-width: 88px;display: flex;
}
.show_icon {display: flex;justify-content: center;align-items: center;margin-left: 3px;
}
::v-deep(.el-form-item) {margin-bottom: 8px;
}#form_But {width: 398px;
}
.form_But_div {display: flex;align-items: center;
}
::v-deep .el-form-item {margin-bottom: 8px;
}::v-deep.el-button--primary {background: var(--secondary_but_Backgroun) !important;color: var(--theme_background) !important;border: 1px solid var(--secondary_but_border);
}::v-deep.el-button--primary:hover {border: 1px solid var(--theme_background);
}
::v-deep.el-button--primary:active {border: 1px solid var(--secondary_but_Click);
}
::v-deep .el-range__icon {float: none !important;position: absolute !important;right: 10px !important;
}::v-deep(.el-input__prefix) {display: none;
}
::v-deep(.el-radio-button__inner) {border-radius: 20px !important;
}
</style>

弹窗组件调用

<template><div><el-dialog:title="props.FormList.title"v-model="drawer"width="40%":before-close="handleClose"><div class="dialog"><!--props.FormList 父组件传递的表单渲染组件数据 --><FromData:fromlist="props.FormList":Radio="Radio"ref="formDataRef"></FromData></div><template #footer><span class="dialog-footer"><el-button @click="handleClose">取 消</el-button><el-button type="primary" @click="submit()">确 定</el-button></span></template></el-dialog></div>
</template><script setup lang="ts">
import { ref, watch, getCurrentInstance, defineProps, onMounted,defineExpose } from "vue";import { FromData } from "@/components";
const { proxy } = getCurrentInstance();
import bus from "@/mitt";
import router from "/src/router/index";
//接收调用弹窗组件传递过来的参数
const props = defineProps(["FormList"]);
//点击弹窗可传给调用弹窗页面的接受方法
const emit = defineEmits(['UserPopUpWindow','ConfigPopUpWindow'])
// 弹窗默认打开,调用组件的页面中控制弹窗组件的显示隐藏即可
const drawer = ref(true);
const title = ref("");
const fromlist = ref({});
const submitValue = ref("");
// 创建一个 ref 来引用子组件
const formDataRef = ref(null);
const Radio = ref({});
//弹窗确认按钮
const submit = () => {//formDataRef 表单组件ref ,因为表单组件中抛出了方法或者变量数据,在这里可以直接调用const childComponent = formDataRef.value;if (childComponent && childComponent.TableList) {const list = childComponent.TableList;//提交给调用弹窗组件的页面emit(`${proxy.$store.rou_Name}PopUpWindow`,list,childComponent,props.FormList.type)}
};onMounted(() => {
});//关闭弹窗
const handleClose = () => {//调用表单组件中的重置操作formDataRef.value.FormresetFields()emit(`${proxy.$store.rou_Name}PopUpWindow`, false)
};
</script><style lang="less" scoped>
.dialog {width: 90%;margin: 10px auto 0 auto;
}
::v-deep(.el-dialog) {--el-dialog-padding-primary: 5px 0 0 0;
}
::v-deep(.el-dialog__header) {border-bottom: 1px solid #ccc;line-height: 40px !important;
}
::v-deep(.el-dialog__title) {margin-left: 16px;
}
::v-deep .elForm {max-height: 100% !important;
}
::v-deep .el-form-item {margin-bottom: 20px;
}
::v-deep .el-form-item__content,
::v-deep .el-input,
::v-deep.el-select {height: 40px !important;
}
::v-deep .el-input__inner {line-height: 40px !important;
}
::v-deep(.el-radio-group:nth-child(2)) {margin-left: 20px;
}
::v-deep(.el-dialog__footer) {border-top: 1px solid #ccc;padding: 10px 15px 10px 0;
}
</style>

页面调用表单组

<template><div class="box"><div class="title">WEB权限  <span>列表</span></div><div class="contet">  <div class="button"><div ><Button  :type="'primary'"  @click="handleClickUp('expand')" :icon="'plus'" :title="'展开'" :pattern="'centre'"  /><Button  :type="'primary'"  @click="handleClickUp('retract')" :icon="'plus'" :title="'收起'" :pattern="'centre'"  /><Button  :type="'primary'"  @click="handelSubmit"  :icon="'plus'" :title="'保存'" :pattern="'centre'"  /><Button  plain  :title="'刷新'" @click="clickRefresh" :pattern="'centre'" :icon="'download'"/></div><div><Button  :type="'primary'"  @click="handelCreateConfig"  :icon="'plus'" :title="'新增'" :pattern="'centre'"  /></div></div><!-- 树状结构 --><div class="Tree" ><Tree :isUp="isUp"  ref="treelist" :treeApiObject="treeApiObject" @ConfigTree="ConfigTree" /></div></div> <!-- 新增编辑弹出框 --><PopUpWindow :FormList="FormList" @ConfigPopUpWindow="ConfigPopUpWindow" v-if="PopUpWindowShow"   ></PopUpWindow></div>
</template><script lang="ts" setup>import {  Button ,Tree , PopUpWindow, } from "@/components";import { onMounted, ref } from "vue";import useCurrentInstance from "@/hooks/useCurrentInstance";
const { proxy } = useCurrentInstance();const isUp = ref({number : 0,type : ''})const treelist = ref(null)const treeApiObject = ref({deleteUrl:'/system/permission/delete',editUrl :'/system/permission/edit'})const PopUpWindowShow = ref(false)
//定义传递给const FormList = ref({index:'2',formInline:true,isInput:true,type:'create',title:'新增权限',with:'448px',listData:{"parent_id":{title:'父级',type:'select',clearable:true,required:true,value:'',children:[]},"permission_type":{title:'权限类型',type:'select',required:true,clearable:true,value:'',children:[{label:"菜单",value:1},{label:"列表",value:2},{label:"按钮",value:3},]},"name":{ title:'名称',type:'input',required:true,clearable:true,value:'',},"slug":{ title:'权限标识',type:'input',required:true,clearable:true,value:'',}, "guard_name":{ title:'规则',type:'input',disabled:true,clearable:true,value:'web',}, "web_path":{ title:'前端访问路径',type:'input',required:true,clearable:true,value:'',}, }
})const resettingFormList = ref(null)onMounted(()=>{
getSessingStorageList()})function handleClickUp(type:string) {isUp.value.type = typeif(type == 'expand'){isUp.value.number  += 1}else{isUp.value.number  += 1}}function clickRefresh() {treelist.value.GetTreeList()}function handelSubmit() {let list:number[] = []proxy.$PublicAPI.UpdataTreeList(treelist.value.data,list)proxy.$project_interface.SaveTreeList({"permission_data":list}).then(res=>{console.log('res',res);})}
//点击新增 传递首次进入的数据类型function handelCreateConfig() {PopUpWindowShow.value = true}//这个是获取添加弹窗表单的下拉数据function getSessingStorageList() {let list:number[] = []let navlist = [{id:0,hidden:1,name:'系统',order:2,Permissions:1,web_path:'',children:JSON.parse(sessionStorage.getItem('NavList'))}]proxy.$PublicAPI.UpdataSelectTree(navlist,list,1)console.log('list',list);FormList.listData['parent_id'].children =  listresettingFormList.value = JSON.parse(JSON.stringify(FormList.value)) }//接收菜单树状点击编辑传递过来的数据
function ConfigTree(params:object){FormList.value.title  = '编辑权限'FormList.value.type = 'edit'FormList.value.listData['id'] = {value:params.id}for (const key in params) {for (const index in FormList.value.listData) {if(index == key){if(FormList.value.listData[index].type == 'select'){FormList.value.listData[index].value = parseInt(params[key])}else{FormList.value.listData[index].value = params[key]}}}}PopUpWindowShow.value = true
}//根据弹窗组件传递过来的数据来判断是点击了取消还是确认,并做出相应的处理function ConfigAxios(params:object, subset:object,type:string) {let apiName = ''if(type == 'create'){apiName = 'Createconfig'}else if(type == 'edit'){apiName = 'Editconfig'}proxy.$project_interface[apiName](params).then(res=>{if(res.code == 200){subset.ResetForm()PopUpWindowShow.value = falseclickRefresh()}})}//接收弹窗关闭传递过来的数据function ConfigPopUpWindow(params:boolean,subset:object,type:string) {if(typeof(params) == 'boolean'){PopUpWindowShow.value= paramsFormList.value = JSON.parse(JSON.stringify(resettingFormList.value))}else{ConfigAxios(params,subset,type)}}
</script><style scoped lang="less">.box{width: 99%;height: 100%;margin: auto;.title{font-size: 24px;letter-spacing: 0.1em;color: var(--PublicFonteColor);span{color:var(--Nav_Font_Color);font-size:var(--Nav_FontSize) ;}}.contet{margin-top: 18px;width: 100%;background: white;.button{display: flex;justify-content: space-between;padding: 16px 0;border-bottom:1px solid #ccc;div {padding: 0 5px;display: flex;}}.Tree{padding:  16px 10px;}}}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/23713.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

AlaSQL.js:用SQL解锁JavaScript数据操作的魔法

简介 先附上 github 地址 https://github.com/AlaSQL/alasql AlaSQL.js - JavaScript SQL database for browser and Node.js. Handles both traditional relational tables and nested JSON data (NoSQL). Export, store, and import data from localStorage, IndexedDB, or …

高德车道级安全预警再升级 10大场景全方位守护行车安全

今日起&#xff0c;2024年高考、端午节小长假相继到来&#xff0c;正值新一波出行高峰到来&#xff0c;高德地图车道级安全预警功能再次升级。升级后的车道级安全预警功能覆盖了10大安全风险较高的行车场景&#xff0c;全方位、超视距地为用户实时探测、预警行车风险&#xff0…

成都跃享未来教育咨询有限公司,值得信赖!

在浩渺的教育咨询市场中&#xff0c;成都跃享未来教育咨询有限公司以其独特的魅力和卓越的服务质量&#xff0c;成为了行业内的璀璨明星。作为一家致力于为学生提供全方位教育咨询服务的公司&#xff0c;成都跃享未来教育咨询有限公司始终坚持安全可靠的原则&#xff0c;为广大…

树莓派4B_OpenCv学习笔记4:测试摄像头_imread加载显示图像_imwrite保存图片

今日继续学习树莓派4B 4G&#xff1a;&#xff08;Raspberry Pi&#xff0c;简称RPi或RasPi&#xff09; 本人所用树莓派4B 装载的系统与版本如下: 版本可用命令 (lsb_release -a) 查询: Opencv 版本是4.5.1&#xff1a; 今日对之前的测试CSI摄像头函数进行一些理解说明&#x…

pytorch中的zero_grad()函数的含义和使用

optimizer.zero_grad() &#xff0c;用于将模型的参数梯度初始化为0。 #反向计算 loss.backward()#反向传播计算梯度 optimizer.step()#更新参数&#xff0c;梯度被反向计算之后&#xff0c;调用函数进行所有参数更新 #在反向传播计算时&#xff0c;梯度的计算是累加&#xff…

降噪是什么意思?视频如何降噪?一文了解全部

在视频制作的过程中&#xff0c;我们经常会遇到噪音问题&#xff0c;这些噪音可能来自拍摄环境、录制设备或其他源头。然而&#xff0c;对于初学者来说&#xff0c;降噪是什么意思&#xff0c;以及如何有效地在视频中进行降噪可能是一些疑惑的问题。本文将深入解释降噪的概念&a…

【算法】深入浅出爬山算法:原理、实现与应用

人不走空 &#x1f308;个人主页&#xff1a;人不走空 &#x1f496;系列专栏&#xff1a;算法专题 ⏰诗词歌赋&#xff1a;斯是陋室&#xff0c;惟吾德馨 目录 &#x1f308;个人主页&#xff1a;人不走空 &#x1f496;系列专栏&#xff1a;算法专题 ⏰诗词歌…

echarts学习: 绘制双y轴折线图

前言 我们公司项目中的折线图大都是双y轴的&#xff0c;因为这些图表往往需要同时展示水位和流量这两种不同单位的数据&#xff0c;因此如何绘制双y轴折线图就是就是我所面临的首要问题。 1.如何绘制双y轴 将yAxis属性的值设置为一个数组&#xff0c;并在数组中添加两个axis对…

【LC刷题】DAY02:977 209 59

#【LC刷题】DAY02&#xff1a;977 209 59 文章目录 977. 有序数组的平方 [link](https://leetcode.cn/problems/squares-of-a-sorted-array/description/)第一思路&#xff1a;直接排序优化&#xff1a;双指针 209. 长度最小的子数组 [link](https://leetcode.cn/problems/min…

Apache Spark MLlib详解

Apache Spark MLlib 是 Spark 的一个核心组件&#xff0c;提供了大量的机器学习算法和工具&#xff0c;用于在大数据集上进行数据分析和预测建模。MLlib 提供了广泛的算法集&#xff0c;包括分类、回归、聚类、协同过滤、降维、特征提取、频繁模式挖掘和统计测试等。 主要特点…

记录一次Linux启动kafka后并配置了本地服务连接远程kafka的地址后依旧连接localhost的问题

问题的原因 我是使用docker来安装并启动kafka 的&#xff0c;所以在启动过程中并没有太多需要配置的地方&#xff0c;基本都是从网上照搬照抄&#xff0c;没动什么脑子&#xff0c;所以看着启动起来了觉得就没事了&#xff0c;但是运行项目的时候发现&#xff0c;我明明已经配…

第五届上海市青少年算法竞赛网络同步赛(小学组)

第五届上海市青少年算法竞赛网络同步赛(小学组)T1. 符号译码_网络同步赛 内存限制: 256 Mb 时间限制: 1000 ms 题目描述 小爱为标点符号设计了一套编码系统,编码规则如下: [ 的编码为 010 ] 的编码为 101 < 的编码为 00 > 编码为 11 + 的编码为 011 - 编码为 100 根…

AI辅助论文:探索AI查重与AI降重技术

在科研领域&#xff0c;AI写作工具如同新一代的科研利器&#xff0c;它们能够极大提高文献查阅、思路整理和表达优化的效率&#xff0c;本质上促进了科研工作的进步。AI写作工具不仅快速获取并整理海量信息&#xff0c;还帮助我们精确提炼中心思想&#xff0c;显著提升论文写作…

生成式人工智能的风险与治理——以ChatGPT为例

文 | 西南政法大学经济法学院 马羽男 以ChatGPT为代表的生成式人工智能在创造社会福利的同时&#xff0c;也带来了诸多风险。因此&#xff0c;当务之急是结合我国生成式人工智能发展状况&#xff0c;厘清其应用价值与潜在风险之间的关系&#xff0c;以便在不影响应用发展的前提…

0606 作业

#include <stdio.h> #include <string.h>typedef struct usr{char unm[21];char pwd[21]; }user;int main(int argc, const char *argv[]) {FILE* userfilefopen("./user_tible.txt","r");printf("输入username:");user u;scanf(&qu…

人工智能在肿瘤预后预测中的最新研究进展|顶刊精析·24-06-07

小罗碎碎念 今天要分享的文献主题&#xff0c;大家一定非常熟悉&#xff0c;因为绝大多数AI4cancer的文章都会提到它——预后预测&#xff0c;所以今天的文献主题是——人工智能肿瘤预后预测。 在正式开始分享之前&#xff0c;我想先带着大家梳理两个问题。解决了以下两个问…

Chrome 自动执行 JS 脚本 | Tampermonkey 插件

文章目录 第 1 步:安装插件 Tampermonkey第 2 步:固定到工具栏第 3 步:在网站上启用 Tampermonkey第 4 步:查看效果第 5 步:调试 JS 代码😂 背景:有个网站,每次进去都要点 3 次才能把相关页面展开。而且,页面经常会自己刷新,导致展开的页面又收回去了。【这一天天的…

【Python】实现极致:克服PyInstaller打包挑战,解决libpython3.10.so.1.0库丢失难题

【Python】实现极致&#xff1a;克服PyInstaller打包挑战&#xff0c;解决libpython3.10.so.1.0库丢失难题 大家好 我是寸铁&#x1f44a; 总结了一篇【Python】实现极致&#xff1a;克服PyInstaller打包挑战&#xff0c;解决libpython3.10.so.1.0库丢失难题✨ 喜欢的小伙伴可以…

MFC设置窗口在Z轴上的位置

函数原型&#xff1a; BOOL CWnd::SetWindowPos(const CWnd* pWndInsertAfter, int x, int y, int cx, int cy, UINT nFlags);返回值&#xff1a; 如果函数成功&#xff0c;则返回非零值&#xff1b;否则返回0。 参数&#xff1a; pWndInsertAfter&#xff1a;标识了在Z轴次…

ai智能全自动批量剪辑软件神器,让视频创作变得简单!

随着科技的飞速发展&#xff0c;人工智能技术在各个领域都取得了突破。在视频制作领域&#xff0c;AI智能全自动批量剪辑软件神器的出现&#xff0c;为视频创作者带来了前所未有的便利。接下来咱们详细介绍这款软件的特点和优势&#xff0c;以及它如何让视频创作变得更加简单。…