This commit is contained in:
zhaomeijing
2022-06-23 15:16:57 +08:00
parent 8302c5cfa3
commit 2c0a57ffd3
5 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -746,7 +746,7 @@ module.exports = {
ListTitle: 'List Title', ListTitle: 'List Title',
CopyProjectCollectionparameters: 'Copy Project Collection parameters', CopyProjectCollectionparameters: 'Copy Project Collection parameters',
from: 'From', from: 'From',
ReferenceTo: 'Reference To', ReferenceTo: 'To',
checkTheDeadline: 'Select the collection deadline of the parameter item', checkTheDeadline: 'Select the collection deadline of the parameter item',
accountNumber: 'Account Number', accountNumber: 'Account Number',
fullName: 'Full Name', fullName: 'Full Name',
+1 -1
View File
@@ -1047,5 +1047,5 @@ module.exports = {
NOneDecimalPlace: '一位小数', NOneDecimalPlace: '一位小数',
NTwoDecimalplaces: '两位小数', NTwoDecimalplaces: '两位小数',
NThreedecimalplaces: '三位小数', NThreedecimalplaces: '三位小数',
NFourDecimalplaces: '四位小数' NFourDecimalplaces: '四位小数',
} }
+2 -2
View File
@@ -196,14 +196,14 @@ export default {
}) })
.then( (res) =>{ .then( (res) =>{
if (res.data.success) { if (res.data.success) {
_this.$message.success(res.data.result) _this.$message.success(_this.$t('OperationSuccessful'))
// 填写人 // 填写人
// 获取当前登陆人 // 获取当前登陆人
this.$emit('GetgetLoginUserType') this.$emit('GetgetLoginUserType')
this.$emit('GetgetTableList') this.$emit('GetgetTableList')
this.$emit('areaVisibleAssignedbyflag', false) this.$emit('areaVisibleAssignedbyflag', false)
}else{ }else{
_this.$message.warning(res.data.result) _this.$message.warning(_this.$t('operationFailed'))
} }
}) })
.catch( (error) =>{ .catch( (error) =>{
@@ -14,7 +14,7 @@
<a-form-model-item style='line-height: 31.9999px;' prop='sourceConfigId' class='aform'> <a-form-model-item style='line-height: 31.9999px;' prop='sourceConfigId' class='aform'>
<div style='display: flex; justify-content: center'> <div style='display: flex; justify-content: center'>
<span class="Requireditem">*</span> <span class="Requireditem">*</span>
<div style='width: 107px;line-height: 29px;'>&nbsp;&nbsp;&nbsp;</div> <div style='width: 107px;line-height: 29px;'>{{ $t('from') }}&nbsp;&nbsp;&nbsp;</div>
<a-select :placeholder="$t('PleaseSelect')+$t('controlVerification')" v-model="formInline.sourceConfigId" allowClear style='width: 140%'> <a-select :placeholder="$t('PleaseSelect')+$t('controlVerification')" v-model="formInline.sourceConfigId" allowClear style='width: 140%'>
<a-select-option v-for="(item, key) in fromDate" :key="key" :value="item.value" style='width: 140%'> <a-select-option v-for="(item, key) in fromDate" :key="key" :value="item.value" style='width: 140%'>
<span style="display: inline-block;width: 140%" :title=" item.label "> <span style="display: inline-block;width: 140%" :title=" item.label ">
@@ -22,7 +22,7 @@
</span> </span>
</a-select-option> </a-select-option>
</a-select> </a-select>
<div style='width: 90px;line-height: 29px;'>&nbsp;&nbsp;&nbsp;&nbsp;配置</div> <div style='width: 90px;line-height: 29px;'>&nbsp;&nbsp;&nbsp;&nbsp;{{ $t('configure') }}</div>
</div> </div>
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
@@ -30,7 +30,7 @@
<a-form-model-item style='line-height: 31.9999px;' prop='targetConfigIds' class='aform'> <a-form-model-item style='line-height: 31.9999px;' prop='targetConfigIds' class='aform'>
<div style='display: flex;justify-content: center'> <div style='display: flex;justify-content: center'>
<span class="Requireditem">*</span> <span class="Requireditem">*</span>
<div style='line-height: 29px;width: 107px'>引用到&nbsp;&nbsp;&nbsp;</div> <div style='line-height: 29px;width: 107px'>{{ $t('ReferenceTo') }}&nbsp;&nbsp;&nbsp;</div>
<a-select :placeholder="$t('PleaseSelect')+$t('controlVerification')" v-model="formInline.targetConfigIds" allowClear mode="multiple" style='width: 140%'> <a-select :placeholder="$t('PleaseSelect')+$t('controlVerification')" v-model="formInline.targetConfigIds" allowClear mode="multiple" style='width: 140%'>
<a-select-option v-for="(item, key) in fromDateTo" :key="key" :value="item.value" style='width: 140%'> <a-select-option v-for="(item, key) in fromDateTo" :key="key" :value="item.value" style='width: 140%'>
<span style="display: inline-block;width: 140%" :title=" item.label "> <span style="display: inline-block;width: 140%" :title=" item.label ">
@@ -38,7 +38,7 @@
</span> </span>
</a-select-option> </a-select-option>
</a-select> </a-select>
<div style='width: 90px;line-height: 29px;'>&nbsp;&nbsp;&nbsp;&nbsp;配置</div> <div style='width: 90px;line-height: 29px;'>&nbsp;&nbsp;&nbsp;&nbsp;{{ $t('configure') }}</div>
</div> </div>
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
@@ -896,11 +896,11 @@ export default {
}) })
.then( (res) =>{ .then( (res) =>{
if (res.data.success) { if (res.data.success) {
_this.$message.success(res.data.message) _this.$message.success(this.$t('OperationSuccessful'))
_this.areaVisible = false _this.areaVisible = false
_this.GetgetTableList() _this.GetgetTableList()
}else{ }else{
_this.$message.warning(res.data.message) _this.$message.warning(this.$t('operationFailed'))
} }
}) })
.catch( (error) =>{ .catch( (error) =>{
@@ -970,10 +970,10 @@ export default {
onOk() { onOk() {
postAction(_this.url.add, configDataList).then((res) => { postAction(_this.url.add, configDataList).then((res) => {
if (res.success) { if (res.success) {
_this.$message.success(res.result) _this.$message.success(_this.$t('OperationSuccessful'))
_this.GetgetTableList() _this.GetgetTableList()
} else { } else {
_this.$message.warning(this.$t('operationFailed')) _this.$message.warning(_this.$t('operationFailed'))
} }
}) })
} }
@@ -1016,7 +1016,7 @@ export default {
}) })
.then( (res) =>{ .then( (res) =>{
if (res.data.success) { if (res.data.success) {
_this.$message.success(res.data.result) _this.$message.success(_this.$t('OperationSuccessful'))
_this.GetgetTableList() _this.GetgetTableList()
_this.selectedRowKeysValue=[] _this.selectedRowKeysValue=[]
}else{ }else{
@@ -1061,7 +1061,7 @@ export default {
}) })
.then( (res) =>{ .then( (res) =>{
if (res.data.success) { if (res.data.success) {
_this.$message.success(res.data.result) _this.$message.success(_this.$t('OperationSuccessful'))
_this.GetgetTableList() _this.GetgetTableList()
_this.selectedRowKeysValue=[] _this.selectedRowKeysValue=[]
}else{ }else{