bug--需求提交/搜索校验/样式
This commit is contained in:
parent
f0505d2d87
commit
78a9f22ffb
|
@ -199,7 +199,7 @@ export default {
|
|||
<style lang='scss' scoped>
|
||||
#inputSelectCheckbox {
|
||||
// margin-top: 20px;
|
||||
width: 100%;
|
||||
width: calc(100% - 105px);
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
<a-input
|
||||
v-model:value="val.note1"
|
||||
:placeholder="'请填写' + val.name"
|
||||
style="width: calc(100% - 150px);"
|
||||
/>
|
||||
<span style="width: 2.5rem; padding-left: 0.1rem">
|
||||
{{
|
||||
|
@ -253,7 +254,7 @@ export default {
|
|||
align-items: center;
|
||||
|
||||
span:first-child {
|
||||
width: 120px;
|
||||
width: 105px;
|
||||
}
|
||||
|
||||
:deep(.ant-input-textarea) {
|
||||
|
@ -268,7 +269,7 @@ export default {
|
|||
width: 200px;
|
||||
}
|
||||
|
||||
:deep(.ant-input) {
|
||||
::v-deep .ant-input {
|
||||
resize: none;
|
||||
width: 570px;
|
||||
}
|
||||
|
|
|
@ -944,9 +944,23 @@
|
|||
const resourceList = reactive({ data: [] })
|
||||
const videoList = reactive({ data: [] })
|
||||
const resourceTotal = ref('')
|
||||
// 校验
|
||||
const re = /^[0-9\u4E00-\u9FA5]*$/
|
||||
const getAppResources = (switchIndex) => {
|
||||
if (switchIndex) {
|
||||
if (switchIndex.length > 1) {
|
||||
if (searchValue.value) {
|
||||
let str = ''
|
||||
let r = null
|
||||
console.log(
|
||||
'2222222222222222222222222222',
|
||||
searchValue.value,
|
||||
searchValue.value.length
|
||||
)
|
||||
if (searchValue.value.length >= 2) {
|
||||
str = searchValue.value.substring(0, 2)
|
||||
console.log('str================>', str)
|
||||
r = re.test(str)
|
||||
}
|
||||
if (searchValue.value.length > 1 && r) {
|
||||
//switchIndex这个参数是下面的分页传过来的参数
|
||||
paramsGetResources.name = searchValue.value
|
||||
paramsGetResources.type = Cardsname.value
|
||||
|
@ -1025,7 +1039,7 @@
|
|||
})
|
||||
}
|
||||
} else {
|
||||
message.error('请输入一个字以上!')
|
||||
message.error('请以两位以上汉字或数字开头')
|
||||
}
|
||||
} else {
|
||||
//switchIndex这个参数是下面的分页传过来的参数
|
||||
|
|
|
@ -353,6 +353,9 @@
|
|||
if (subimtFlag.value) {
|
||||
subimtFlag.value = false
|
||||
formRef.value.validate().then(() => {
|
||||
const detString = String(formName.detailsField)
|
||||
formName.detailsField = detString
|
||||
console.log(detString, formName.detailsField, 'detString')
|
||||
demandApply(formName).then((res) => {
|
||||
applySuccess.value = false
|
||||
message.success('操作成功!')
|
||||
|
|
Loading…
Reference in New Issue