修改页面样式等
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<!--
|
||||
* @Date: 2024-10-08 14:29:36
|
||||
* @LastEditors: shirlwang
|
||||
* @LastEditTime: 2025-11-03 12:15:48
|
||||
* @LastEditTime: 2025-11-03 16:11:03
|
||||
-->
|
||||
<template>
|
||||
<view class="container" style="background-color: #f7f7f7;">
|
||||
<view class="container">
|
||||
<scroll-view scroll-y="true" >
|
||||
<view class="inner">
|
||||
<view class="part-title" style="display: flex;justify-content: space-between;">求职需求信息
|
||||
@@ -302,9 +302,11 @@
|
||||
},
|
||||
// 移除uView表单验证相关代码
|
||||
created() {
|
||||
getDicts('qcjy_fwnr').then(res => {
|
||||
this.bfnrzd = res.data;
|
||||
});
|
||||
this.workTypeRemoteMethod('');
|
||||
console.log('qcjy_fwnr' );
|
||||
this.$getDict('qcjy_fwnr').then(res => {
|
||||
this.bfnrzd = res.data;
|
||||
});
|
||||
this.setName()
|
||||
this.loading = true;
|
||||
let arr = [{
|
||||
@@ -354,18 +356,14 @@
|
||||
this.loading = false;
|
||||
});
|
||||
|
||||
this.workTypeRemoteMethod('');
|
||||
},
|
||||
methods: {
|
||||
// 获取字典数据
|
||||
getDicts(dictType) {
|
||||
return new Promise((resolve, reject) => {
|
||||
// 这里应该调用实际的API,暂时返回空数组
|
||||
// 如果需要真实的API调用,请替换下面的代码
|
||||
setTimeout(() => {
|
||||
resolve({ data: [] });
|
||||
}, 100);
|
||||
});
|
||||
return this.$getDict(dictType)
|
||||
// .then(res => {
|
||||
// this.dict[dictType] = res.data;
|
||||
// });
|
||||
},
|
||||
|
||||
cancelPage() {
|
||||
@@ -607,14 +605,6 @@
|
||||
this.$set(this.formData, "longitude", marker.location.lng);
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 处理树形数据为级联选择器格式
|
||||
processWorkTypeTree(treeData) {
|
||||
if (!treeData || !Array.isArray(treeData)) {
|
||||
@@ -752,20 +742,11 @@
|
||||
</script>
|
||||
<style lang="scss">
|
||||
|
||||
.page ::v-deep .u-navbar__content {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.page {
|
||||
background-color: #3161c7;
|
||||
height: 100vh;
|
||||
background-image: url('https://rc.jinan.gov.cn/qcwjyH5/static/images/top.png');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% auto;
|
||||
}
|
||||
|
||||
.inner {
|
||||
background: #eef1f5;
|
||||
background: #fff;
|
||||
width: calc(100% - 64rpx);
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box;
|
||||
border-radius: 16rpx;
|
||||
padding: 32rpx;
|
||||
margin-bottom: 24rpx;
|
||||
@@ -788,7 +769,7 @@
|
||||
margin-bottom: 24rpx;
|
||||
background-color: #fff;
|
||||
border-radius: 8rpx;
|
||||
padding: 24rpx;
|
||||
padding: 24rpx 0;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
@@ -868,8 +849,7 @@
|
||||
/* 按钮区域样式 */
|
||||
.button-area {
|
||||
padding: 24rpx 32rpx 68rpx;
|
||||
width: calc(100% + 64rpx);
|
||||
margin-left: -32rpx;
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
|
||||
Reference in New Issue
Block a user