| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790 |
- <template>
- <div class="page">
- <div class="top adfacjb">
- <div class="t_l">
- <p>问卷调研</p>
- <p class="tip">创建和管理PERILL评估问卷</p>
- </div>
- <div class="t_r">
- <!-- <el-button type="primary" icon="el-icon-plus">发送问卷</el-button> -->
- </div>
- </div>
- <div class="query adfacjb">
- <el-select v-model="queryParams.questionnaireId" placeholder="问卷" style="width: calc(100% - 324px);" @change="getList" clearable>
- <el-option v-for="item in useAgentStore().questionnaireList" :key="item.id" :label="item.title" :value="item.id"/>
- </el-select>
- <el-select v-model="queryParams.status" placeholder="全部状态" style="width: 300px;" @change="getList" clearable>
- <el-option label="待发布" :value="-1"></el-option>
- <el-option label="进行中" :value="0"></el-option>
- <el-option label="已完成" :value="1"></el-option>
- </el-select>
- </div>
- <div class="list">
- <div class="l_item" v-for="(item, index) in dataList" :key="index">
- <div class="li_top adfacjb">
- <div class="lt_l">项目名称:{{ item.programName }}</div>
- <div class="lt_r adfac" v-if="item.status===-1">
- <div class="lr_pre adfac" @click="handleUpdate(item)">
- <img src="@/assets/images/agent/send_mini.png">
- <span>修改问卷</span>
- </div>
- <div class="lr_pre adfac" @click="handlePublish(item)">
- <img src="@/assets/images/agent/send_mini.png">
- <span>发布问卷</span>
- </div>
- <div class="lr_pre adfac" @click="handleDelete(item)">
- <img src="@/assets/images/agent/report_mini.png">
- <span>删除问卷</span>
- </div>
- <div class="lr_status dfb">待发布</div>
- </div>
- <div class="lt_r adfac" v-else>
- <div class="lr_pre adfac" v-hasPermi="['core:questionnaire:info']" @click="handleSchedule(item)">
- <img src="@/assets/images/agent/send_mini.png">
- <span>查看进度</span>
- </div>
- <div class="lr_pre adfac" v-hasPermi="['core:questionnaire:info']" @click="handleSchedule(item)">
- <img src="@/assets/images/agent/report_mini.png">
- <span>生成报告</span>
- </div>
- <div class="lr_status" :class="{'jxz':item.status===0,'ywc':item.status===1}">{{ item.status===0?'进行中':(item.status===1?'已完成':'未知') }}</div>
- </div>
- </div>
- <div class="li_team">公司名称:{{ item.enterpriseName }}</div>
- <div class="li_team">团队名称:{{ item.teamName }}</div>
- <div class="li_wj">问卷名称:{{ item.title }}</div>
- <div class="li_time_person adf">
- <div class="ltp">发布时间:{{ item.startTime }}</div>
- <div class="ltp">截止时间:{{ item.endTime }}</div>
- <div class="ltp">作答成员:<span>{{ item.finishNum||0 }}/{{item.userNum||0}}</span>完成</div>
- <div class="ltp">发送人:{{ item.creatorName }}</div>
- </div>
- <div class="li_jd">
- <div class="lj" :style="{'width':(item.finishNum/item.userNum*100)+'%'}"></div>
- </div>
- <div class="li_text adfacjb">
- <span>完成情况</span>
- <span>{{ item.userNum?((item.finishNum/item.userNum)*100).toFixed(0):0 }}%</span>
- </div>
- </div>
- <el-row style="display: flex;justify-content: center;">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="queryParams.page"
- :page-sizes="[2, 5, 10]"
- :page-size="2"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- v-show="total > 0">
- </el-pagination>
- </el-row>
- </div>
- <el-dialog width="40%" :visible.sync="show" title="修改问卷" @close="cancel">
- <div class="content">
- <div class="c_set">
- <div class="cs_title" style="margin-top: 0;">选择项目成员</div>
- <div class="cs_users adf">
- <div class="cu_l adfacjb">
- <img src="@/assets/images/agent/users_mini.png">
- <div class="cul_add" @click="handleAddUser">+ 添加</div>
- </div>
- <div class="cu_r adfac">
- <div class="cr_item adfacjb" v-for="(item,index) in params.persons" :key="index">
- <span>{{ item.name }}</span>
- <img src="@/assets/images/agent/remove_mini.png" @click="handleRemoveUser(item,index)">
- </div>
- </div>
- </div>
- <div class="cs_title">问卷回答设置</div>
- <div class="cs_zd adfac">
- <span>只允许作答</span>
- <el-input-number v-model="params.answerSetting" :min="1" controls-position="right" style="margin: 0 9px;"></el-input-number>
- <span>次</span>
- </div>
- <div class="cs_title">问卷作答时间设置</div>
- <div class="cs_time">
- <div class="ct_pre adfac">
- <span>开始时间</span>
- <el-date-picker v-model="params.startTime" type="datetime" placeholder="选择开始时间" style="width:311px;" @change="e=>handleChangeDatetime(e,'startTime')"></el-date-picker>
- </div>
- <div class="ct_pre adfac">
- <span>截止时间</span>
- <el-date-picker v-model="params.endTime" type="datetime" placeholder="选择截止时间" style="width:311px;" @change="e=>handleChangeDatetime(e,'endTime')"></el-date-picker>
- </div>
- </div>
- </div>
- </div>
- <div class="demo-drawer__footer" style="display: flex;justify-content: end;">
- <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 认</el-button>
- <el-button @click="cancel" style="margin-right: 5%;">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog width="790px" :visible.sync="userShow" title="选择成员" @close="userShow=false">
- <div class="ed_coach adf">
- <div class="ec_l">
- <el-input placeholder="请输入成员名搜索" suffix-icon="el-icon-search" v-model="userName" style="width: 100%;"></el-input>
- <template v-if="!checkShow">
- <div class="ecl_gs">
- <div class="eg_title">按项目选</div>
- <div class="egt_item adfacjb" v-for="(item,index) in companyList" :key="index">
- <div class="ei_l adffc" style="cursor: pointer;">
- <div class="adfac">
- <span @click="handleChooseUser(item)">{{ item.programName }}</span>
- <span></span>
- </div>
- <div><span style="margin-left: 0;">{{ item.enterpriseName }}-{{ item.teamName }}</span></div>
- </div>
- <div class="ei_r" @click="handleChooseUser(item)">
- <span>成员</span>
- </div>
- </div>
- </div>
- </template>
- <template v-else>
- <div class="ecl_company">
- <i class="el-icon-arrow-left" @click="handleUserBack"></i>
- {{ companyName }}
- </div>
- <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange" style="margin-top: 33px;">全选</el-checkbox>
- <div class="ecl_cbs">
- <el-checkbox v-model="user.checked" v-for="(user,index) in userList" :key="index" @change="handleChangeUser" style="margin-top: 24px;display: block;">{{ user.name }}</el-checkbox>
- </div>
- </template>
- </div>
- <div class="ec_r">
- <div class="ecr_text">已选择({{ selectedUsers.length }}/<span>{{ userList.length }}</span>)</div>
- <div class="ecr_names">
- <div class="en_pre adfacjc" v-for="(item,index) in selectedUsers" :key="index">
- <span>{{ item.name }}</span>
- <img src="@/assets/images/agent/delete_mini.png" @click="handleDeleteUser(item,index)">
- </div>
- </div>
- </div>
- </div>
- <div class="demo-drawer__footer" style="display: flex;justify-content: end;margin-top: 20px;">
- <el-button type="primary" @click="submitForm2">确 认</el-button>
- <el-button @click="cancel2" style="margin-right: 5%;">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script setup name="">
- import { ref, getCurrentInstance, onMounted } from 'vue'
- import {useAgentStore} from "@/store_v3/modules/agent";
- import {
- getTeamQuestionnaireList,
- deleteQuestionnaireOne,
- getQuestionnairePublishInfo,
- getProgramList,
- getCoachList,
- publishQuestionnaireConfirm,
- updateQuestionnairePublish
- } from "@/api/agent/index.js";
- const { proxy } = getCurrentInstance();
- useAgentStore().getQuestionnaireData();
-
- const queryParams = ref({
- page:1,
- limit:2,
- questionnaireId: '',
- status: '',
- })
- const total = ref(0)
- const dataList = ref([])
- const show = ref(false)
- const params = ref({
- questionnaireId:'',
- programId:'',
- teamId:'',
- userIds:[],
- persons:[],
- memberInfos:[],
- answerSetting:1,
- startTime:'',
- endTime:''
- })
- const userShow = ref(false)
- const checkShow = ref(false)
- const companyName = ref('')
- const userName = ref('')
- const companyList = ref([])
- const userList = ref([])
- const selectedUsers = ref([])
- const checkAll = ref(false)
- const isIndeterminate = ref(false)
- const buttonLoading = ref(false)
-
- const handleAddUser = () => {
- userShow.value = true
- getProgramList({page:1,limit:-1}).then(res=>{
- if(res.code !==0) return proxy.$message({type:'warning',message:res.msg});
- companyList.value = res.data.list.map(l=>{
- return {
- id:l.id,
- programName:l.programName,
- enterpriseName:l.enterpriseName,
- teamName:l.teamName,
- teamId:l.teamId
- }
- });
- })
- }
- const handleChangeDatetime = (e,key) => {
- params.value[key] = proxy.parseTime(new Date(e), '{yy}-{mm}-{dd} {hh}:{ii}:{ss}');
- }
- const handleRemoveUser = (item,index) => {
- params.value.persons.splice(index,1);
- params.value.userIds = params.value.persons.map(l=>l.id);
- }
- const handleChooseUser = (item) => {
- params.value.programId = item.id;
- params.value.teamId = item.teamId;
- getCoachList({teamId:item.teamId,page:1,limit:-1}).then(res=>{
- if(res.code!==0) return proxy.$message({type:'warning',message:res.msg});
- userList.value = res.data.list.map(l=>{
- return {id:l.id,name:l.realName,checked:false}
- })
- })
- checkShow.value = true
- companyName.value = item.programName
- }
- const handleUserBack = () => {
- checkShow.value = false
- companyName.value = ''
- }
- const handleCheckAllChange = (val) => {
- selectedUsers.value = val ? JSON.parse(JSON.stringify(userList.value)) : [];
- isIndeterminate.value = false;
- userList.value.forEach(item => item.checked = val)
- }
- const handleChangeUser = () => {
- let trues = userList.value.filter(item => item.checked).length;
- if(trues>0&&trues<userList.value.length) isIndeterminate.value = true;
- else isIndeterminate.value = false;
- if(trues===userList.value.length) checkAll.value = true;
- else checkAll.value = false;
- selectedUsers.value = userList.value.filter(item => item.checked);
- }
- const handleDeleteUser = (item,index) => {
- let i = userList.value.findIndex(c => c.id === item.id);
- if(i>-1) userList.value[i].checked = false;
- selectedUsers.value.splice(index,1);
- let trues = userList.value.filter(item => item.checked).length;
- if(trues>0&&trues<userList.value.length) isIndeterminate.value = true;
- else isIndeterminate.value = false;
- if(trues===userList.value.length) checkAll.value = true;
- else checkAll.value = false;
- }
- const submitForm2 = () => {
- if(selectedUsers.value.length===0) return proxy.$message.warning('请至少选择一位成员')
- params.value.persons = JSON.parse(JSON.stringify(selectedUsers.value));
- params.value.userIds = params.value.persons.map(l=>l.id);
- checkAll.value = false;
- isIndeterminate.value = false;
- selectedUsers.value = [];
- userList.value = [];
- checkShow.value = false;
- userShow.value = false;
- }
- const cancel2 = () => {
- userShow.value = false;
- }
- const cancel = () => {
- show.value = false;
- }
- const submitForm = () => {
- if(buttonLoading.value) return
- buttonLoading.value = true;
- if(params.value.userIds.length === 0){
- proxy.$message({type:'warning',message:'请选择项目成员'});
- buttonLoading.value = false;
- return;
- }
- if(!params.value.startTime || !params.value.endTime){
- proxy.$message({type:'warning',message:'请设置问卷作答时间'});
- buttonLoading.value = false;
- return;
- }
- params.value.memberInfos = params.value.persons.map(l=>{
- return {
- userId:l.id,
- realName:l.name
- }
- })
- let { persons ,userIds ,...paras } = params.value;
- let data = {...paras};
- updateQuestionnairePublish(data).then(res=>{
- if(res.code!==0) return proxy.$message.error(res.msg)
- proxy.$message.success('修改成功')
- }).finally(()=>{buttonLoading.value = false;show.value = false;})
- }
- const handleUpdate = row => {
- getQuestionnairePublishInfo(row.id).then(res=>{
- if(res.code!==0) return proxy.$message({type:'warning',message:res.msg});
- params.value = {...res.data,persons:[],userIds:[]}
- params.value.persons = res.data.memberInfos.map(m=>({id:m.userId,name:m.realName}));
- params.value.userIds = res.data.memberInfos.map(m=>m.userId);
- show.value = true;
- })
- }
- const handlePublish = async row => {
- await proxy.$modal.confirm('是否确认发布该问卷?', '提示', {})
- let res = await publishQuestionnaireConfirm(row.id).finally(()=>{})
- if(res.code!==0) return proxy.$message.error(res.msg)
- proxy.$message.success('发布成功')
- getList()
- }
- const handleDelete = row => {
- proxy.$confirm('是否确认删除该问卷?', '警告', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(async () => {
- let res = await deleteQuestionnaireOne(row.id)
- if(res.code!==0) return proxy.$message.error(res.msg)
- proxy.$message.success('删除成功')
- return
- }).then(()=>{
- getList()
- })
- }
- const handleSchedule = (item) => {
- proxy.$router.push({
- path: '/agentQuestionnaireSchedule',
- query:{
- id: item.id,
- questionnaireName: item.title,
- enterpriseName: item.enterpriseName,
- programName: item.programName,
- teamName: item.teamName,
- startTime: item.startTime,
- endTime: item.endTime,
- userNum: item.userNum,
- finishNum: item.finishNum
- }
- })
- }
- const getList = () => {
- let query = {...queryParams.value};
- getTeamQuestionnaireList(query).then(res=>{
- if(res.code!==0) return proxy.$message.error(res.msg)
- dataList.value = res.data.list;
- total.value = res.data.total;
- })
- }
- const handleSizeChange = (e)=>{
- queryParams.value.limit = e;
- getList();
- }
- const handleCurrentChange = (e)=>{
- queryParams.value.page = e;
- getList();
- }
- onMounted(()=>{
- getList()
- })
- </script>
- <style scoped lang="scss">
- .page{
- padding: 28px 20px;
- background: #FAFAFA;
-
- .top{
- .t_l{
- p{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 16px;
- color: #252525;
- line-height: 16px;
- &.tip{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #6B7280;
- line-height: 14px;
- margin-top: 16px;
- }
- }
- }
- }
- .query{
- width: 100%;
- padding: 16px 20px;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 6px;
- border: 1px solid #F3F4F6;
- margin-top: 16px;
- }
- .list{
- width: 100%;
- height: calc(100vh - 196px);
- overflow-y: auto;
- margin-top: 4px;
- .l_item{
- width: 100%;
- padding: 20px 24px;
- box-sizing: border-box;
- margin-top: 16px;
- background: #FFFFFF;
- border-radius: 6px;
- border: 1px solid #F3F4F6;
- .li_top{
- .lt_l{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 14px;
- color: #252525;
- line-height: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .lt_r{
- .lr_pre{
- cursor: pointer;
- margin-right: 36px;
- img{
- width: 20px;
- height: 20px;
- }
- span{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #6B7280;
- line-height: 20px;
- margin-left: 8px;
- }
- }
- .lr_status{
- width: 76px;
- height: 24px;
- border-radius: 12px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- line-height: 24px;
- text-align: center;
- &.dfb{
- background: #e7e7e7;
- color: #414040;
- }
- &.jxz{
- background: #FCECB6;
- color: #864F10;
- }
- &.ywc{
- background: rgba(0,145,145,0.1);
- color: #009191;
- }
- }
- }
- }
- .li_team{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #6B7280;
- line-height: 14px;
- margin-top: 16px;
- }
- .li_wj{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 14px;
- color: #252525;
- line-height: 16px;
- margin-top: 24px;
- }
- .li_time_person{
- margin-top: 16px;
- .ltp{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #6B7280;
- line-height: 14px;
- margin-right: 142px;
- span{
- font-weight: bold;
- font-size: 16px;
- color: #761E6A;
- }
- }
- }
- .li_jd{
- width: 100%;
- height: 8px;
- background: #F3F4F6;
- border-radius: 4px;
- position: relative;
- margin-top: 20px;
- .lj{
- height: 100%;
- background: linear-gradient( 270deg, #9D5F94 0%, #761E6A 100%);
- border-radius: 4px;
- position: absolute;
- left: 0;
- top: 0;
- }
- }
- .li_text{
- margin-top: 10px;
- span{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #646464;
- line-height: 14px;
- }
- }
- }
- }
- }
- .content{
- .c_set{
- width: 100%;
- background: #FFFFFF;
- border-radius: 6px;
- margin-top: 8px;
- padding: 0 21px 28px 21px;
- box-sizing: border-box;
- .cs_title{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 14px;
- color: #252525;
- line-height: 20px;
- margin-top: 30px;
- }
- .cs_users{
- width: 100%;
- height: 36px;
- border-radius: 6px;
- border: 1px solid #E5E7EB;
- margin-top: 20px;
- padding: 7px 12px;
- box-sizing: border-box;
- .cu_l{
- width: 104px;
- padding-right: 15px;
- box-sizing: border-box;
- &>img{
- width: 18px;
- height: 18px;
- margin-top: -5px;
- }
- .cul_add{
- width: 54px;
- height: 24px;
- border-radius: 4px;
- border: 1px solid #761E6A;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 12px;
- color: #761E6A;
- line-height: 22px;
- text-align: center;
- margin-top: -2px;
- cursor: pointer;
- }
- }
- .cu_r{
- width: calc(100% - 104px);
- margin-left: -16px;
- .cr_item{
- padding: 4px 10px;
- background: #F9FAFB;
- border-radius: 6px;
- margin-left: 16px;
- span{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #252525;
- line-height: 14px;
- }
- img{
- width: 16px;
- height: 16px;
- margin-left: 10px;
- cursor: pointer;
- }
- }
- }
- }
- .cs_zd{
- margin-top: 12px;
- span{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #6B7280;
- line-height: 20px;
- }
- }
- .cs_time{
- margin-top: 6px;
- .ct_pre{
- margin-top: 30px;
- span{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #6B7280;
- line-height: 20px;
- margin-right: 23px;
- }
- }
- }
- .cs_btn{
- margin-top: 70px;
- padding-left: 79px;
- }
- }
- }
- .ed_coach{
- margin-top: -20px;
- .ec_l{
- width: calc(50% - 1px);
- height: 100%;
- padding-right: 30px;
- box-sizing: border-box;
- border-right: 1px solid #ECEEF5;
- .ecl_gs{
- margin-top: 19px;
- .eg_title{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #6B7280;
- line-height: 20px;
- }
- .egt_item{
- margin-top: 24px;
- .ei_l{
- span{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 14px;
- color: #252525;
- line-height: 20px;
- &:last-child{
- font-weight: 400;
- color: #6B7280;
- margin-left: 20px;
- }
- }
- }
- .ei_r{
- span{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #761E6A;
- line-height: 20px;
- position: relative;
- padding-left: 8px;
- cursor: pointer;
- &::before{
- content: '';
- width: 1px;
- height: 16px;
- background: #DDE0E6;
- position: absolute;
- left: 0;
- top: 50%;
- margin-top: -8px;
- }
- }
- }
- }
- }
- .ecl_company{
- margin-top: 19px;
- position: relative;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 14px;
- color: #252525;
- line-height: 20px;
- text-align: center;
- i{
- position: absolute;
- left: 0;
- font-size: 14px;
- color: #252525;
- cursor: pointer;
- }
- }
- .ecl_cbs{
- width: 100%;
- // height: calc(100% - 143px);
- max-height: 376px;
- overflow-y: auto;
- }
- }
- .ec_r{
- width: 50%;
- padding-left: 30px;
- box-sizing: border-box;
- .ecr_text{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 16px;
- color: #252525;
- line-height: 22px;
- span{
- color: #B9B9B9;
- }
- }
- .ecr_names{
- margin-left: -16px;
- overflow: hidden;
- .en_pre{
- float: left;
- padding: 10px;
- background: #F9FAFB;
- border-radius: 6px;
- margin: 19px 0 0 16px;
- span{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #252525;
- line-height: 14px;
- }
- img{
- width: 16px;
- height: 16px;
- margin-left: 10px;
- cursor: pointer;
- }
- }
- }
- }
- }
- </style>
|