[update] 外来标准
This commit is contained in:
@@ -24,13 +24,13 @@ module.exports = {
|
|||||||
dynamicType: 'Dynamic type', // 动力类型
|
dynamicType: 'Dynamic type', // 动力类型
|
||||||
inputExample: 'Input example:', // 输入示例
|
inputExample: 'Input example:', // 输入示例
|
||||||
// 外来标准法规文本库
|
// 外来标准法规文本库
|
||||||
domesticStandard: {
|
foreignStandard: {
|
||||||
treeSearchPlaceholder: 'Please enter the tree system', // 请输入树状图体系
|
treeSearchPlaceholder: 'Please enter the tree system', // 请输入树状图体系
|
||||||
collection: 'Invoice Collection', // 收藏
|
collection: 'Invoice Collection', // 收藏
|
||||||
cancelCollection: 'Delete Collection', // 取消收藏
|
cancelCollection: 'Delete Collection', // 取消收藏
|
||||||
exportFileName: 'Domestic standard', // 国内标准法规
|
exportFileName: 'Foreign standard', // 外来标准法规
|
||||||
exportZipName: 'Domestic standards (with documents)', // 国内标准法规(带文件)
|
exportZipName: 'Foreign standards (with documents)', // 外来标准法规(带文件)
|
||||||
templateName: 'Import templates for domestic standards' // 国内标准法规导入模板
|
templateName: 'Import templates for foreign standards' // 外来标准法规导入模板
|
||||||
},
|
},
|
||||||
// 动态消息
|
// 动态消息
|
||||||
dynamicMessage: {
|
dynamicMessage: {
|
||||||
|
|||||||
@@ -28,9 +28,9 @@ module.exports = {
|
|||||||
treeSearchPlaceholder: '请输入树状图体系',
|
treeSearchPlaceholder: '请输入树状图体系',
|
||||||
collection: '收藏',
|
collection: '收藏',
|
||||||
cancelCollection: '取消收藏',
|
cancelCollection: '取消收藏',
|
||||||
exportFileName: '国内标准',
|
exportFileName: '外来标准法规',
|
||||||
exportZipName: '国内标准(带文件)',
|
exportZipName: '外来标准法规(带文件)',
|
||||||
templateName: '国内标准导入模板'
|
templateName: '外来标准法规导入模板'
|
||||||
},
|
},
|
||||||
// 动态消息
|
// 动态消息
|
||||||
dynamicMessage: {
|
dynamicMessage: {
|
||||||
|
|||||||
+6
-1
@@ -15,6 +15,11 @@
|
|||||||
:maxLength="50"
|
:maxLength="50"
|
||||||
v-decorator="['nodeName', validatorRules.nodeName]" />
|
v-decorator="['nodeName', validatorRules.nodeName]" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" :label="$t('standardRegulationLibrary.nodeOrder')">
|
||||||
|
<a-input-number style="width: 100%"
|
||||||
|
:placeholder="$t('pleaseEnter') + $t('standardRegulationLibrary.nodeOrder')"
|
||||||
|
v-decorator="['nodeOrder', validatorRules.nodeOrder]" />
|
||||||
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
|
|
||||||
</j-modal>
|
</j-modal>
|
||||||
@@ -70,7 +75,7 @@ export default {
|
|||||||
if (!err) {
|
if (!err) {
|
||||||
this.confirmLoading = true
|
this.confirmLoading = true
|
||||||
const formData = Object.assign(this.model, values)
|
const formData = Object.assign(this.model, values)
|
||||||
formData.nodeOrder = '0'
|
// formData.nodeOrder = '0'
|
||||||
let submitFunc
|
let submitFunc
|
||||||
if (this.model.id) {
|
if (this.model.id) {
|
||||||
submitFunc = editForeignSystemTree
|
submitFunc = editForeignSystemTree
|
||||||
|
|||||||
Reference in New Issue
Block a user